DoubleFunctionExplorerProgress Constructor  | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods.Advanced
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.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 -> DoubleFunctionExplorerProgressParameters
- explorer
 - Type: AGI.Foundation.NumericalMethodsDoubleFunctionExplorer
The explorer instance that is reporting progress. - start
 - Type: SystemDouble
The beginning of the interval being explored. - stop
 - Type: SystemDouble
The end of the interval being explored. - complete
 - Type: SystemDouble
The portion of the interval that has already been evaluated. - percentComplete
 - Type: SystemInt32
The percentage of the interval that has already been completed. 
See Also