Error: presolve, constraint maquina['mu3','jl4','ju10','mu4']: Presolve eliminates 204 constraints and 64 variables. Error: all variables eliminated, but lower bound = 1 > 0 Adjusted problem: Error: presolve, constraint maquina['mu3','jl3','ju9','mu4']: 29 variables, all linear Error: all variables eliminated, but lower bound = 1 > 0 256 constraints, all linear; 440 nonzeros Error: presolve, constraint maquina['mu3','jl3','ju8','mu4']: 36 equality constraints Error: all variables eliminated, but lower bound = 1 > 0 220 inequality constraints
What is that and What cant do to solve this problem?Attached files if anyone can help me.Thank you for the help.
As a start on checking the model, I suggest picking one of the error messages, say,
presolve, constraint maquina['mu3','jl4','ju12','mu4']:
all variables eliminated, but lower bound = 1 > 0
and expanding the constraint mentioned in the message:
ampl: expand maquina['mu3','jl4','ju12','mu4'];
subject to maquina['mu3','jl4','ju12','mu4']:
-XL['jl4','mu4'] = 0;
Next I would check the bounds on the one variable in this constraint:
ampl: display XL['jl4','mu4'].lb,XL['jl4','mu4'].ub;
XL['jl4','mu4'].lb = 1
XL['jl4','mu4'].ub = 1
Here I see that AMPL's presolve phase has determined that this variable must equal one. Thus the constraint becomes -1 = 0, which cannot possibly be satisfied. Now you will have to make a further examination of your model to figure out why this contradiction is occurring.
Bob Fourer
From: am...@googlegroups.com [mailto:am...@googlegroups.com]
On Behalf Of Stefano Coniglio
Sent: Thursday, October 10, 2013 11:58 AM
To: am...@googlegroups.com
Subject: [AMPL 7550] Re: Error: all variables eliminated, but lower bound = 1 > 0