Click or drag to resize

SimplexSolverBaseSolve(LinearProgrammingProblem, SimplexSolverParamsBase, IEnumerableInt32, SimplexSolverMixedIntParams) Method

Solvers a linear programming problem using the given solver parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
protected void Solve(
	LinearProgrammingProblem problem,
	SimplexSolverParamsBase solverParams,
	IEnumerable<int> integralVariableIndices = null,
	SimplexSolverMixedIntParams mixedIntParams = null
)

Parameters

problem  LinearProgrammingProblem
A linear programming problem.
solverParams  SimplexSolverParamsBase
Solver parameters.
integralVariableIndices  IEnumerableInt32  (Optional)
Indices of varibles with integral constraints.
mixedIntParams  SimplexSolverMixedIntParams  (Optional)
Solver parameters for mixed integer problems.
See Also