From 56e65cb91a4e6759404696f43d44bcebad6b0460 Mon Sep 17 00:00:00 2001
From: Vivien Maisonneuve <v.maisonneuve@gmail.com>
Date: Tue, 19 Aug 2014 16:48:52 +0200
Subject: [PATCH 1/1] Change the order of elements in __init__.py

---
 linpy/__init__.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/linpy/__init__.py b/linpy/__init__.py
index 1e32751..2012cb1 100644
--- a/linpy/__init__.py
+++ b/linpy/__init__.py
@@ -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',
 ]
-- 
2.20.1