Skip to content

Commit 6514c36

Browse files
authored
Merge pull request #573 from Yann-Leray/stricter-type-in-type
Adapt to rocq-prover/rocq#21531 (stricter Type in Type)
2 parents ce0d073 + 9749e00 commit 6514c36

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

examples/cat/cat.v

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -278,34 +278,34 @@ Unset Universe Checking.
278278
HB.instance Definition _ := Quiver_IsPreConcrete.Build quiver (fun _ _ => id).
279279
HB.instance Definition _ := Quiver_IsPreConcrete.Build precat (fun _ _ => id).
280280
HB.instance Definition _ := Quiver_IsPreConcrete.Build cat (fun _ _ => id).
281+
Set Universe Checking.
281282
Lemma quiver_concrete_subproof : PreConcrete_IsConcrete quiver.
282283
Proof.
283284
constructor=> C D F G FG; apply: prefunctorP.
284285
by move=> x; congr (_ x); apply: FG.
285-
by move=> *; apply: Prop_irrelevance.
286-
Qed.
286+
by move=> *; admit.
287+
Admitted.
287288
HB.instance Definition _ := quiver_concrete_subproof.
288289

289290
Lemma precat_concrete_subproof : PreConcrete_IsConcrete precat.
290291
Proof.
291292
constructor=> C D F G FG; apply: functorP.
292293
by move=> x; congr (_ x); apply: FG.
293-
by move=> *; apply: Prop_irrelevance.
294-
Qed.
294+
by move=> *; admit.
295+
Admitted.
295296
HB.instance Definition _ := precat_concrete_subproof.
296297

297298
Lemma cat_concrete_subproof : PreConcrete_IsConcrete cat.
298299
Proof.
299300
constructor=> C D F G FG; apply: functorP.
300301
by move=> x; congr (_ x); apply: FG.
301-
by move=> *; apply: Prop_irrelevance.
302-
Qed.
302+
by move=> *; admit.
303+
Admitted.
303304
HB.instance Definition _ := cat_concrete_subproof.
304305
HB.instance Definition _ := PreCat_IsConcrete.Build precat
305306
(fun=> erefl) (fun _ _ _ _ _ => erefl).
306307
HB.instance Definition _ := PreCat_IsConcrete.Build cat
307308
(fun=> erefl) (fun _ _ _ _ _ => erefl).
308-
Set Universe Checking.
309309

310310
(* constant functor *)
311311
Definition cst (C D : quiver) (c : C) := fun of D => c.

0 commit comments

Comments
 (0)