The residual updating method to be used.

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

Syntax

C#
public GenMinRes..::.ResidualMethod ResidualUpdating { get; set; }
Visual Basic (Declaration)
Public Property ResidualUpdating As GenMinRes..::.ResidualMethod
Visual C++
public:
property GenMinRes..::.ResidualMethod ResidualUpdating {
	GenMinRes..::.ResidualMethod get ();
	void set (GenMinRes..::.ResidualMethod value);
}

Field Value

A ResidualMethod value specifying the residual updating method to be used.

Remarks

ResidualMethod Updating Method Used
LinearAtRestartOnly Update by linear combination upon restarting only. This is the default value used.
LinearAtRestartAndTermination Update by linear combination upon restarting and at termination.
DirectAtRestartOnly Update by direct evaluation upon restarting only.
DirectAtRestartAndTermination Update by direct evaluation upon restarting and at termination.

By default, ResidualUpdating is set to LinearAtRestartOnly.

See Also