Sets the results of an algorithm's execution.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Protected Sub SetResultProperties ( _ result As Object, _ estimatedError As Double, _ status As AlgorithmStatus, _ iterations As Integer _ ) |
| C# |
|---|
protected void SetResultProperties ( Object result, double estimatedError, AlgorithmStatus status, int iterations ) |
| C++ |
|---|
protected: void SetResultProperties ( Object^ result, double estimatedError, AlgorithmStatus status, int iterations ) |
Parameters
- result (System.Object)
- An Object of a type determined by the class implementing the interface.
- estimatedError (System.Double)
- A value indicating the size of the absolute error of the result.
- status (Extreme.Mathematics.AlgorithmStatus)
- One of the AlgorithmStatus values.
- iterations (System.Int32)
- The number of iterations that were executed.
Remarks
This method must be called after the iteration terminates.
It may also be called after each iteration to provide intermediate
results.