MultivariableFunctionSolverFindSolution Method (Int32, Boolean) |
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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: 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.
Return Value
Type:
BooleanIf the solver converged on a solution. See the
LastRunsResults
for the results.
See Also