Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public enum WhenToCheckConstraint
Members
  Member nameDescription
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