Overview | Group | Tree | Graph | Index | Concepts |
The routineCPXqpopt
may be used, at any time after a
continuous quadratic program has been created, to find a solution to that
problem using one of CPLEX's quadratic optimizers. The parameter
CPX_PARAM_QPMETHOD
controls the choice of optimizer (Dual
Simplex, Primal Simplex, or Barrier). With the default setting
of this parameter (that is, Automatic
)
CPLEX invokes the barrier method because it is fastest on a
wide range of problems.
Example
status = CPXqpopt (env, lp);
See Also:
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to the CPLEX problem object as returned by |