X-Git-Url: https://scm.cri.minesparis.psl.eu/git/linpy.git/blobdiff_plain/1d494bb187b70135df721c13306d7f26fdf33f50..7b93cea1daf2889e9ee10ca9c22a1b5124404937:/pypol/__init__.py?ds=sidebyside diff --git a/pypol/__init__.py b/pypol/__init__.py deleted file mode 100644 index fc70bea..0000000 --- a/pypol/__init__.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -A polyhedral library based on ISL. -""" - -from .linexprs import Expression, Constant, Symbol, symbols -from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe -from .domains import Domain, And, Or, Not - - -__all__ = [ - 'Expression', 'Constant', 'Symbol', 'symbols', - 'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe', - 'Domain', 'And', 'Or', 'Not', -]