python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to interpret cProfile results of PuLP
I fear I am a bit in over my head. I have profiled a Mixed Integer Problem (MIP) with cProfile and gprof2dot. The MIP is implemented via the pulp library. The MIP problem is solvable, which I tested o...
6'38''4
Votes: 0
Answers: 0
AttributeError: 'LpAffineExpression' object has no attribute 'solve', Error in Pullp
I'm trying to implement a problem a basis problem os Set covering with python, but pulp gives me all the time the error: AttributeError: 'LpAffineExpression' object has no attribute 'solve'
This is wh...
jopelines
Votes: 0
Answers: 1
Mixed Integer Linear Programming with pyomo or PuLP
I am new to optimization programming using python and I have a problem with defining a variable in both pyomo and PuLP for a MILP problem. I am using gene expression data and I am confused about how t...

sandaruwan Ratnayake
Votes: 0
Answers: 1
PuLP "symbol in wrong position" error and fix
PuLP sometimes gives errors when solving a linear optimization problem. For example, for the following code...
import pulp
model = pulp.LpProblem(sense=pulp.LpMaximize)
Q = pulp.LpVariable(name='Q', ...
hadizadeh.ali
Votes: 0
Answers: 1