Skip to content

Commit

Permalink
comment writeLP
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain MONTAGNÉ committed Jul 17, 2021
1 parent fd483ff commit 305c050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vrpy/master_solve_pulp.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def solve(self, relax, time_limit):
logger.debug("master problem relax %s" % relax)
logger.debug("Status: %s" % pulp.LpStatus[self.prob.status])
logger.debug("Objective: %s" % pulp.value(self.prob.objective))
self.prob.writeLP("master.lp")
# self.prob.writeLP("master.lp")

if pulp.LpStatus[self.prob.status] != "Optimal":
raise Exception("problem " + str(pulp.LpStatus[self.prob.status]))
Expand Down

0 comments on commit 305c050

Please sign in to comment.