MultiOdeSettingsListener Property |
Gets or sets the handler that is called to report on progress toward the solution.
Namespace:
Meta.Numerics.Analysis
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntaxpublic Action<MultiOdeResult> Listener { get; set; }
Public Property Listener As Action(Of MultiOdeResult)
Get
Set
public:
property Action<MultiOdeResult^>^ Listener {
Action<MultiOdeResult^>^ get ();
void set (Action<MultiOdeResult^>^ value);
}
member Listener : Action<MultiOdeResult> with get, set
Property Value
Type:
ActionMultiOdeResult
RemarksAs the ODE is integrated, the specified handler is called for each integration
step. This allows the handler to monitor progress toward the solution and to
obtain intermediate values via interpolation.
See Also