|   | InfiniteAdaptiveGaussKronrodStatus Enumeration | 
        
         
              Status codes for the InfiniteAdaptiveGaussKronrodStatus
              integration method.
            
 
    Namespace: 
   Accord.Math.Integration
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic enum InfiniteAdaptiveGaussKronrodStatus
Public Enumeration InfiniteAdaptiveGaussKronrodStatus
 Members
Members|  | Member name | Value | Description | 
|---|
|  | Success | 0 | The integration calculation has been completed with success.
              The obtained result is under the selected convergence criteria. | 
|  | MaximumSubdivisions | 1 | Maximum number of allowed subdivisions has been reached. | 
|  | RoundoffError | 2 | Roundoff errors prevent the tolerance from being reached. | 
|  | BadBehavioredFunction | 3 | There are severe discontinuities in the integrand function. | 
|  | AlgorithmDivergence | 4 | The algorithm cannot converge. | 
|  | IntegralDiverence | 5 | The integral is divergent or slowly convergent. | 
 See Also
See Also