Solve the specified nonlinear programming problem starting the iteration from the specified starting point.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public abstract bool Solve(
	NonlinearProgrammingProblem problem,
	DoubleVector startingPoint
)
Visual Basic (Declaration)
Public MustOverride Function Solve ( _
	problem As NonlinearProgrammingProblem, _
	startingPoint As DoubleVector _
) As Boolean
Visual C++
public:
virtual bool Solve(
	NonlinearProgrammingProblem^ problem, 
	DoubleVector^ startingPoint
) abstract

Parameters

problem
Type: CenterSpace.NMath.Analysis..::.NonlinearProgrammingProblem
The nonlinear programming problem.
startingPoint
Type: CenterSpace.NMath.Core..::.DoubleVector
Initial iteration starting point.

Return Value

true if the algorithm converged to a solution. false if it did not.

See Also