The type of refinement used, if any.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public int RefinementType { get; set; }
Visual Basic (Declaration)
Public Property RefinementType As Integer
Visual C++
public:
property int RefinementType {
	int get ();
	void set (int value);
}

Field Value

A int specifying the type of refinement used.

Remarks

The possible settings are:

ValueAction
0No refinement. Always compute dual. This is the default.
1Iterative refinement.
2Use extended refinement. Iterate until no more progress.

If refinement is used, the coefficient matrices and other data are saved at the beginning of the computation. When finished this data together with the solution obtained is checked for consistency. If the discrepancy is too large, the solution process is restarted using the problem data just after processing the equalities, but with the final x values and final active set.

See Also