Hello all
I’ve been looking at the code of the new JuMP with MOI, and I would like to understand how to update the things that are going to break in my code. In particular, I have been doing the following things
- Inspect a linear constraint breaking it down using
constr.terms
andconstr.terms
- Interrogating variables in constraints to identify where they come from
constr.terms.vars[1].m
- loading and saving a solution from a JLD file by simply setting or storing the value of
m.colVal
I see that the new JuMP model object has less elements than the previous one. This gives less access to info to develop advanced algorithms that are solver-independent. Could you help me understand how things like the ones I listed are going to be done in the future?.
thanks
Braulio