Skip to content

Commit

Permalink
Switched import order to remove bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrey-hokanson committed Jul 26, 2019
1 parent 1db9689 commit 9711a76
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions psdr/__init__.py
Expand Up @@ -11,9 +11,6 @@
from .poly import *
from .opg import *

# Optimization
from .minimax import *
from .gn import *

#from lipschitz import scalar_lipschitz, multivariate_lipschitz, check_lipschitz
#from opt.shared import LinProgException, InfeasibleConstraints
Expand All @@ -22,3 +19,7 @@
from .geometry import voronoi_vertex, fill_distance_estimate

from .sample import *

# Optimization
from .minimax import *
from .gn import *

0 comments on commit 9711a76

Please sign in to comment.