SequentialQuadraticProgrammingOptimizerFindSolution Method (Int32, Boolean, ITrackCalculationProgress) |
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override bool FindSolution(
int numberOfIterations,
bool justFinalResult,
ITrackCalculationProgress progressTracker
)
Public Overrides Function FindSolution (
numberOfIterations As Integer,
justFinalResult As Boolean,
progressTracker As ITrackCalculationProgress
) As Boolean
public:
virtual bool FindSolution(
int numberOfIterations,
bool justFinalResult,
ITrackCalculationProgress^ progressTracker
) override
abstract FindSolution :
numberOfIterations : int *
justFinalResult : bool *
progressTracker : ITrackCalculationProgress -> bool
override 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