Skip to content

Commit 73b0bbe

Browse files
committed
1 parent ca138c3 commit 73b0bbe

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/principles.ml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1691,8 +1691,7 @@ let build_equations ~pm with_ind env evd ?(alias:alias option) rec_info progs =
16911691
let univs, ubinders = Evd.univ_entry ~poly sigma in
16921692
let uctx = match univs with
16931693
| UState.Monomorphic_entry ctx ->
1694-
let () = Global.push_qualities QGraph.Internal (PConstraints.ContextSet.sort_context_set ctx) in (* XXX *)
1695-
let () = Global.push_context_set (PConstraints.ContextSet.univ_context_set ctx) in
1694+
let () = Global.push_context_set ctx in
16961695
Entries.Monomorphic_ind_entry
16971696
| UState.Polymorphic_entry uctx -> Entries.Polymorphic_ind_entry uctx
16981697
in

src/subterm.ml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ let derive_subterm ~pm env sigma ~poly (ind, u as indu) =
153153
let univs, ubinders = Evd.univ_entry ~poly sigma in
154154
let uctx = match univs with
155155
| UState.Monomorphic_entry ctx ->
156-
let () = Global.push_qualities QGraph.Internal (PConstraints.ContextSet.sort_context_set ctx) in (* XXX *)
157-
let () = Global.push_context_set (PConstraints.ContextSet.univ_context_set ctx) in
156+
let () = Global.push_context_set ctx in
158157
Entries.Monomorphic_ind_entry
159158
| UState.Polymorphic_entry uctx -> Entries.Polymorphic_ind_entry uctx
160159
in

0 commit comments

Comments
 (0)