pulp
pulp copied to clipboard
A python Linear Programming API
This commit adds support for the `maxNodes` option for the CBC solver. Includes a simple test to make sure the option is implemented correctly. I originally tried to create a...
PulpSolverError: Pulp: Error while executing D:\Program Files\Python\Anaconda\lib\site-packages\pulp\apis\..\solverdir\cbc\win\64\cbc.exe How to solve?
Details for the issue -------------------- #### What did you do? What I think is a bug, consists in writing a LpConstraint from LpVariables the following way: `LHS == RHS` Case...
to address issue #483 With this change, the following lpDot operation behaves as expected. ```python import pandas as pd import numpy as np import pulp as pl x = pd.Series(pl.LpVariable.dicts("x",...
Details for the issue -------------------- #### What did you do? Define a df `pd.DataFrame` with some values being `pulp.LpAffineExtression` variables. #### What did you expect to see? When displaying the...
Problem: the `timeLimit` argument is not available for the `MOSEK` solver class. This has been made explicit in the `__init__`. Other changes: * default parameter for `options` is None and...
Let assume I import pulp as ```import pulp``` When using type hints in pulp, should I use `pulp.pulp.LpVariable` or `pulp.LpVariable`. When using `type(variable)` it returns `pulp.pulp.LpVariable`. I assume that the...
In [pulp.cfg.linux](https://github.com/coin-or/pulp/blob/master/pulp/pulp.cfg.linux) and other pulp.cfg.* files, there are some hard-coded paths should be modified or optimized such as: > GurobiPath = /opt/gurobi201/linux32/lib/python2.5 I found this issue because my PYTHONPATH is...
Details for the issue -------------------- #### What did you do? Having just updated PuLP to use the HiGHS_CMD warmstart option, I am now unable to use HiGHS (but it appears...
What is your question ----------------------- I am using Windows 10, and an anaconda python 3.10 environment. I installed Pulp using ```python -m pip install pulp```, and I also tried with...