ValueInStateStoppingCondition Constructor (String, Double, StopType) |
Initializes a new instance.
Namespace:
AGI.Foundation.StoppingConditions
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public ValueInStateStoppingCondition(
string element,
double valueTolerance,
StopType type
)
Public Sub New (
element As String,
valueTolerance As Double,
type As StopType
)
public:
ValueInStateStoppingCondition(
String^ element,
double valueTolerance,
StopType type
)
new :
element : string *
valueTolerance : float *
type : StopType -> ValueInStateStoppingCondition
Parameters
- element
- Type: SystemString
The name of the element in the state to sample when looking for an event. - valueTolerance
- Type: SystemDouble
The tolerance between the value of the element in the
state and the Threshold. - type
- Type: AGI.Foundation.StoppingConditionsStopType
Specifies what type of threshold or extrema this StoppingCondition is attempting to stop on.
See Also