Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion checker/values.ml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,12 @@ let v_resolver =
v_hmap v_kn v_delta_hint|]

let v_subst =
v_annot_c ("substitution", v_map v_mp v_resolver)
fix (fun v_subst ->
v_annot_c
("substitution",
v_sum "substitution_repr" 0
[|[|v_map v_mp v_resolver|];
[|v_subst; v_subst; v_int|]|]))

(** kernel/lazyconstr *)

Expand Down
Loading