fix: PrefixTree WellFormed type
`β` is a parameter.
This commit is contained in:
parent
1450a86c4d
commit
b105c006a5
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ partial def foldMatchingM [Monad m] (t : PrefixTreeNode α β) (cmp : α → α
|
|||
| some t => find ks t d
|
||||
find k t init
|
||||
|
||||
inductive WellFormed (cmp : α → α → Ordering) : PrefixTreeNode α β → Prop where
|
||||
inductive WellFormed {β} (cmp : α → α → Ordering) : PrefixTreeNode α β → Prop where
|
||||
| emptyWff : WellFormed cmp empty
|
||||
| insertWff {t : PrefixTreeNode α β} {k : List α} {val : β} : WellFormed cmp t → WellFormed cmp (insert t cmp k val)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue