Generalize ProdSpace to BindSpace

This commit is contained in:
Yiyun Liu 2024-12-30 13:12:52 -05:00
parent 2fe0d33592
commit d12de328b6
2 changed files with 17 additions and 17 deletions

View file

@ -1101,6 +1101,7 @@ Qed.
Lemma tm_depth_ind (P : forall n, Tm n -> Prop) :
(forall n (a : Tm n), (forall m (b : Tm m), depth_tm b < depth_tm a -> P m b) -> P n a) -> forall n a, P n a.
Proof.
move => ih.
suff : forall m n (a : Tm n), depth_tm a <= m -> P n a by sfirstorder.
elim.