]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Rename pypol into LinPy
[linpy.git] / pypol / __init__.py
diff --git a/pypol/__init__.py b/pypol/__init__.py
deleted file mode 100644 (file)
index be1440b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-"""
-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',
-]