StoppableNumericalPropagatorResults Constructor  | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.Propagators
    Assembly:
   AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic StoppableNumericalPropagatorResults(
	StoppingConditionEvent stoppingEvent,
	IList<StoppingConditionEvent> detectedEvents,
	IList<ITimeBasedState> propagatedStates,
	NumericalPropagationStateHistory numericalPropagationResults,
	bool aborted
)
Public Sub New ( 
	stoppingEvent As StoppingConditionEvent,
	detectedEvents As IList(Of StoppingConditionEvent),
	propagatedStates As IList(Of ITimeBasedState),
	numericalPropagationResults As NumericalPropagationStateHistory,
	aborted As Boolean
)
public:
StoppableNumericalPropagatorResults(
	StoppingConditionEvent^ stoppingEvent, 
	IList<StoppingConditionEvent^>^ detectedEvents, 
	IList<ITimeBasedState^>^ propagatedStates, 
	NumericalPropagationStateHistory^ numericalPropagationResults, 
	bool aborted
)
new : 
        stoppingEvent : StoppingConditionEvent * 
        detectedEvents : IList<StoppingConditionEvent> * 
        propagatedStates : IList<ITimeBasedState> * 
        numericalPropagationResults : NumericalPropagationStateHistory * 
        aborted : bool -> StoppableNumericalPropagatorResultsParameters
- stoppingEvent
 - Type: AGI.Foundation.StoppingConditionsStoppingConditionEvent
The actual final event that stopped propagation. - detectedEvents
 - Type: System.Collections.GenericIListStoppingConditionEvent
All of the events detected by the propagator. - propagatedStates
 - Type: System.Collections.GenericIListITimeBasedState
The states computed and saved from the propagation. - numericalPropagationResults
 - Type: AGI.Foundation.PropagatorsNumericalPropagationStateHistory
The NumericalPropagationStateHistory of the wrapped NumericalPropagator. - aborted
 - Type: SystemBoolean
A boolean indicated if the function run was aborted. 
See Also