more ScopeTerm stuff
This commit is contained in:
parent
4722e144a3
commit
46b29b8e72
2 changed files with 9 additions and 3 deletions
|
@ -46,12 +46,12 @@ parameters {auto _ : MonadThrow Error m}
|
|||
eq ClashQ qtm1 qtm2
|
||||
eq ClashQ qty1 qty2
|
||||
equalT0 arg1 arg2
|
||||
equalT0 res1 res2
|
||||
equalTS0 res1 res2
|
||||
equalTN' s@(Pi {}) t _ _ = clashT s t
|
||||
|
||||
-- [todo] eta
|
||||
equalTN' (Lam _ body1) (Lam _ body2) _ _ =
|
||||
equalT0 body1 body2
|
||||
equalTS0 body1 body2
|
||||
equalTN' s@(Lam {}) t _ _ = clashT s t
|
||||
|
||||
equalTN' (E e) (E f) ps pt = equalE0 e f
|
||||
|
@ -113,3 +113,9 @@ parameters {auto _ : MonadThrow Error m}
|
|||
export covering %inline
|
||||
equalE0 : Elim 0 n -> Elim 0 n -> m ()
|
||||
equalE0 e f = whnfE e `equalEN` whnfE f
|
||||
|
||||
export covering %inline
|
||||
equalTS0 : ScopeTerm 0 n -> ScopeTerm 0 n -> m ()
|
||||
equalTS0 (TUnused body1) (TUnused body2) = equalT0 body1 body2
|
||||
equalTS0 body1 body2 =
|
||||
fromScopeTerm body1 `equalT0` fromScopeTerm body2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue