pulp
pulp copied to clipboard
A python Linear Programming API
Add API interface of SAS solvers.
System: * python 3.10.6 on Linux x86_64 * PuLP 2.7 * pandas 1.5.3 Code: ```python S = [1,2,3] T = pd.Series([1,2,3]) U = pd.Series([1,2,3]) print("creating x") x = LpVariable.dict("x", (S,T),"B")...
Fixes #655 This PR makes it possible to set the objective sense in an MPS file. Currently, the objective sense in the MPS file is ignored. The sense needs to...
Details for the issue -------------------- #### I have implemented an approach to find a minimum infeasible set of constraints that works roughly as follows: 1) Assume `[C1, C2, C3, ...,...
Details for the issue -------------------- #### What did you do? I am solving the same LP problem on Pycharm IDE on Windows 10 (64-bit) and Linux systems with PULP_CBC_CMD(msg=False, threads=24)....
#### What did you do? Trying to solve a problem using PuLP and CBC (see versions below). The solution I got is not valid (some constraints are violated) #### What...
Details for the issue -------------------- #### What did you do? I have two Conda environment: `snakemake`- I set up this one first and had been using it without issue. It...
What is your question ----------------------- Hello, I'm new to github and have little experience witht Pulp, just about 4-5 months coding with it. Currently, I'm studying different formulations for solving...
Describe the new feature -------------------------- Is there any way to build/install package stubs for _pulp_? I was running static type check analysis with `mypy` but these seem missing: ``` file.py:19:...
### Use of indicator variables Hi, I am using Pulp on an optimization problem for which indicator variables are defined. From what I've seen, there is no feature in the...