The method for solving the formula equations.

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

Syntax

C#
public virtual OdeAdamsGear..::.SolveOption SolveMethod { get; set; }
Visual Basic (Declaration)
Public Overridable Property SolveMethod As OdeAdamsGear..::.SolveOption
Visual C++
public:
virtual property OdeAdamsGear..::.SolveOption SolveMethod {
	OdeAdamsGear..::.SolveOption get ();
	void set (OdeAdamsGear..::.SolveOption value);
}

Field Value

An OdeAdamsGear.SolveOption specifying the method to be used for solving the formula equations.

Default: SolveMethod = OdeAdamsGear.SolveOption.ChordComputedJacobian.

Remarks

Note that if the problem is stiff and a chord or modified Newton method is most efficient, use ChordUserJacobian or ChordComputedJacobian. SolveMethod must be one of the values specified in the table which follows.

valueDescription
FunctionIterationUse a function iteration or successive substitution method.
ChordUserJacobianUse a chord or modified Newton method and a user-supplied Jacobian.
ChordComputedJacobianUse a chord or modified Newton method and a divided differences Jacobian.
ChordComputedDiagonalUse a chord method and a diagonal matrix based on a directional directive.

See Also