WhenToCheckConstraint Enumeration |
An enumeration specifying when a
StoppingConditionConstraint should be checked.
Since the
stopping conditions are usually
numerically sampled, there is a moment when an event is detected, but not exactly found to
within tolerance.
Namespace:
AGI.Foundation.StoppingConditions
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum WhenToCheckConstraint
Public Enumeration WhenToCheckConstraint
public enum class WhenToCheckConstraint
type WhenToCheckConstraint
Members
| Member name | Description |
---|
| AtExactEvent |
Check when an exact event has been found. If the
constraint result may change between when an
event is detected and when it is exactly found, then checking the
constraints at the exact event
will be more robust than checking when it is detected.
|
| WhenEventIsDetected |
Check when an event is detected. If the constraint
is not likely to be near its critical
value when the condition is, then checking when a
event is detected should prevent the stopping condition function from honing in on an exact event
which can improve performance.
|
See Also