Skip to content

Commit

Permalink
Fix duplicate ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Negabinary committed May 2, 2024
1 parent 79c9b6a commit 14e8446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haz3lcore/dynamics/Stepper.re
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ let rec evaluate_pending = (~settings, s: t) => {
let d_loc' =
(
switch (take_step(state_ref, eo.env, eo.d_loc)) {
| Some(d) => d
| Some(d) => d |> DHExp.repair_ids
| None => raise(Exception)
}
)
Expand Down

0 comments on commit 14e8446

Please sign in to comment.