Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public SolutionReport(
T result,
double error,
AlgorithmStatus status,
int iterations,
int evaluations,
ConvergenceTest<double> convergenceTest
)
Public Sub New (
result As T,
error As Double,
status As AlgorithmStatus,
iterations As Integer,
evaluations As Integer,
convergenceTest As ConvergenceTest(Of Double)
)
public:
SolutionReport(
T result,
double error,
AlgorithmStatus status,
int iterations,
int evaluations,
ConvergenceTest<double>^ convergenceTest
)
new :
result : 'T *
error : float *
status : AlgorithmStatus *
iterations : int *
evaluations : int *
convergenceTest : ConvergenceTest<float> -> SolutionReport
Parameters
- result
- Type: T
The value of the result. - error
- Type: SystemDouble
The estimated error of the result. - status
- Type: Extreme.MathematicsAlgorithmStatus
The status. - iterations
- Type: SystemInt32
The number of iterations performed by the algorithm. - evaluations
- Type: SystemInt32
The number of times the target or objective function was evaluated by the algorithm. - convergenceTest
- Type: Extreme.Mathematics.AlgorithmsConvergenceTestDouble
The convergence test that led to the creation of the result.
Reference