]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Private methods to sort points in a polygon, untested
[linpy.git] / pypol / __init__.py
index 7a195ca6194bb58fb936d5ce7be1bd97373243e7..be1440b86358b08edca673fb5dcb025c06fa385b 100644 (file)
@@ -2,13 +2,15 @@
 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',
 ]