When I look at the tableau generated by Gurobi for a simple 3D problem with five constraints, I get this:

I expected to not have a -1 in basis columns 4, 5, 6 (referring to slack variables 1, 2, 3 if you 0-index). I intend to use this for some intersection cut experiments. I'm obviously going to need to account for the -1 with those. How should I use that information (for intersection cuts)? Should I negate those rows? Should I negate my constraints that go with those slack variables when I use them to represent a slack variable in the cut? Or just the RHS or LHS of those constraints?
VBasismethod and check again what's happened? – A.Omidi Oct 07 '23 at 10:24negating constraints. The original model contains five constraints. The first, forth, and fifth have the form of $\leq$ and the second and third have the form of $\geq$. As you said in the previous commentConvert all constraints to ≥, it is a bit confusing what you actually do with the modified model. Bynegatingdo you mean is the first, forth, and fifth should have the form of $\geq$ and the second and third should have the form of $\leq$? Otherwise, you totally solved a different model. – A.Omidi Oct 09 '23 at 19:34negating constraintsis by converting only the $\leq$ constraints, yes, the results are the same as the original model and the basic variables already are the same as the original one. This is what I can get by the modified model: [x1, x2, x3] are basis. – A.Omidi Oct 09 '23 at 19:41