X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/de11b4e658edf3ea876aaea3d3d681eaec13dcc4..ce31a1de5082c55b5eed1825ae95d827c55a8b92:/pypol/__init__.py diff --git a/pypol/__init__.py b/pypol/__init__.py index e39bce7..be1440b 100644 --- a/pypol/__init__.py +++ b/pypol/__init__.py @@ -3,12 +3,14 @@ A polyhedral library based on ISL. """ 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', + 'Point', 'Vector', 'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe', 'Domain', 'And', 'Or', 'Not', ]