Skip to content

Commit

Permalink
CN: missing bits of dtree rendering of cnprogs
Browse files Browse the repository at this point in the history
  • Loading branch information
talsewell committed Oct 30, 2023
1 parent fda464a commit 5fbf167
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/cn/cnprog.ml
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ let dtree_of_cn_statement = function
Dnode (pp_ctor "Extract",
[dtree_of_to_extract to_extract; IT.dtree it])
| M_CN_unfold (s, args) ->
Dnode (pp_ctor "Unfold", List.map IT.dtree args)
Dnode (pp_ctor "Unfold", Dleaf (Sym.pp s) :: List.map IT.dtree args)
| M_CN_apply (s, args) ->
Dnode (pp_ctor "Apply", List.map IT.dtree args)
Dnode (pp_ctor "Apply", Dleaf (Sym.pp s) :: List.map IT.dtree args)
| M_CN_assert lc ->
Dnode (pp_ctor "Assert", [LC.dtree lc])
| M_CN_inline nms ->
Expand Down

0 comments on commit 5fbf167

Please sign in to comment.