The integration method.

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

Syntax

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

Field Value

An OdeAdamsGear.IntegrationType specifying the integration method to be used.

Default: IntegrationMethod = OdeAdamsGear.IntegrationType.BDF.

Remarks

IntegrationMethod must be one of the values specified in the table which follows.

valueDescription
AdamsUse the implicit Adams method.
BDFUse backward differentiation formula (BDF) methods.

See Also