ScalarStoppingCondition Constructor (Scalar, Double, StopType) | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.StoppingConditions
    Assembly:
   AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic ScalarStoppingCondition(
	Scalar scalar,
	double valueTolerance,
	StopType type
)
Public Sub New ( 
	scalar As Scalar,
	valueTolerance As Double,
	type As StopType
)
public:
ScalarStoppingCondition(
	Scalar^ scalar, 
	double valueTolerance, 
	StopType type
)
new : 
        scalar : Scalar * 
        valueTolerance : float * 
        type : StopType -> ScalarStoppingConditionParameters
- scalar
 - Type: AGI.Foundation.GeometryScalar
The Scalar that will provide values to sample. - valueTolerance
 - Type: SystemDouble
The tolerance between the value returned by scalar and the 
            Threshold. - type
 - Type: AGI.Foundation.StoppingConditionsStopType
Specifies what type of threshold or extrema this StoppingCondition is attempting to stop on. 
See Also