Click or drag to resize

ScalarStoppingConditionConstraint Constructor (Scalar, Double, Double, WhenToCheckConstraint, InequalityCondition, Boolean)

Initializes a new instance.

Namespace:  AGI.Foundation.StoppingConditions
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public ScalarStoppingConditionConstraint(
	Scalar scalar,
	double threshold,
	double tolerance,
	WhenToCheckConstraint whenToCheck,
	InequalityCondition inequality,
	bool useAbsoluteValue
)

Parameters

scalar
Type: AGI.Foundation.GeometryScalar
The Scalar that will compute a value to compare with the threshold.
threshold
Type: SystemDouble
The threshold to compare with the value of the scalar.
tolerance
Type: SystemDouble
The tolerance to use when comparing the threshold with the value of the scalar.
whenToCheck
Type: AGI.Foundation.StoppingConditionsWhenToCheckConstraint
Should this StoppingConditionConstraint should be checked,.
inequality
Type: AGI.Foundation.StoppingConditionsInequalityCondition
How to compare the computed value with the threshold.
useAbsoluteValue
Type: SystemBoolean
Should the absolute value of the value of the scalar be used.
See Also