Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-c committed Jan 15, 2025
1 parent 4ff5064 commit 7a234c4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def compute_graph_max_cut(memory_graph: MemoryGraph,
it = 0

@timeout_decorator.timeout(300)
def solver_wrapper(_estimate, _iter_limit):
return max_cut_astar.solve(estimate=_estimate, iter_limit=_iter_limit)
def solver_wrapper(*args, **kwargs):
return max_cut_astar.solve(*args, **kwargs)

while it < n_iter:
estimate = (u_bound + l_bound) / 2
Expand Down

0 comments on commit 7a234c4

Please sign in to comment.