]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Cleaner implementation of Rational
[linpy.git] / pypol / __init__.py
index e39bce7bb3b1e50435a0c223f3ef382bbf7408c8..166ccf461665532226ab05bb5fb44a8056b023f8 100644 (file)
@@ -2,6 +2,7 @@
 A polyhedral library based on ISL.
 """
 
+from .geometry import Point, Vector
 from .linexprs import Expression, Symbol, Dummy, symbols, Rational
 from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe
 from .domains import Domain, And, Or, Not
@@ -9,6 +10,7 @@ from .domains import Domain, And, Or, Not
 
 __all__ = [
     'Expression', 'Symbol', 'Dummy', 'symbols', 'Rational',
+    'Point', 'Vector',
     'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',
 ]