]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Derive Point and Vector from Coordinates abstract class
[linpy.git] / pypol / __init__.py
index e39bce7bb3b1e50435a0c223f3ef382bbf7408c8..be1440b86358b08edca673fb5dcb025c06fa385b 100644 (file)
@@ -3,12 +3,14 @@ A polyhedral library based on ISL.
 """
 
 from .linexprs import Expression, Symbol, Dummy, symbols, Rational
 """
 
 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__ = [
     '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
 
 
 __all__ = [
     'Expression', 'Symbol', 'Dummy', 'symbols', 'Rational',
+    'Point', 'Vector',
     'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',
 ]
     'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',
 ]