Finish defining the algorithm

This commit is contained in:
Yiyun Liu 2025-02-28 00:30:02 -05:00
parent 757f050d92
commit 11bfed2d17
4 changed files with 84 additions and 472 deletions

View file

@ -711,11 +711,11 @@ Qed.
Class Up_PTm X Y :=
up_PTm : X -> Y.
#[global]Instance Subst_PTm : (Subst1 _ _ _) := @subst_PTm.
#[global] Instance Subst_PTm : (Subst1 _ _ _) := @subst_PTm.
#[global]Instance Up_PTm_PTm : (Up_PTm _ _) := @up_PTm_PTm.
#[global] Instance Up_PTm_PTm : (Up_PTm _ _) := @up_PTm_PTm.
#[global]Instance Ren_PTm : (Ren1 _ _ _) := @ren_PTm.
#[global] Instance Ren_PTm : (Ren1 _ _ _) := @ren_PTm.
#[global]
Instance VarInstance_PTm : (Var _ _) := @VarPTm.
@ -833,9 +833,9 @@ Module Extra.
Import Core.
#[global]Hint Opaque subst_PTm: rewrite.
#[global] Hint Opaque subst_PTm: rewrite.
#[global]Hint Opaque ren_PTm: rewrite.
#[global] Hint Opaque ren_PTm: rewrite.
End Extra.