Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Sep 30, 2021
1 parent ef19b5a commit c40df1a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/doc/en/thematic_tutorials/geometry/tips.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,20 @@ the latex presentation, there is a method for that!

sage: print(TCube.Hrepresentation_str(latex=True))
\begin{array}{rcl}
-6 \, x_{0} - 6 \, x_{1} - 6 \, x_{2} & \geq & -7 \\
-6 \, x_{0} - 6 \, x_{1} + 6 \, x_{2} & \geq & -7 \\
-6 \, x_{0} + 6 \, x_{1} - 6 \, x_{2} & \geq & -7 \\
-6 \, x_{0} + 6 \, x_{1} + 6 \, x_{2} & \geq & -7 \\
-2 \, x_{0} & \geq & -1 \\
-2 \, x_{1} & \geq & -1 \\
-2 \, x_{2} & \geq & -1 \\
6 \, x_{0} + 6 \, x_{1} + 6 \, x_{2} & \geq & -7 \\
2 \, x_{2} & \geq & -1 \\
2 \, x_{1} & \geq & -1 \\
2 \, x_{0} & \geq & -1 \\
6 \, x_{0} - 6 \, x_{1} - 6 \, x_{2} & \geq & -7 \\
6 \, x_{0} - 6 \, x_{1} + 6 \, x_{2} & \geq & -7 \\
6 \, x_{0} + 6 \, x_{1} - 6 \, x_{2} & \geq & -7
-6x_{0} - 6x_{1} - 6x_{2} & \geq & -7 \\
-6x_{0} - 6x_{1} + 6x_{2} & \geq & -7 \\
-6x_{0} + 6x_{1} - 6x_{2} & \geq & -7 \\
-6x_{0} + 6x_{1} + 6x_{2} & \geq & -7 \\
-2x_{0} & \geq & -1 \\
-2x_{1} & \geq & -1 \\
-2x_{2} & \geq & -1 \\
6x_{0} + 6x_{1} + 6x_{2} & \geq & -7 \\
2x_{2} & \geq & -1 \\
2x_{1} & \geq & -1 \\
2x_{0} & \geq & -1 \\
6x_{0} - 6x_{1} - 6x_{2} & \geq & -7 \\
6x_{0} - 6x_{1} + 6x_{2} & \geq & -7 \\
6x_{0} + 6x_{1} - 6x_{2} & \geq & -7
\end{array}

sage: Latex_repr = LatexExpr(TCube.Hrepresentation_str(latex=True))
Expand Down

0 comments on commit c40df1a

Please sign in to comment.