ScalarStoppingConditionThreshold Property |
Gets or sets the threshold to stop at. This value is ignored if the
TypeOfStoppingCondition
indicates to stop on an extrema. This
ValueDefinitionT will be evaluated when the
evaluator is initialized and that initial value will
be used as the threshold for the actual root finding that the
StoppablePropagator will search for.
Remarks
It is possible to assign the same ValueDefinitionT for multiple conditions.
This can be useful in cases when you have multiple propagators that you want to be in lock step.
Note that a ConstantValueDefinitionT can be used here when the actual threshold value
is not known or must be changed at runtime.
This ValueDefinitionT by definition cannot vary with time.
Namespace:
AGI.Foundation.StoppingConditions
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public ValueDefinition<double> Threshold { get; set; }
Public Property Threshold As ValueDefinition(Of Double)
Get
Set
public:
property ValueDefinition<double>^ Threshold {
ValueDefinition<double>^ get ();
void set (ValueDefinition<double>^ value);
}
member Threshold : ValueDefinition<float> with get, set
Property Value
Type:
ValueDefinitionDoubleSee Also