Sets the minimum separation between accepted roots.

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

Syntax

C#
public virtual double MinimumSeparation { get; set; }
Visual Basic (Declaration)
Public Overridable Property MinimumSeparation As Double
Visual C++
public:
virtual property double MinimumSeparation {
	double get ();
	void set (double value);
}

Field Value

A double containing the minimum separation between accepted roots. If two points satisfy the convergence criteria, but are within MinimumSeparation of each other, only one of the roots is accepted. MinimumSeparation must be greater than or equal to 0.0.

Default: MinimumSeparation = 1.0e-8/XScale.

See Also