Please have a look to this sequence
%display latex
A = (
[1, 3, 1],
[-1, 0, 1],
[2, -1, 2],
[2, 3, -1],
)
b = (3, 2, 4, 2)
c = (5, 4, 2)
P = InteractiveLPProblem(A, b,
c,variable_type=(">=",">=",">="))
P <- P is displayed in LaTeX
P=P.standard_form()
D=P.initial_dictionary()
D <- D is displayed in LaTeX
D.is_feasible()
True <- displayed in LaTeX
D.enter("x1")
D <- from now on only LaTeX code
It seem to be a weird comportment since this is by no way difficult to display.
Thanks
Cyrille Piatecki