New module coordinates.py
[linpy.git] / pypol / __init__.py
index cd278ce..be1440b 100644 (file)
@@ -1,15 +1,16 @@
-
 """
 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, Symbol, Dummy, symbols, Rational
+from .coordinates import Point, Vector
+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', 'Symbol', 'Dummy', 'symbols', 'Rational',
+    'Point', 'Vector',
+    'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
+    'Domain', 'And', 'Or', 'Not',
 ]