X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/841943174bb4d3b602e8e055592d8b54d1bb086d..2bad3743bd25bbcfe12db50e2b18ab8d070f2354:/pypol/__init__.py diff --git a/pypol/__init__.py b/pypol/__init__.py index fde0347..166ccf4 100644 --- a/pypol/__init__.py +++ b/pypol/__init__.py @@ -1,15 +1,16 @@ - """ 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 .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 __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', ]