]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Add method Domain.isbounded()
[linpy.git] / pypol / __init__.py
index 451d7f18974be7a56a2831378336caa314456d70..fc70bea2d4edc062ec1773ccf3dfb0ab5c0cdc5e 100644 (file)
@@ -2,13 +2,13 @@
 A polyhedral library based on ISL.
 """
 
-from .linear import Polyhedron, Constant, Symbol, symbols
-from .linear import eq, le, lt, ge, gt
-from .linear import Empty, Universe
+from .linexprs import Expression, Constant, Symbol, symbols
+from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe
+from .domains import Domain, And, Or, Not
 
 
 __all__ = [
-    'Polyhedron', 'Constant', 'Symbol', 'symbols',
-    'eq', 'le', 'lt', 'ge', 'gt',
-    'Empty', 'Universe'
+    'Expression', 'Constant', 'Symbol', 'symbols',
+    'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
+    'Domain', 'And', 'Or', 'Not',
 ]