SegmentPropagatorConstraint Constructor (Double, Double, SolverConstraintScaling) |
Initializes a new instance. The weight defaults to 1.0.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax protected SegmentPropagatorConstraint(
double desiredValue,
double tolerance,
SolverConstraintScaling scaling
)
Protected Sub New (
desiredValue As Double,
tolerance As Double,
scaling As SolverConstraintScaling
)
protected:
SegmentPropagatorConstraint(
double desiredValue,
double tolerance,
SolverConstraintScaling^ scaling
)
new :
desiredValue : float *
tolerance : float *
scaling : SolverConstraintScaling -> SegmentPropagatorConstraint
Parameters
- desiredValue
- Type: SystemDouble
The desired value that the SolvableMultivariableFunction
will be driven to.
- tolerance
- Type: SystemDouble
How close the evaluated value must get to the desiredValue
to consider this constraint satisfied.
- scaling
- Type: AGI.Foundation.NumericalMethodsSolverConstraintScaling
The type of scaling to be used on this constraint.
See Also