X-Git-Url: https://scm.cri.minesparis.psl.eu/git/linpy.git/blobdiff_plain/de11b4e658edf3ea876aaea3d3d681eaec13dcc4..7b93cea1daf2889e9ee10ca9c22a1b5124404937:/pypol/__init__.py diff --git a/pypol/__init__.py b/pypol/__init__.py deleted file mode 100644 index e39bce7..0000000 --- a/pypol/__init__.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -A polyhedral library based on ISL. -""" - -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__ = [ - 'Expression', 'Symbol', 'Dummy', 'symbols', 'Rational', - 'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe', - 'Domain', 'And', 'Or', 'Not', -]