I would like to use the LP relaxation of the problem before calling SCIPsolve()
and I would like to know what is the best/simplest way of doing this.
I'm currently creating a SCIP_LPI
that I would like to populate with my original problem's data. I thought that a simple way would be to call SCIPgetLPI()
(and then copy everything), but when I write that problem to file (to see it) I get an empty problem. I guess this is because since I haven't called SCIPsolve()
yet. I even tried calling SCIPpresolve()
first, but the problem is still empty.