DelegateBasedVariableTSetter Property |
Gets or sets the delegate that will alter the relevant value in the
segment's configuration.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public SetVariableCallback<T> Setter { get; set; }
Public Property Setter As SetVariableCallback(Of T)
Get
Set
public:
property SetVariableCallback<T>^ Setter {
SetVariableCallback<T>^ get ();
void set (SetVariableCallback<T>^ value);
}
member Setter : SetVariableCallback<'T> with get, set
Property Value
Type:
SetVariableCallbackTRemarks
The setter function should have no state.
A setter function typically will add the input value from the
MultivariableFunctionSolver to a value in the configuration.
The value in the configuration before this addition represents the initial value of this variable.
Each time the solver iterates the configuration is reset to its initial configuration.
See Also