org.ojalgo.random.process
Interface RandomProcess

All Known Implementing Classes:
DiffusionProcess, MultidimensionalProcess, WienerProcess

public interface RandomProcess


Method Summary
 double getCurrentValue()
          If the implementing class maintains state, the current value should be updated when calling the step() method.
 double step()
          Default step size is 1.0.
 double step(double aStepSize)
          Deprecated. v30 Use step() instead.
 

Method Detail

getCurrentValue

double getCurrentValue()
If the implementing class maintains state, the current value should be updated when calling the step() method.


step

double step()
Default step size is 1.0.

Returns:
A process change value

step

@Deprecated
double step(double aStepSize)
Deprecated. v30 Use step() instead.

Returns:
A process change value