Class BaseAbstractUnivariateIntegrator

    • Constructor Detail

      • BaseAbstractUnivariateIntegrator

        protected BaseAbstractUnivariateIntegrator​(double relativeAccuracy,
                                                   double absoluteAccuracy,
                                                   int minimalIterationCount,
                                                   int maximalIterationCount)
        Construct an integrator with given accuracies and iteration counts.

        The meanings of the various parameters are:

        • relative accuracy: this is used to stop iterations if the absolute accuracy can't be achieved due to large values or short mantissa length. If this should be the primary criterion for convergence rather then a safety measure, set the absolute accuracy to a ridiculously small value, like Precision.SAFE_MIN.
        • absolute accuracy: The default is usually chosen so that results in the interval -10..-0.1 and +0.1..+10 can be found with a reasonable accuracy. If the expected absolute value of your results is of much smaller magnitude, set this to a smaller value.
        • minimum number of iterations: minimal iteration is needed to avoid false early convergence, e.g. the sample points happen to be zeroes of the function. Users can use the default value or choose one that they see as appropriate.
        • maximum number of iterations: usually a high iteration count indicates convergence problems. However, the "reasonable value" varies widely for different algorithms. Users are advised to use the default value supplied by the algorithm.
        Parameters:
        relativeAccuracy - relative accuracy of the result
        absoluteAccuracy - absolute accuracy of the result
        minimalIterationCount - minimum number of iterations
        maximalIterationCount - maximum number of iterations
        Throws:
        NotStrictlyPositiveException - if minimal number of iterations is not strictly positive
        NumberIsTooSmallException - if maximal number of iterations is lesser than or equal to the minimal number of iterations
      • BaseAbstractUnivariateIntegrator

        protected BaseAbstractUnivariateIntegrator​(double relativeAccuracy,
                                                   double absoluteAccuracy)
        Construct an integrator with given accuracies.
        Parameters:
        relativeAccuracy - relative accuracy of the result
        absoluteAccuracy - absolute accuracy of the result
      • BaseAbstractUnivariateIntegrator

        protected BaseAbstractUnivariateIntegrator​(int minimalIterationCount,
                                                   int maximalIterationCount)
        Construct an integrator with given iteration counts.
        Parameters:
        minimalIterationCount - minimum number of iterations
        maximalIterationCount - maximum number of iterations
        Throws:
        NotStrictlyPositiveException - if minimal number of iterations is not strictly positive
        NumberIsTooSmallException - if maximal number of iterations is lesser than or equal to the minimal number of iterations