X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/de11b4e658edf3ea876aaea3d3d681eaec13dcc4..843dede1d98c459f9761abff5877e0b019fa0155:/pypol/__init__.py diff --git a/pypol/__init__.py b/pypol/__init__.py index e39bce7..166ccf4 100644 --- a/pypol/__init__.py +++ b/pypol/__init__.py @@ -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', ]