X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/9f4798446bbb3ac43f7b8291ddae095af3818299..161d0ced692386a866e55aea673d991e2e95f753:/pypol/__init__.py diff --git a/pypol/__init__.py b/pypol/__init__.py index 89f80fc..c81cb25 100644 --- a/pypol/__init__.py +++ b/pypol/__init__.py @@ -2,13 +2,13 @@ A polyhedral library based on ISL. """ -from .linexprs import Expression, Symbol, symbols, Rational +from .linexprs import Expression, Symbol, symbols, Dummy, Rational from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe from .domains import Domain, And, Or, Not __all__ = [ - 'Expression', 'Symbol', 'symbols', 'Rational', + 'Expression', 'Symbol', 'symbols', 'Dummy', 'Rational', 'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe', 'Domain', 'And', 'Or', 'Not', ]