I have a linear program that is found to be infeasible by CPLEX (i.e., it makes it past presolve just fine). I want to determine which constraints are causing the infeasibility. I have tried using the "option iisfind 1" command, but get a "bad suffix" error:
CPLEX
12.4.0.0: infeasible problem.
2 dual simplex iterations (0 in phase I)
constraint.dunbdd returned
4327 extra dual simplex iterations for ray
#Total 1220.67
#execute 0.196 0 1240710448
ampl: display con.iis;
con is not defined
context: display >>> con.iis; <<<
ampl: display _con.iis;
Bad suffix .iis for _con
context: display >>> _con.iis; <<<
Possible suffix values for _con.suffix:
astatus body defvar derstage
dinit dinit0 dual dunbdd
lb lbs lbs1 lbs2
ldual lslack no relax
slack sno sstatus stage
status ub ubs ubs1
ubs2 udual uslack
I have tried turning presolve off (even though that shouldn't matter in this case) and typing "solve" a second time, but I get the same error each time. I saw some other posts on here with a similar issue, but they presumably were resolved by just turning presolve off (although I could have easily missed a more relevant post). I feel like this should be straight-forward. Any suggestions would be appreciated. Thank you!