We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90562d8 commit 4ccc472Copy full SHA for 4ccc472
src/run.ml
@@ -1246,8 +1246,9 @@ let declare_mind env sigma params sigs mut_constrs =
1246
let univs, ubinders = Evd.univ_entry ~poly:false sigma in
1247
let uctx = match univs with
1248
| UState.Monomorphic_entry ctx ->
1249
- let () = Global.push_context_set QGraph.Internal ctx in
1250
- Entries.Monomorphic_ind_entry
+ let () = Global.push_qualities QGraph.Internal (PConstraints.ContextSet.sort_context_set ctx) in (* XXX *)
+ let () = Global.push_context_set (PConstraints.ContextSet.univ_context_set ctx) in
1251
+ Entries.Monomorphic_ind_entry
1252
| UState.Polymorphic_entry uctx -> Entries.Polymorphic_ind_entry uctx
1253
in
1254
let _ = DeclareInd.declare_mutual_inductive_with_eliminations
0 commit comments