From: Vivien Maisonneuve Date: Tue, 19 Aug 2014 14:48:52 +0000 (+0200) Subject: Change the order of elements in __init__.py X-Git-Tag: 1.0~28 X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/commitdiff_plain/56e65cb91a4e6759404696f43d44bcebad6b0460?hp=950e4adf4d155a2880fbfcd61021f775dfddaeac Change the order of elements in __init__.py --- 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', ]