Skip to content

Commit

Permalink
theorem now elaborates to in-part
Browse files Browse the repository at this point in the history
  • Loading branch information
nskh committed May 22, 2024
1 parent 50ca02d commit 9546f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haz3lcore/dynamics/Elaborator.re
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ let rec dhexp_of_uexp =
| Test(test) =>
let+ dtest = dhexp_of_uexp(m, test);
DHExp.Test(id, dtest);
| Theorem(_, _, _) => Some(DHExp.Tuple([]))
| Theorem(_, _, e) => dhexp_of_uexp(m, e)
| Filter(act, cond, body) =>
let* dcond = dhexp_of_uexp(~in_filter=true, m, cond);
let+ dbody = dhexp_of_uexp(m, body);
Expand Down

0 comments on commit 9546f78

Please sign in to comment.