rename isCloX to topCloX
This commit is contained in:
parent
4a2f7e1497
commit
3f11530336
1 changed files with 11 additions and 11 deletions
|
@ -261,27 +261,27 @@ comp' th ps ph = map (/// th) ps . ph
|
||||||
|
|
||||||
||| true if an elimination has a closure or dimension closure at the top level
|
||| true if an elimination has a closure or dimension closure at the top level
|
||||||
public export %inline
|
public export %inline
|
||||||
isCloE : Elim d n -> Bool
|
topCloE : Elim d n -> Bool
|
||||||
isCloE (CloE _ _) = True
|
topCloE (CloE _ _) = True
|
||||||
isCloE (DCloE _ _) = True
|
topCloE (DCloE _ _) = True
|
||||||
isCloE _ = False
|
topCloE _ = False
|
||||||
|
|
||||||
||| true if a term has a closure or dimension closure at the top level,
|
||| true if a term has a closure or dimension closure at the top level,
|
||||||
||| or is `E` applied to such an elimination
|
||| or is `E` applied to such an elimination
|
||||||
public export %inline
|
public export %inline
|
||||||
isCloT : Term d n -> Bool
|
topCloT : Term d n -> Bool
|
||||||
isCloT (CloT _ _) = True
|
topCloT (CloT _ _) = True
|
||||||
isCloT (DCloT _ _) = True
|
topCloT (DCloT _ _) = True
|
||||||
isCloT (E e) = isCloE e
|
topCloT (E e) = topCloE e
|
||||||
isCloT _ = False
|
topCloT _ = False
|
||||||
|
|
||||||
||| an elimination which is not a top level closure
|
||| an elimination which is not a top level closure
|
||||||
public export NotCloElim : Nat -> Nat -> Type
|
public export NotCloElim : Nat -> Nat -> Type
|
||||||
NotCloElim d n = Subset (Elim d n) $ So . not . isCloE
|
NotCloElim d n = Subset (Elim d n) $ So . not . topCloE
|
||||||
|
|
||||||
||| a term which is not a top level closure
|
||| a term which is not a top level closure
|
||||||
public export NotCloTerm : Nat -> Nat -> Type
|
public export NotCloTerm : Nat -> Nat -> Type
|
||||||
NotCloTerm d n = Subset (Term d n) $ So . not . isCloT
|
NotCloTerm d n = Subset (Term d n) $ So . not . topCloT
|
||||||
|
|
||||||
|
|
||||||
mutual
|
mutual
|
||||||
|
|
Loading…
Reference in a new issue