First time here? Check out the FAQ!

Ask Your Question
0

MixedIntegerLinearProgram with non feasible problem

asked 3 years ago

Cyrille gravatar image

updated 1 year ago

FrédéricC gravatar image

This is a simple reflexion : when glpk diagnose that a Linear programming program has no solution this is not an error but a diagnose in MixedIntegerLinearProgram. So the result should be only a warning that there is not feasible solution not a list of errors

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 3 years ago

Max Alekseyev gravatar image

updated 3 years ago

This is not specific to glpk solver, and absence of solutions is serious enough to raise an exception rather than giving just a warning. Anyway, you can easily catch this exception by enclosing .solve() into try and except like in the example below:

from sage.numerical.mip import MIPSolverException

M = MixedIntegerLinearProgram()
x = M.new_variable()
M.add_constraint(x[0] == 0)
M.add_constraint(x[0] == 1)
try:
    M.solve()
except MIPSolverException:
    print("No feasible solution")
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 652 times

Last updated: Jan 13 '22