StoppablePropagatorResults Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public StoppablePropagatorResults(
StoppingConditionEvent stoppingEvent,
IList<StoppingConditionEvent> detectedEvents,
IEnumerable<ITimeBasedState> propagatedStates,
bool aborted
)
Public Sub New (
stoppingEvent As StoppingConditionEvent,
detectedEvents As IList(Of StoppingConditionEvent),
propagatedStates As IEnumerable(Of ITimeBasedState),
aborted As Boolean
)
public:
StoppablePropagatorResults(
StoppingConditionEvent^ stoppingEvent,
IList<StoppingConditionEvent^>^ detectedEvents,
IEnumerable<ITimeBasedState^>^ propagatedStates,
bool aborted
)
new :
stoppingEvent : StoppingConditionEvent *
detectedEvents : IList<StoppingConditionEvent> *
propagatedStates : IEnumerable<ITimeBasedState> *
aborted : bool -> StoppablePropagatorResults
Parameters
- stoppingEvent
- Type: AGI.Foundation.StoppingConditionsStoppingConditionEvent
The actual final event that stopped propagation. It is
assumed that this is included in the detectedEvents. - detectedEvents
- Type: System.Collections.GenericIListStoppingConditionEvent
All the events detected by the propagator. - propagatedStates
- Type: System.Collections.GenericIEnumerableITimeBasedState
The states computed and saved from the propagation. - aborted
- Type: SystemBoolean
A boolean indicated if the function run was aborted.
See Also