X-Git-Url: https://svn.cri.ensmp.fr/git/linpy.git/blobdiff_plain/841943174bb4d3b602e8e055592d8b54d1bb086d..49b7b1b00f4cbbf5110ec77e72df004764f2b4bd:/pypol/__init__.py

diff --git a/pypol/__init__.py b/pypol/__init__.py
index fde0347..fc70bea 100644
--- a/pypol/__init__.py
+++ b/pypol/__init__.py
@@ -1,15 +1,14 @@
-
 """
 A polyhedral library based on ISL.
 """
 
-from .linear import 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__ = [
-    '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',
 ]