mipOptimize Method (String)
Solve as a discrete problem.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

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.
- "l" - Stop after solving the initial continuous relaxation.
- "c" - Continue previously interrupted optimization run.
- "" - no parameter: use the default setting.
Return Value
Type: Int32
XPRBprob expl2; expl2 = new XPRBprob("example2"); expl2.setSense(XPRB.MAXIM); expl2.mipOptimize("p");
