DoubleFunctionExplorerProgress Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic DoubleFunctionExplorerProgress(
DoubleFunctionExplorer explorer,
double start,
double stop,
double complete,
int percentComplete
)
Public Sub New (
explorer As DoubleFunctionExplorer,
start As Double,
stop As Double,
complete As Double,
percentComplete As Integer
)
public:
DoubleFunctionExplorerProgress(
DoubleFunctionExplorer^ explorer,
double start,
double stop,
double complete,
int percentComplete
)
new :
explorer : DoubleFunctionExplorer *
start : float *
stop : float *
complete : float *
percentComplete : int -> DoubleFunctionExplorerProgress
Parameters
- explorer
- Type: AGI.Foundation.NumericalMethods.DoubleFunctionExplorer
The explorer instance that is reporting progress. - start
- Type: System.Double
The beginning of the interval being explored. - stop
- Type: System.Double
The end of the interval being explored. - complete
- Type: System.Double
The portion of the interval that has already been evaluated. - percentComplete
- Type: System.Int32
The percentage of the interval that has already been completed.
See Also