public abstract class SegmentPropagatorVariable extends DefinitionalObject
MultivariableFunctionSolver in conjunction with
SegmentPropagators.SegmentPropagatorVariableEvaluator| Modifier | Constructor and Description |
|---|---|
protected |
SegmentPropagatorVariable()
Initializes a new instance.
|
protected |
SegmentPropagatorVariable(double maximumStep,
double perturbation,
SegmentDefinition segment)
Initializes a new instance.
|
protected |
SegmentPropagatorVariable(double maximumStep,
double perturbation,
SegmentDefinition segment,
SolverVariableScaling scaling)
Initializes a new instance.
|
protected |
SegmentPropagatorVariable(SegmentPropagatorVariable existingInstance,
CopyContext context)
Initializes a new instance as a copy of an existing instance.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
checkForSameDefinition(DefinitionalObject other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
protected abstract boolean |
checkForSameDefinition(SegmentPropagatorVariable other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
protected int |
computeCurrentDefinitionHashCode()
Computes a hash code based on the current properties of this object.
|
void |
enumerateDependencies(DependencyEnumerator enumerator)
Enumerates the dependencies of this object by calling
DependencyEnumerator#enumerate(T) for each object that this object directly depends upon. |
protected void |
freezeAggregatedObjects()
Called by
DefinitionalObject.freeze() to also freeze any objects that are considered to be a part of this object. |
abstract SegmentPropagatorVariableEvaluator |
getEvaluator(EvaluatorGroup group)
Gets a
SegmentPropagatorVariableEvaluator for this variable. |
String |
getName()
Gets an optional name for this variable.
|
double |
getPerturbationValue()
Gets the perturbation value to use when computing a numerical derivative relative
to this variable of a
SolvableMultivariableFunction that uses
SegmentPropagators. |
SegmentDefinition |
getSegment()
Gets the
segment that this variable will act on. |
SolverVariableSettings |
getSettings()
Gets the settings for the
MultivariableFunctionSolver associated with this variable. |
void |
setName(String value)
Sets an optional name for this variable.
|
void |
setPerturbationValue(double value)
Sets the perturbation value to use when computing a numerical derivative relative
to this variable of a
SolvableMultivariableFunction that uses
SegmentPropagators. |
void |
setSegment(SegmentDefinition value)
Sets the
segment that this variable will act on. |
void |
setSettings(SolverVariableSettings value)
Sets the settings for the
MultivariableFunctionSolver associated with this variable. |
protected void |
validateProperties()
Validates that required properties are configured correctly in order to get an
evaluator for this instance.
|
areSameDefinition, areSameDefinition, areSameDefinition, areSameDefinition, areSameDefinition, clone, collectionItemsAreSameDefinition, collectionItemsAreSameDefinition, collectionItemsAreSameDefinition, dictionaryItemsAreSameDefinition, freeze, getCollectionHashCode, getCollectionHashCode, getCollectionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDictionaryHashCode, getIsFrozen, isSameDefinition, throwIfFrozenprotected SegmentPropagatorVariable()
Initializes a new instance.
Before SegmentPropagatorVariable.getEvaluator(agi.foundation.EvaluatorGroup) can be called,
PerturbationValue (get / set) and Segment (get / set) must be configured, and
Settings (get / set) must be configured with a valid MaximumStep (get / set).
Scaling (get / set) defaults to NoScalingOnVariable.
protected SegmentPropagatorVariable(double maximumStep,
double perturbation,
SegmentDefinition segment)
Initializes a new instance.
Scaling (get / set) defaults to NoScalingOnVariable.
protected SegmentPropagatorVariable(double maximumStep,
double perturbation,
SegmentDefinition segment,
SolverVariableScaling scaling)
Initializes a new instance.
Scaling (get / set) defaults to NoScalingOnVariable.
maximumStep - The maximum step that this variable should take.perturbation - The perturbation that should be used when finding the derivative of a
functions derivative with respect to this variable.segment - The segment that this variable will operate on.scaling - The type of scaling to be used on this variable.protected SegmentPropagatorVariable(@Nonnull SegmentPropagatorVariable existingInstance, @Nonnull CopyContext context)
See ICloneWithContext.clone(CopyContext) for more information about how to implement this constructor
in a derived class.
existingInstance - The existing instance to copy.context - A CopyContext that controls the depth of the copy.ArgumentNullException - Thrown when existingInstance or context is null.protected final boolean checkForSameDefinition(DefinitionalObject other)
true if it does. Derived classes MUST override this method and check
all new fields introduced by the derived class for definitional equivalence. It is NOT necessary
to check base class fields because the base class will already have done that. When overriding this method,
you should NOT call the base implementation because it will return false for all derived-class instances.
Derived classes should check the type of other to preserve the symmetric nature of IEquatableDefinition.isSameDefinition(java.lang.Object).checkForSameDefinition in class DefinitionalObjectother - The other instance to compare to this one.true if the two objects are defined equivalently; otherwise false.protected abstract boolean checkForSameDefinition(SegmentPropagatorVariable other)
true if it does. Derived classes MUST override this method and check
all new fields introduced by the derived class for definitional equivalence. It is NOT necessary
to check base class fields because the base class will already have done that. When overriding this method,
you should NOT call the base implementation because it will return false for all derived-class instances.
Derived classes should check the type of other to preserve the symmetric nature of IEquatableDefinition.isSameDefinition(java.lang.Object).other - The other instance to compare to this one.true if the two objects are defined equivalently; otherwise false.protected int computeCurrentDefinitionHashCode()
SegmentPropagatorVariable.checkForSameDefinition(agi.foundation.infrastructure.DefinitionalObject) method.computeCurrentDefinitionHashCode in class DefinitionalObjectpublic void enumerateDependencies(DependencyEnumerator enumerator)
DependencyEnumerator#enumerate(T) for each object that this object directly depends upon.
Derived classes which contain additional dependencies MUST override this method, call the base
implementation, and enumerate dependencies introduced by the derived class.enumerateDependencies in interface IEnumerateDependenciesenumerateDependencies in class DefinitionalObjectenumerator - The enumerator that is informed of the dependencies of this object.protected void freezeAggregatedObjects()
DefinitionalObject.freeze() to also freeze any objects that are considered to be a part of this object.
Derived classes which contain additional aggregated objects MUST override this method, call the base
implementation, and freeze aggregated objects introduced by the derived class. The objects that need to be
frozen in this method are frequently created in this object's constructor and are not settable via
properties.freezeAggregatedObjects in class DefinitionalObjectpublic final double getPerturbationValue()
SolvableMultivariableFunction that uses
SegmentPropagators.public final void setPerturbationValue(double value)
SolvableMultivariableFunction that uses
SegmentPropagators.public final SegmentDefinition getSegment()
segment that this variable will act on.public final void setSegment(SegmentDefinition value)
segment that this variable will act on.public final SolverVariableSettings getSettings()
MultivariableFunctionSolver associated with this variable.public final void setSettings(SolverVariableSettings value)
MultivariableFunctionSolver associated with this variable.public final String getName()
public final void setName(String value)
@Nonnull public abstract SegmentPropagatorVariableEvaluator getEvaluator(@Nonnull EvaluatorGroup group)
SegmentPropagatorVariableEvaluator for this variable.
Derived classes should call SegmentPropagatorVariable.validateProperties() to check properties
owned by this base class, as well as validate their own properties.
group - The EvaluatorGroup to use to create any necessary
evaluators for this variable.variable evaluator.protected void validateProperties()
SegmentPropagatorVariable.getEvaluator(agi.foundation.EvaluatorGroup), as well as validate their own properties.