I am using Pyomo together with Gurobi (and other solvers such as cbc). I am trying to compute an Irreducible Infeasible Set (ISS).
In Pyomo documentation, get_model_attr takes an attribute, among which 'IISMinimal'. On the other hand Gurobi documentation states that "this attribute is only available after you have computed an IIS on an infeasible model". However I haven't found how to actually compute an IIS for a given infeasible model.
To give more context to this question, I am trying to determine which constraints make my problem infeasible. I've read about the subject (here and there for example) but as several users user state in their comments, I haven't been able to make it work so far.