Remove useless imports
[linpy.git] / pypol / __init__.py
index fde0347..a6ea752 100644 (file)
@@ -1,15 +1,14 @@
-
 """
 A polyhedral library based on ISL.
 """
 
-from .linear import constant, symbol, symbols
+from .linear import Constant, Symbol, symbols
 from .linear import eq, le, lt, ge, gt
 from .linear import empty, universe
 
 
 __all__ = [
-    'constant', 'symbol', 'symbols',
+    'Constant', 'Symbol', 'symbols',
     'eq', 'le', 'lt', 'ge', 'gt',
     'empty', 'universe'
 ]