MultivariableFunctionSolver.FindSolution Method (Int32, Boolean) |
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool FindSolution(
int numberOfIterations,
bool justFinalResult
)
Public Function FindSolution (
numberOfIterations As Integer,
justFinalResult As Boolean
) As Boolean
public:
bool FindSolution(
int numberOfIterations,
bool justFinalResult
)
member FindSolution :
numberOfIterations : int *
justFinalResult : bool -> bool
Parameters
- numberOfIterations
- Type: System.Int32
The number of iterations that may be performed while
attempting to find a solution. - justFinalResult
- Type: System.Boolean
Tells this method to only include the final results, or
the results of each iteration.
Return Value
Type:
BooleanIf the solver converged on a solution. See the
LastRunsResults
for the results.
See Also