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 7, 2020
1 parent 7335331 commit bafbb0f
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 @@ -95,7 +95,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 @@ -129,7 +129,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 bafbb0f

Please sign in to comment.