]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Coding style in _toisl()
[linpy.git] / pypol / __init__.py
index cd278ce9c5d18a3626d590e534a58aebc71d20d8..7a195ca6194bb58fb936d5ce7be1bd97373243e7 100644 (file)
@@ -1,15 +1,14 @@
-
 """
 A polyhedral library based on ISL.
 """
 
 from .linear import 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',
     'eq', 'le', 'lt', 'ge', 'gt',
-    'empty', 'universe'
+    'Empty', 'Universe'
 ]