FollowSegmentEndingPropagatorPropagateToFinalState Method |
Namespace:
AGI.Foundation.SegmentPropagation
Assembly:
AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract SegmentResults PropagateToFinalState(
SegmentPropagator basePropagateSegmentPropagator,
SegmentListResults previousResults,
PropagateSegmentConfiguration propagatorConfiguration,
ITimeBasedState actualInitialState,
IntegrationSense direction
)
Public MustOverride Function PropagateToFinalState (
basePropagateSegmentPropagator As SegmentPropagator,
previousResults As SegmentListResults,
propagatorConfiguration As PropagateSegmentConfiguration,
actualInitialState As ITimeBasedState,
direction As IntegrationSense
) As SegmentResults
public:
virtual SegmentResults^ PropagateToFinalState(
SegmentPropagator^ basePropagateSegmentPropagator,
SegmentListResults^ previousResults,
PropagateSegmentConfiguration^ propagatorConfiguration,
ITimeBasedState^ actualInitialState,
IntegrationSense direction
) abstract
abstract PropagateToFinalState :
basePropagateSegmentPropagator : SegmentPropagator *
previousResults : SegmentListResults *
propagatorConfiguration : PropagateSegmentConfiguration *
actualInitialState : ITimeBasedState *
direction : IntegrationSense -> SegmentResults
Parameters
- basePropagateSegmentPropagator
- Type: AGI.Foundation.SegmentPropagationSegmentPropagator
The SegmentPropagator that can be propagated to
produce the FollowSegment's initial state. - previousResults
- Type: AGI.Foundation.SegmentPropagationSegmentListResults
The cumulative results of propagation up to this point
to use when running the basePropagateSegmentPropagator. Only needed
if the basePropagateSegmentPropagator will be propagated. - propagatorConfiguration
- Type: AGI.Foundation.SegmentPropagationPropagateSegmentConfiguration
The configuration needed to run the
basePropagateSegmentPropagator. Only needed if the
basePropagateSegmentPropagator will be propagated. - actualInitialState
- Type: AGI.Foundation.CoordinatesITimeBasedState
The initial state as derived from the FollowSegmentBeginningPropagator
of the FollowSegment. - direction
- Type: AGI.Foundation.NumericalMethodsIntegrationSense
The direction of propagation.
Return Value
Type:
SegmentResultsThe
state that the
FollowSegment
should start propagating from.
See Also