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: 23.2.417.0 (23.2.417.0)
Syntaxpublic 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 a
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 a 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