]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Remove useless header in _isl.c
[linpy.git] / pypol / __init__.py
index fde034769453ba0b59a896f1edfe44ec48fd948a..451d7f18974be7a56a2831378336caa314456d70 100644 (file)
@@ -1,15 +1,14 @@
-
 """
 A polyhedral library based on ISL.
 """
 
-from .linear import constant, symbol, symbols
+from .linear import Polyhedron, Constant, Symbol, symbols
 from .linear import eq, le, lt, ge, gt
-from .linear import empty, universe
+from .linear import Empty, Universe
 
 
 __all__ = [
-    'constant', 'symbol', 'symbols',
+    'Polyhedron', 'Constant', 'Symbol', 'symbols',
     'eq', 'le', 'lt', 'ge', 'gt',
-    'empty', 'universe'
+    'Empty', 'Universe'
 ]