Search code examples
pythonlinear-programmingpulp

Which solver pulp decided to use?


When we write

prob.solve()

program decides automatically which method to use. Is it possible to find out, which method PULP decided to use in my problem?


Solution

  • I encourage you to read pulp's docs. Or the project README: https://github.com/coin-or/pulp/

    See the examples directory for examples.

    PuLP requires Python 2.7 or Python >= 3.4.

    The examples use the default solver (CBC). To use other solvers they must be available (installed and accessible). For more information on how to do that, see the guide on configuring solvers.