ParameterOptimizerFindSolution Method (Int32, Boolean, ITrackCalculationProgress) | 
  
    Namespace: 
   AGI.Foundation.NumericalMethods
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract bool FindSolution(
	int numberOfIterations,
	bool justFinalResult,
	ITrackCalculationProgress progressTracker
)
Public MustOverride Function FindSolution ( 
	numberOfIterations As Integer,
	justFinalResult As Boolean,
	progressTracker As ITrackCalculationProgress
) As Boolean
public:
virtual bool FindSolution(
	int numberOfIterations, 
	bool justFinalResult, 
	ITrackCalculationProgress^ progressTracker
) abstract
abstract FindSolution : 
        numberOfIterations : int * 
        justFinalResult : bool * 
        progressTracker : ITrackCalculationProgress -> bool 
Parameters
- numberOfIterations
 - Type: SystemInt32
The number of iterations that may be performed while
            attempting to find a solution. - justFinalResult
 - Type: SystemBoolean
Tells this method to only include the final results, or
            the results of each iteration. - progressTracker
 - Type: AGI.FoundationITrackCalculationProgress
An optional progress tracker. 
Return Value
Type: 
BooleanIf the optimizer converged on a solution. See the 
LastRunsResults
            for the results.
See Also