]> CRI, Mines Paris - PSL - linpy.git/blobdiff - linpy/domains.py
Remove _repr_latex_() methods (current implementation not satisfying)
[linpy.git] / linpy / domains.py
index 1f7a1906d2e5484ed01e6d5a6979ff813781dc84..432e275674622aa076d3a1e1921d20419ce6259f 100644 (file)
@@ -729,12 +729,6 @@ class Domain(GeometricObject):
         strings = [repr(polyhedron) for polyhedron in self.polyhedra]
         return 'Or({})'.format(', '.join(strings))
 
-    def _repr_latex_(self):
-        strings = []
-        for polyhedron in self.polyhedra:
-            strings.append('({})'.format(polyhedron._repr_latex_().strip('$')))
-        return '${}$'.format(' \\vee '.join(strings))
-
     @classmethod
     def fromsympy(cls, expr):
         """