Unnecessary Fixpoint

This commit is contained in:
Adam Chlipala 2020-03-11 09:40:55 -04:00
parent dd266f2d8c
commit 51a7fae33e
2 changed files with 2 additions and 2 deletions

View file

@ -901,7 +901,7 @@ Compute tempVar 2.
* lack of clashes. We also prove some properties that will come in handy
* later. *)
Fixpoint noUnderscoreVar (x : var) : bool :=
Definition noUnderscoreVar (x : var) : bool :=
match x with
| String "_" _ => false
| _ => true

View file

@ -613,7 +613,7 @@ Compute tempVar 0.
Compute tempVar 1.
Compute tempVar 2.
Fixpoint noUnderscoreVar (x : var) : bool :=
Definition noUnderscoreVar (x : var) : bool :=
match x with
| String "_" _ => false
| _ => true