SolverConstraintSettings Constructor (Double, Double, SolverConstraintScaling, String) |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public SolverConstraintSettings(
double desiredValue,
double tolerance,
SolverConstraintScaling scaling,
string name
)
Public Sub New (
desiredValue As Double,
tolerance As Double,
scaling As SolverConstraintScaling,
name As String
)
public:
SolverConstraintSettings(
double desiredValue,
double tolerance,
SolverConstraintScaling^ scaling,
String^ name
)
new :
desiredValue : float *
tolerance : float *
scaling : SolverConstraintScaling *
name : string -> SolverConstraintSettings
Parameters
- desiredValue
- Type: SystemDouble
The desired value that the function
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
Sets the type of scaling to be used on this constraint. - name
- Type: SystemString
An optional name for the constraint settings.
See Also