Records the results of an algorithm in case it fails.
Namespace:
Extreme.Mathematics.Algorithms
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected void ReportFailure(
T result,
TError estimatedError,
AlgorithmStatus status
)
Protected Sub ReportFailure (
result As T,
estimatedError As TError,
status As AlgorithmStatus
)
protected:
void ReportFailure(
T result,
TError estimatedError,
AlgorithmStatus status
)
member ReportFailure :
result : 'T *
estimatedError : 'TError *
status : AlgorithmStatus -> unit
Parameters
- result
- Type: T
The result that was computed by the algorithm. - estimatedError
- Type: TError
An estimate of the error in the result. - status
- Type: Extreme.MathematicsAlgorithmStatus
An AlgorithmStatus value that specifies the reason for the failure.
Reference