Package | Description |
---|---|
agi.foundation.numericalmethods |
Contains general numerical algorithms.
|
agi.foundation.segmentpropagation |
Contains types for modeling a trajectory in segments, where the type of propagation varies for each segment.
|
Modifier and Type | Method and Description |
---|---|
SetVariableCallback<T> |
DelegateBasedVariable.getSetter()
Gets the
delegate that will alter the relevant value in the
segment's configuration. |
static <T extends ICloneWithContext> |
SetVariableCallback.of(SetVariableCallback.Function<T> f)
Create a delegate for the given interface.
|
static <T extends ICloneWithContext> |
SetVariableCallback.of(SetVariableCallback.Function<T> f,
Class<?> targetClass,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
static <T extends ICloneWithContext> |
SetVariableCallback.of(SetVariableCallback.Function<T> f,
Object targetObject,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
Modifier and Type | Method and Description |
---|---|
void |
DelegateBasedVariable.setSetter(SetVariableCallback<T> value)
Sets the
delegate that will alter the relevant value in the
segment's configuration. |
Constructor and Description |
---|
DelegateBasedVariable(double maximumStep,
double perturbation,
SegmentDefinition segment,
SetVariableCallback<T> setter)
Initializes a new instance.
|
DelegateBasedVariable(double maximumStep,
double perturbation,
SegmentDefinition segment,
SetVariableCallback<T> setter,
SolverVariableScaling scaling)
Initializes a new instance.
|
Modifier and Type | Method and Description |
---|---|
DelegateBasedVariable<ImpulsiveManeuverSegmentConfiguration> |
ImpulsiveManeuverSegment.createVariable(double maximumStep,
double perturbation,
SetVariableCallback<ImpulsiveManeuverSegmentConfiguration> setter)
Creates a
DelegateBasedVariable based on this
segment's configuration . |
DelegateBasedVariable<ImpulsiveManeuverSegmentConfiguration> |
ImpulsiveManeuverSegment.createVariable(double maximumStep,
double perturbation,
SetVariableCallback<ImpulsiveManeuverSegmentConfiguration> setter,
SolverVariableScaling scaling)
Creates a
DelegateBasedVariable based on this
segment's configuration . |
DelegateBasedVariable<InitialStateSegmentConfiguration> |
InitialStateSegment.createVariable(double maximumStep,
double perturbation,
SetVariableCallback<T> setter)
Creates a
DelegateBasedVariable based on this segments configuration, which is
the state that will be returned when this segment is propagated. |
DelegateBasedVariable<InitialStateSegmentConfiguration> |
InitialStateSegment.createVariable(double maximumStep,
double perturbation,
SetVariableCallback<T> setter,
SolverVariableScaling scaling)
Creates a
DelegateBasedVariable based on this segments configuration, which is
the state that will be returned when this segment is propagated. |