Skip to content

Commit

Permalink
little bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixKrayer committed Sep 27, 2024
1 parent 7d47582 commit 655e368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/td_parallel_dist.ml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ module Base : GenericCreatingEqSolver =
else (
HM.replace created_vars y ();
let sd = create_empty_data () in
let sd = {sd with rho = HM.copy start_rho; called = HM.copy start_stable} in
let sd = {sd with rho = HM.copy start_rho; stable = HM.copy start_stable} in
let new_id = Atomic.fetch_and_add job_id_counter 1 in
if tracing then trace "thread_pool" "%d adding job %d to solve for %a(%d)" job_id new_id S.Var.pretty_trace y (S.Var.hash y);
promises := (Thread_pool.add_work pool (fun () -> solve_single false y sd new_id))::!promises
Expand Down

0 comments on commit 655e368

Please sign in to comment.