De Bruijn: makes type A a parameter to the Steps data type (#528)
This commit is contained in:
parent
63ab946579
commit
8863ed75d1
1 changed files with 2 additions and 2 deletions
|
@ -1066,9 +1066,9 @@ Given a term `L` of type `A`, the evaluator will, for some `N`, return
|
|||
a reduction sequence from `L` to `N` and an indication of whether
|
||||
reduction finished:
|
||||
```
|
||||
data Steps : ∀ {A} → ∅ ⊢ A → Set where
|
||||
data Steps {A} : ∅ ⊢ A → Set where
|
||||
|
||||
steps : ∀ {A} {L N : ∅ ⊢ A}
|
||||
steps : {L N : ∅ ⊢ A}
|
||||
→ L —↠ N
|
||||
→ Finished N
|
||||
----------
|
||||
|
|
Loading…
Reference in a new issue