Class AbstractProcess<D extends Distribution>

    • Constructor Detail

      • AbstractProcess

        AbstractProcess()
    • Method Detail

      • doStep

        abstract double doStep​(double stepSize,
                               double normalisedRandomIncrement)
      • getCurrentValue

        abstract double getCurrentValue()
      • getExpected

        abstract double getExpected​(double stepSize)
      • getLowerConfidenceQuantile

        abstract double getLowerConfidenceQuantile​(double stepSize,
                                                   double confidence)
      • getNormalisedRandomIncrement

        abstract double getNormalisedRandomIncrement()
      • getStandardDeviation

        abstract double getStandardDeviation​(double stepSize)
      • getUpperConfidenceQuantile

        abstract double getUpperConfidenceQuantile​(double stepSize,
                                                   double confidence)
      • getVariance

        abstract double getVariance​(double stepSize)
      • setCurrentValue

        abstract void setCurrentValue​(double currentValue)
      • step

        final double step​(double stepSize)