I have an unbounded linear program that I am solving using Gurobi with the attribute:
set_attribute(model, "InfUnbdInfo", 1)
set_attribute(model, "DualReductions", 0)
and the model is indeed unbounded. I want to get an extreme ray for this unbounded model ("UnbdRay"
in Gurobi), but in the JuMP manual I could not find how to do that. Any tips regarding how to get an extreme ray of an unbounded LP would be much appreciated. Also is there a solver-independent way of getting an extreme ray (provided the LP is unbounded)?