Finish algo_metric_case

This commit is contained in:
Yiyun Liu 2025-02-14 13:29:44 -05:00
parent 849169be7f
commit 093fc8f9cb
2 changed files with 39 additions and 5 deletions

View file

@ -60,6 +60,7 @@ Fixpoint ishne {n} (a : PTm n) :=
| VarPTm _ => true
| PApp a _ => ishne a
| PProj _ a => ishne a
| PBot => true
| _ => false
end.