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 initc3#417.
  • Loading branch information
sbellem committed Jan 15, 2020
1 parent 2a6c17f commit 894defe
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 894defe

Please sign in to comment.