I have the following code:
reset;
option solver "cplex";
option cplex_options sensitivity;
var RO >= 0;
var CR >= 0;
maximize z: 80*RO + 460*CR;
subject to nurse: 2*RO + 5*CR <= 200;
subject to doctor: 1*RO + 2*CR <= 90;
subject to bed: 0*RO + 1*CR <= 35;
solve;
display _conname, _con.slack, _con.down, _con.current, _con.up, _con.dual;
AMPL displays all 0s for the sensitivity analysis values of constraint bed where as the expected solution is different.
Can someone help me understand why this is the case?
Thank you.