Click or drag to resize

SolverVariableSettings Constructor (Double, Double, Double, SolverVariableScaling)

Initializes a new instance.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public SolverVariableSettings(
	double maximumStep,
	double initialValue,
	double variableTolerance,
	SolverVariableScaling scaling
)

Parameters

maximumStep
Type: SystemDouble
The maximum step to take when changing the value of this variable.
initialValue
Type: SystemDouble
The initial value of the variable.
variableTolerance
Type: SystemDouble
How small of a step the variable can take when being solved numerically. If all variables in a SolvableMultivariableFunction are asked to step by less than this value, then the MultivariableFunctionSolver can not converge and will abort.
scaling
Type: AGI.Foundation.NumericalMethodsSolverVariableScaling
The type of scaling to be used on this variable.
See Also