Skip to content

Commit

Permalink
Import statements were still pointing to Pyomo
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Mar 11, 2021
1 parent 7e8d29d commit 1790792
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pysp/pyro/smanager_pyro.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from pyomo.opt.parallel.manager import ActionManagerError, ActionStatus
from pyomo.opt.parallel.async_solver import (AsynchronousSolverManager,
SolverManagerFactory)
from pyomo.opt.parallel.pyro import PyroAsynchronousActionManager
from pysp.pyro.pyro_asynch import PyroAsynchronousActionManager
from pyomo.core.base import Block
import pyomo.core.base.suffix

Expand Down
4 changes: 2 additions & 2 deletions pysp/pyro/tests/test_pms.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
import pyomo.opt
from pyomo.environ import (ConcreteModel, RangeSet, Var,
Objective, Constraint, sum_product)
import pyomo.scripting.pyro_mip_server
import pysp.pyro.pyro_mip_server


currdir = dirname(abspath(__file__))+os.sep

solvers = pyomo.opt.check_available_solvers('glpk')

class TestWorker(pyomo.scripting.pyro_mip_server.PyomoMIPWorker):
class TestWorker(pysp.pyro.pyro_mip_server.PyomoMIPWorker):

def __init__(self):
self._verbose = True
Expand Down

0 comments on commit 1790792

Please # to comment.