Solvers in PuLP

Learn about the different solvers that PuLP uses for optimizing a linear programming problem.

PuLP employs an API solver from an available list of optimizers to solve the given linear programming problem.

We can use solvers by specifying them as an argument in the solve method.For instance, in order to use the GLPK method for solving prob, we should use this construction:

prob.solve(GLPK(msg = 0))

While this is not compulsory, some solvers allow the users to pass an initial guess as an argument. This allows solvers to optimize the solution around that guess.

Currently, the PuLP library has the following optimizers for solving LP problems:

  • CBC
  • GLPK
  • CLP
  • CPLEX
  • Gurobi
  • MOSEK
  • FICO XPRESS
  • Choco SolverMIPCL
  • SICP

We’ll talk about some optimizers that are good for linear programming below.

The COIN-OR branch and cut optimizer

COIN-OR branch and cut, or CBC, is the default optimization solver in PuLP. It is an open-source solver by the COIN-OR project, which finds the non-integral solutions of an optimization problem, branches the answer to the nearest integral solutions, cuts the answers (branches) that do not optimize the problem, and continues the process until the upper bound equals the lower bound.

The COIN-OR LP optimizer

COIN-OR LP stands for COIN-OR linear programming, often abbreviated as CLP. It is another open-source optimization solver by the COIN-OR project designed to optimize the problems of the form.

minctx\min{c^tx} ...