]> CRI, Mines Paris - PSL - linpy.git/blobdiff - linpy/__init__.py
Docstrings
[linpy.git] / linpy / __init__.py
index 2fdc73e89df8024d7615ebca18d5b312f8b6bd46..1e32751a5b03c8613a959c60da8b00a42f0e6e48 100644 (file)
@@ -19,7 +19,7 @@
 A polyhedral library based on ISL
 """
 
-from .geometry import Point, Vector
+from .geometry import GeometricObject, Point, Vector
 from .linexprs import LinExpr, Symbol, Dummy, symbols, Rational
 from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe
 from .domains import Domain, And, Or, Not
@@ -27,7 +27,7 @@ from .domains import Domain, And, Or, Not
 
 __all__ = [
     'LinExpr', 'Symbol', 'Dummy', 'symbols', 'Rational',
-    'Point', 'Vector',
+    'GeometricObject', 'Point', 'Vector',
     'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',
 ]