Change the order of elements in __init__.py
[linpy.git] / linpy / __init__.py
index 1e32751..2012cb1 100644 (file)
@@ -20,14 +20,14 @@ A polyhedral library based on ISL
 """
 
 from .geometry import GeometricObject, Point, Vector
-from .linexprs import LinExpr, Symbol, Dummy, symbols, Rational
-from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe
+from .linexprs import LinExpr, Symbol, symbols, Dummy, Rational
+from .polyhedra import Polyhedron, Lt, Le, Eq, Ne, Ge, Gt, Ne, Empty, Universe
 from .domains import Domain, And, Or, Not
 
 
 __all__ = [
-    'LinExpr', 'Symbol', 'Dummy', 'symbols', 'Rational',
+    'LinExpr', 'Symbol', 'symbols', 'Dummy', 'Rational',
     'GeometricObject', 'Point', 'Vector',
-    'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
+    'Polyhedron', 'Lt', 'Le', 'Eq', 'Ne', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',
 ]