Initializing help system before first use

lpOptimize Method (String)

Solve as a continuous problem.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public int lpOptimize(
	string alg
)

Parameters

alg
Type:  SystemString
choice of the solution algorithm. Possible values:
  • "p" - Use primal simplex algorithm.
  • "d" - Use dual simplex algorithm.
  • "b" - Use Newton-Barrier algorithm.
  • "n" - Use the network solver.
  • "c" - Continue previously interrupted optimization run.
  • "" - no parameter: use the default setting.

Return Value

Type:  Int32
Examples
XPRBprob expl2; expl2 = new XPRBprob("example2"); expl2.setSense(XPRB.MAXIM); expl2.lpOptimize("b");
See Also