Infeasible Model

Problems with modeling
Post Reply
sph_93
User
User
Posts: 8
Joined: 3 years ago

Infeasible Model

Post by sph_93 »

Hello,
My model gives the error in the execution:row '...' infeasible, all entries at implied bounds

The objective function with the first three additional functions can be executed without problems. In combination with the fourth and fifth additional functions, this error is displayed.
grafik.png
Can you help me with this problem?
Untitled_8.gms
(5.34 KiB) Downloaded 190 times
User avatar
bussieck
Moderator
Moderator
Posts: 1038
Joined: 7 years ago

Re: Infeasible Model

Post by bussieck »

There are different way to analyze infeasibilities. Just search the forum. You are the only one who can deal with it. We (forum member) can just point you to ways to analyze this. One way is iis (see e.g. https://www.gams.com/latest/docs/S_CPLEX.html#CPLEXiis). If this is small (as in your case) this often helps. Cplex spits out the following iis (when solving as rmip):

Code: Select all

Number of equations in the conflict:  7.
fixed: Bestandsausgl(j1,t1) = -150
upper: Produktionsbed(j1,l1,s1,s1) < 0
upper: Produktionsbed(j1,l1,s2,s1) < 0
upper: Produktionsbed(j1,l1,s3,s1) < 0
upper: Produktionsbed(j1,l2,s1,s1) < 0
upper: Produktionsbed(j1,l2,s2,s1) < 0
upper: Produktionsbed(j1,l2,s3,s1) < 0

Number of variables in the conflict:  1.
lower: IL(j1,t1) > 0
Other methods are feasOpt (see e.g. https://www.gams.com/latest/docs/S_CPLE ... RELAXATION) or you proving a "solution" and using the equation listing to spot the problem.

Good luck.

-Michael
Post Reply