Skip to content

Commit

Permalink
Fix import errors for solver in powermixing app
Browse files Browse the repository at this point in the history
Related to #417.
  • Loading branch information
sbellem committed Feb 27, 2020
1 parent 6feaf49 commit b15b7fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/asynchromix/powermixing.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async def phase3(context, **kwargs):


async def async_mixing(n, t, k):
from .solver.solver import solve
from apps.asynchromix.solver.solver import solve
from honeybadgermpc.utils.task_pool import TaskPool

pr1 = TaskProgramRunner(n, t)
Expand Down Expand Up @@ -130,7 +130,7 @@ async def build_powermixing_cpp_code():


async def async_mixing_in_processes(network_info, n, t, k, run_id, node_id):
from .solver.solver import solve
from apps.asynchromix.solver.solver import solve
from honeybadgermpc.ipc import ProcessProgramRunner
from honeybadgermpc.utils.task_pool import TaskPool

Expand Down

0 comments on commit b15b7fd

Please sign in to comment.