I would like to use SCIP (or really, any solver, SCIP just seems the most likely candidate for this to work at all) to solve a MIP using a pure cutting plane approach -- no branching. Using just Gomory cuts will probably work fine.
Then, I want to read out the constraints that show up in the final LP relaxation, the one whose optimal solution is integer feasible.
Do the features to do this exist at all in SCIP or any other solver? If so, where in the API should I start digging?
(I am trying to avoid generating the cuts myself as I have heard this can be numerically tricky.)