2022-04-23 18:21:30 -04:00
|
|
|
|
module Quox.Syntax.Term.Subst
|
|
|
|
|
|
2023-02-26 05:17:42 -05:00
|
|
|
|
import Quox.No
|
2022-04-23 18:21:30 -04:00
|
|
|
|
import Quox.Syntax.Term.Base
|
2023-04-17 14:56:31 -04:00
|
|
|
|
import Quox.Syntax.Term.Tighten
|
2023-03-26 10:09:47 -04:00
|
|
|
|
import Data.SnocVect
|
2022-04-23 18:21:30 -04:00
|
|
|
|
|
2022-05-02 16:38:37 -04:00
|
|
|
|
%default total
|
|
|
|
|
|
2023-02-20 16:22:23 -05:00
|
|
|
|
namespace CanDSubst
|
|
|
|
|
public export
|
2023-04-01 13:16:43 -04:00
|
|
|
|
interface CanDSubst (0 tm : TermLike) where
|
2023-02-20 16:22:23 -05:00
|
|
|
|
(//) : tm dfrom n -> Lazy (DSubst dfrom dto) -> tm dto n
|
2022-04-23 18:21:30 -04:00
|
|
|
|
|
2023-02-22 01:40:19 -05:00
|
|
|
|
||| does the minimal reasonable work:
|
|
|
|
|
||| - deletes the closure around an atomic constant like `TYPE`
|
|
|
|
|
||| - deletes an identity substitution
|
|
|
|
|
||| - composes (lazily) with an existing top-level dim-closure
|
|
|
|
|
||| - otherwise, wraps in a new closure
|
|
|
|
|
export
|
2023-04-01 13:16:43 -04:00
|
|
|
|
CanDSubst Term where
|
2023-02-22 01:40:19 -05:00
|
|
|
|
s // Shift SZ = s
|
|
|
|
|
TYPE l // _ = TYPE l
|
|
|
|
|
DCloT s ph // th = DCloT s $ ph . th
|
|
|
|
|
s // th = DCloT s th
|
|
|
|
|
|
|
|
|
|
private
|
2023-04-01 13:16:43 -04:00
|
|
|
|
subDArgs : Elim dfrom n -> DSubst dfrom dto -> Elim dto n
|
2023-02-22 01:40:19 -05:00
|
|
|
|
subDArgs (f :% d) th = subDArgs f th :% (d // th)
|
|
|
|
|
subDArgs e th = DCloE e th
|
|
|
|
|
|
|
|
|
|
||| does the minimal reasonable work:
|
|
|
|
|
||| - deletes the closure around a term variable
|
|
|
|
|
||| - deletes an identity substitution
|
|
|
|
|
||| - composes (lazily) with an existing top-level dim-closure
|
|
|
|
|
||| - immediately looks up bound variables in a
|
|
|
|
|
||| top-level sequence of dimension applications
|
|
|
|
|
||| - otherwise, wraps in a new closure
|
|
|
|
|
export
|
2023-04-01 13:16:43 -04:00
|
|
|
|
CanDSubst Elim where
|
2023-02-22 01:40:19 -05:00
|
|
|
|
e // Shift SZ = e
|
|
|
|
|
F x // _ = F x
|
|
|
|
|
B i // _ = B i
|
|
|
|
|
f :% d // th = subDArgs (f :% d) th
|
|
|
|
|
DCloE e ph // th = DCloE e $ ph . th
|
|
|
|
|
e // th = DCloE e th
|
|
|
|
|
|
|
|
|
|
namespace DSubst.ScopeTermN
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(//) : ScopeTermN s dfrom n -> Lazy (DSubst dfrom dto) ->
|
|
|
|
|
ScopeTermN s dto n
|
2023-02-22 01:40:19 -05:00
|
|
|
|
S ns (Y body) // th = S ns $ Y $ body // th
|
|
|
|
|
S ns (N body) // th = S ns $ N $ body // th
|
|
|
|
|
|
|
|
|
|
namespace DSubst.DScopeTermN
|
|
|
|
|
export %inline
|
|
|
|
|
(//) : {s : Nat} ->
|
2023-04-01 13:16:43 -04:00
|
|
|
|
DScopeTermN s dfrom n -> Lazy (DSubst dfrom dto) ->
|
|
|
|
|
DScopeTermN s dto n
|
2023-02-22 01:40:19 -05:00
|
|
|
|
S ns (Y body) // th = S ns $ Y $ body // pushN s th
|
|
|
|
|
S ns (N body) // th = S ns $ N $ body // th
|
2023-01-20 20:34:28 -05:00
|
|
|
|
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
export %inline FromVar (Elim d) where fromVar = B
|
|
|
|
|
export %inline FromVar (Term d) where fromVar = E . fromVar
|
2022-04-23 18:21:30 -04:00
|
|
|
|
|
2023-02-20 16:22:23 -05:00
|
|
|
|
|
2022-04-23 18:21:30 -04:00
|
|
|
|
||| does the minimal reasonable work:
|
2023-01-20 20:34:28 -05:00
|
|
|
|
||| - deletes the closure around a *free* name
|
2022-04-23 18:21:30 -04:00
|
|
|
|
||| - deletes an identity substitution
|
|
|
|
|
||| - composes (lazily) with an existing top-level closure
|
|
|
|
|
||| - immediately looks up a bound variable
|
|
|
|
|
||| - otherwise, wraps in a new closure
|
|
|
|
|
export
|
2023-04-01 13:16:43 -04:00
|
|
|
|
CanSubstSelf (Elim d) where
|
2022-04-23 18:21:30 -04:00
|
|
|
|
F x // _ = F x
|
|
|
|
|
B i // th = th !! i
|
|
|
|
|
CloE e ph // th = assert_total CloE e $ ph . th
|
|
|
|
|
e // th = case force th of
|
|
|
|
|
Shift SZ => e
|
|
|
|
|
th => CloE e th
|
|
|
|
|
|
2023-02-20 16:22:23 -05:00
|
|
|
|
namespace CanTSubst
|
|
|
|
|
public export
|
|
|
|
|
interface CanTSubst (0 tm : TermLike) where
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(//) : tm d from -> Lazy (TSubst d from to) -> tm d to
|
2023-02-20 16:22:23 -05:00
|
|
|
|
|
2022-04-23 18:21:30 -04:00
|
|
|
|
||| does the minimal reasonable work:
|
|
|
|
|
||| - deletes the closure around an atomic constant like `TYPE`
|
|
|
|
|
||| - deletes an identity substitution
|
|
|
|
|
||| - composes (lazily) with an existing top-level closure
|
|
|
|
|
||| - goes inside `E` in case it is a simple variable or something
|
|
|
|
|
||| - otherwise, wraps in a new closure
|
|
|
|
|
export
|
2023-02-20 16:22:23 -05:00
|
|
|
|
CanTSubst Term where
|
2022-04-23 18:21:30 -04:00
|
|
|
|
TYPE l // _ = TYPE l
|
|
|
|
|
E e // th = E $ e // th
|
|
|
|
|
CloT s ph // th = CloT s $ ph . th
|
|
|
|
|
s // th = case force th of
|
|
|
|
|
Shift SZ => s
|
|
|
|
|
th => CloT s th
|
|
|
|
|
|
2023-02-22 01:40:19 -05:00
|
|
|
|
namespace ScopeTermN
|
|
|
|
|
export %inline
|
|
|
|
|
(//) : {s : Nat} ->
|
2023-04-01 13:16:43 -04:00
|
|
|
|
ScopeTermN s d from -> Lazy (TSubst d from to) ->
|
|
|
|
|
ScopeTermN s d to
|
2023-02-22 01:40:19 -05:00
|
|
|
|
S ns (Y body) // th = S ns $ Y $ body // pushN s th
|
|
|
|
|
S ns (N body) // th = S ns $ N $ body // th
|
2022-04-23 18:21:30 -04:00
|
|
|
|
|
2023-02-22 01:40:19 -05:00
|
|
|
|
namespace DScopeTermN
|
|
|
|
|
export %inline
|
|
|
|
|
(//) : {s : Nat} ->
|
2023-04-01 13:16:43 -04:00
|
|
|
|
DScopeTermN s d from -> Lazy (TSubst d from to) ->
|
|
|
|
|
DScopeTermN s d to
|
2023-02-22 01:40:19 -05:00
|
|
|
|
S ns (Y body) // th = S ns $ Y $ body // map (// shift s) th
|
|
|
|
|
S ns (N body) // th = S ns $ N $ body // th
|
2023-01-20 20:34:28 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
export %inline CanShift (Term d) where s // by = s // Shift by
|
|
|
|
|
export %inline CanShift (Elim d) where e // by = e // Shift by
|
2023-01-22 21:22:50 -05:00
|
|
|
|
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
{s : Nat} -> CanShift (ScopeTermN s d) where
|
2023-02-20 16:22:23 -05:00
|
|
|
|
b // by = b // Shift by
|
2022-04-23 18:21:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
comp : DSubst dfrom dto -> TSubst dfrom from mid -> TSubst dto mid to ->
|
|
|
|
|
TSubst dto from to
|
2023-02-20 16:22:23 -05:00
|
|
|
|
comp th ps ph = map (// th) ps . ph
|
2022-04-23 18:21:30 -04:00
|
|
|
|
|
|
|
|
|
|
2023-02-10 15:40:44 -05:00
|
|
|
|
public export %inline
|
2023-04-15 09:13:01 -04:00
|
|
|
|
dweakT : (by : Nat) -> Term d n -> Term (by + d) n
|
|
|
|
|
dweakT by t = t // shift by
|
2023-02-10 15:40:44 -05:00
|
|
|
|
|
|
|
|
|
public export %inline
|
2023-04-15 09:13:01 -04:00
|
|
|
|
dweakE : (by : Nat) -> Elim d n -> Elim (by + d) n
|
|
|
|
|
dweakE by t = t // shift by
|
2023-02-10 15:40:44 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public export %inline
|
2023-04-15 09:13:01 -04:00
|
|
|
|
weakT : (by : Nat) -> Term d n -> Term d (by + n)
|
|
|
|
|
weakT by t = t // shift by
|
2023-02-10 15:40:44 -05:00
|
|
|
|
|
|
|
|
|
public export %inline
|
2023-04-15 09:13:01 -04:00
|
|
|
|
weakE : (by : Nat) -> Elim d n -> Elim d (by + n)
|
|
|
|
|
weakE by t = t // shift by
|
2023-02-10 15:40:44 -05:00
|
|
|
|
|
|
|
|
|
|
2023-02-22 01:40:19 -05:00
|
|
|
|
parameters {s : Nat}
|
|
|
|
|
namespace ScopeTermBody
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(.term) : ScopedBody s (Term d) n -> Term d (s + n)
|
2023-02-22 01:40:19 -05:00
|
|
|
|
(Y b).term = b
|
2023-04-15 09:13:01 -04:00
|
|
|
|
(N b).term = weakT s b
|
2022-04-23 18:21:30 -04:00
|
|
|
|
|
2023-02-22 01:40:19 -05:00
|
|
|
|
namespace ScopeTermN
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(.term) : ScopeTermN s d n -> Term d (s + n)
|
2023-02-22 01:40:19 -05:00
|
|
|
|
t.term = t.body.term
|
|
|
|
|
|
|
|
|
|
namespace DScopeTermBody
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(.term) : ScopedBody s (\d => Term d n) d -> Term (s + d) n
|
2023-02-22 01:40:19 -05:00
|
|
|
|
(Y b).term = b
|
2023-04-15 09:13:01 -04:00
|
|
|
|
(N b).term = dweakT s b
|
2023-02-22 01:40:19 -05:00
|
|
|
|
|
|
|
|
|
namespace DScopeTermN
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(.term) : DScopeTermN s d n -> Term (s + d) n
|
2023-02-22 01:40:19 -05:00
|
|
|
|
t.term = t.body.term
|
2023-01-20 20:34:28 -05:00
|
|
|
|
|
2023-01-26 13:54:46 -05:00
|
|
|
|
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
subN : ScopeTermN s d n -> SnocVect s (Elim d n) -> Term d n
|
2023-03-26 10:09:47 -04:00
|
|
|
|
subN (S _ (Y body)) es = body // fromSnocVect es
|
2023-02-22 01:40:19 -05:00
|
|
|
|
subN (S _ (N body)) _ = body
|
2023-01-26 13:54:46 -05:00
|
|
|
|
|
2023-01-20 20:34:28 -05:00
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
sub1 : ScopeTerm d n -> Elim d n -> Term d n
|
2023-03-26 10:09:47 -04:00
|
|
|
|
sub1 t e = subN t [< e]
|
2023-01-26 13:54:46 -05:00
|
|
|
|
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
dsubN : DScopeTermN s d n -> SnocVect s (Dim d) -> Term d n
|
2023-03-26 10:09:47 -04:00
|
|
|
|
dsubN (S _ (Y body)) ps = body // fromSnocVect ps
|
2023-02-22 01:40:19 -05:00
|
|
|
|
dsubN (S _ (N body)) _ = body
|
2023-01-20 20:34:28 -05:00
|
|
|
|
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
dsub1 : DScopeTerm d n -> Dim d -> Term d n
|
2023-03-26 10:09:47 -04:00
|
|
|
|
dsub1 t p = dsubN t [< p]
|
2023-01-26 13:54:46 -05:00
|
|
|
|
|
2023-01-20 20:34:28 -05:00
|
|
|
|
|
|
|
|
|
public export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(.zero) : DScopeTerm d n -> Term d n
|
2023-01-20 20:34:28 -05:00
|
|
|
|
body.zero = dsub1 body $ K Zero
|
|
|
|
|
|
|
|
|
|
public export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(.one) : DScopeTerm d n -> Term d n
|
2023-01-20 20:34:28 -05:00
|
|
|
|
body.one = dsub1 body $ K One
|
2023-02-26 05:17:42 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public export
|
|
|
|
|
0 CloTest : TermLike -> Type
|
2023-04-01 13:16:43 -04:00
|
|
|
|
CloTest tm = forall d, n. tm d n -> Bool
|
2023-02-26 05:17:42 -05:00
|
|
|
|
|
|
|
|
|
interface PushSubsts (0 tm : TermLike) (0 isClo : CloTest tm) | tm where
|
2023-04-01 13:16:43 -04:00
|
|
|
|
pushSubstsWith : DSubst dfrom dto -> TSubst dto from to ->
|
|
|
|
|
tm dfrom from -> Subset (tm dto to) (No . isClo)
|
2023-02-26 05:17:42 -05:00
|
|
|
|
|
|
|
|
|
public export
|
2023-04-01 13:16:43 -04:00
|
|
|
|
0 NotClo : {isClo : CloTest tm} -> PushSubsts tm isClo => Pred (tm d n)
|
2023-02-26 05:17:42 -05:00
|
|
|
|
NotClo = No . isClo
|
|
|
|
|
|
|
|
|
|
public export
|
|
|
|
|
0 NonClo : (tm : TermLike) -> {isClo : CloTest tm} ->
|
|
|
|
|
PushSubsts tm isClo => TermLike
|
2023-04-01 13:16:43 -04:00
|
|
|
|
NonClo tm d n = Subset (tm d n) NotClo
|
2023-02-26 05:17:42 -05:00
|
|
|
|
|
|
|
|
|
public export %inline
|
|
|
|
|
nclo : {isClo : CloTest tm} -> (0 _ : PushSubsts tm isClo) =>
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(t : tm d n) -> (0 nc : NotClo t) => NonClo tm d n
|
2023-02-26 05:17:42 -05:00
|
|
|
|
nclo t = Element t nc
|
|
|
|
|
|
|
|
|
|
parameters {0 isClo : CloTest tm} {auto _ : PushSubsts tm isClo}
|
|
|
|
|
||| if the input term has any top-level closures, push them under one layer of
|
|
|
|
|
||| syntax
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
pushSubsts : tm d n -> NonClo tm d n
|
2023-02-26 05:17:42 -05:00
|
|
|
|
pushSubsts s = pushSubstsWith id id s
|
|
|
|
|
|
|
|
|
|
export %inline
|
2023-04-01 13:16:43 -04:00
|
|
|
|
pushSubstsWith' : DSubst dfrom dto -> TSubst dto from to ->
|
|
|
|
|
tm dfrom from -> tm dto to
|
2023-02-26 05:17:42 -05:00
|
|
|
|
pushSubstsWith' th ph x = fst $ pushSubstsWith th ph x
|
|
|
|
|
|
|
|
|
|
mutual
|
|
|
|
|
public export
|
|
|
|
|
isCloT : CloTest Term
|
|
|
|
|
isCloT (CloT {}) = True
|
|
|
|
|
isCloT (DCloT {}) = True
|
|
|
|
|
isCloT (E e) = isCloE e
|
|
|
|
|
isCloT _ = False
|
|
|
|
|
|
|
|
|
|
public export
|
|
|
|
|
isCloE : CloTest Elim
|
|
|
|
|
isCloE (CloE {}) = True
|
|
|
|
|
isCloE (DCloE {}) = True
|
|
|
|
|
isCloE _ = False
|
|
|
|
|
|
|
|
|
|
mutual
|
|
|
|
|
export
|
|
|
|
|
PushSubsts Term Subst.isCloT where
|
|
|
|
|
pushSubstsWith th ph (TYPE l) =
|
|
|
|
|
nclo $ TYPE l
|
|
|
|
|
pushSubstsWith th ph (Pi qty a body) =
|
|
|
|
|
nclo $ Pi qty (a // th // ph) (body // th // ph)
|
|
|
|
|
pushSubstsWith th ph (Lam body) =
|
|
|
|
|
nclo $ Lam (body // th // ph)
|
|
|
|
|
pushSubstsWith th ph (Sig a b) =
|
|
|
|
|
nclo $ Sig (a // th // ph) (b // th // ph)
|
|
|
|
|
pushSubstsWith th ph (Pair s t) =
|
|
|
|
|
nclo $ Pair (s // th // ph) (t // th // ph)
|
|
|
|
|
pushSubstsWith th ph (Enum tags) =
|
|
|
|
|
nclo $ Enum tags
|
|
|
|
|
pushSubstsWith th ph (Tag tag) =
|
|
|
|
|
nclo $ Tag tag
|
|
|
|
|
pushSubstsWith th ph (Eq ty l r) =
|
|
|
|
|
nclo $ Eq (ty // th // ph) (l // th // ph) (r // th // ph)
|
|
|
|
|
pushSubstsWith th ph (DLam body) =
|
|
|
|
|
nclo $ DLam (body // th // ph)
|
2023-03-26 08:40:54 -04:00
|
|
|
|
pushSubstsWith _ _ Nat = nclo Nat
|
|
|
|
|
pushSubstsWith _ _ Zero = nclo Zero
|
|
|
|
|
pushSubstsWith th ph (Succ n) = nclo $ Succ $ n // th // ph
|
2023-03-31 13:11:35 -04:00
|
|
|
|
pushSubstsWith th ph (BOX pi ty) = nclo $ BOX pi $ ty // th // ph
|
|
|
|
|
pushSubstsWith th ph (Box val) = nclo $ Box $ val // th // ph
|
2023-02-26 05:17:42 -05:00
|
|
|
|
pushSubstsWith th ph (E e) =
|
|
|
|
|
let Element e nc = pushSubstsWith th ph e in nclo $ E e
|
|
|
|
|
pushSubstsWith th ph (CloT s ps) =
|
|
|
|
|
pushSubstsWith th (comp th ps ph) s
|
|
|
|
|
pushSubstsWith th ph (DCloT s ps) =
|
|
|
|
|
pushSubstsWith (ps . th) ph s
|
|
|
|
|
|
|
|
|
|
export
|
|
|
|
|
PushSubsts Elim Subst.isCloE where
|
|
|
|
|
pushSubstsWith th ph (F x) =
|
|
|
|
|
nclo $ F x
|
|
|
|
|
pushSubstsWith th ph (B i) =
|
|
|
|
|
let res = ph !! i in
|
|
|
|
|
case nchoose $ isCloE res of
|
|
|
|
|
Left yes => assert_total pushSubsts res
|
|
|
|
|
Right no => Element res no
|
|
|
|
|
pushSubstsWith th ph (f :@ s) =
|
|
|
|
|
nclo $ (f // th // ph) :@ (s // th // ph)
|
|
|
|
|
pushSubstsWith th ph (CasePair pi p r b) =
|
|
|
|
|
nclo $ CasePair pi (p // th // ph) (r // th // ph) (b // th // ph)
|
|
|
|
|
pushSubstsWith th ph (CaseEnum pi t r arms) =
|
|
|
|
|
nclo $ CaseEnum pi (t // th // ph) (r // th // ph)
|
|
|
|
|
(map (\b => b // th // ph) arms)
|
2023-03-26 08:40:54 -04:00
|
|
|
|
pushSubstsWith th ph (CaseNat pi pi' n r z s) =
|
|
|
|
|
nclo $ CaseNat pi pi' (n // th // ph) (r // th // ph)
|
|
|
|
|
(z // th // ph) (s // th // ph)
|
2023-03-31 13:11:35 -04:00
|
|
|
|
pushSubstsWith th ph (CaseBox pi x r b) =
|
|
|
|
|
nclo $ CaseBox pi (x // th // ph) (r // th // ph) (b // th // ph)
|
2023-02-26 05:17:42 -05:00
|
|
|
|
pushSubstsWith th ph (f :% d) =
|
|
|
|
|
nclo $ (f // th // ph) :% (d // th)
|
|
|
|
|
pushSubstsWith th ph (s :# a) =
|
|
|
|
|
nclo $ (s // th // ph) :# (a // th // ph)
|
2023-04-15 09:13:01 -04:00
|
|
|
|
pushSubstsWith th ph (Coe ty p q val) =
|
|
|
|
|
nclo $ Coe (ty // th // ph) (p // th) (q // th) (val // th // ph)
|
|
|
|
|
pushSubstsWith th ph (Comp ty p q val r zero one) =
|
|
|
|
|
nclo $ Comp (ty // th // ph) (p // th) (q // th)
|
|
|
|
|
(val // th // ph) (r // th)
|
|
|
|
|
(zero // th // ph) (one // th // ph)
|
|
|
|
|
pushSubstsWith th ph (TypeCase ty ret arms def) =
|
|
|
|
|
nclo $ TypeCase (ty // th // ph) (ret // th // ph)
|
|
|
|
|
(map (\t => t // th // ph) arms) (def // th // ph)
|
2023-02-26 05:17:42 -05:00
|
|
|
|
pushSubstsWith th ph (CloE e ps) =
|
|
|
|
|
pushSubstsWith th (comp th ps ph) e
|
|
|
|
|
pushSubstsWith th ph (DCloE e ps) =
|
|
|
|
|
pushSubstsWith (ps . th) ph e
|
2023-04-15 09:13:01 -04:00
|
|
|
|
|
|
|
|
|
|
2023-04-17 14:56:31 -04:00
|
|
|
|
private %inline
|
|
|
|
|
CompHY : (ty : DScopeTerm d n) -> (p, q : Dim d) -> (val : Term d n) ->
|
|
|
|
|
(r : Dim d) -> (zero, one : DScopeTerm d n) -> Elim d n
|
|
|
|
|
CompHY {ty, p, q, val, r, zero, one} =
|
|
|
|
|
let ty' = SY ty.names $ ty.term // (B VZ ::: shift 2) in
|
|
|
|
|
Comp {
|
|
|
|
|
ty = dsub1 ty q, p, q,
|
|
|
|
|
val = E $ Coe ty p q val, r,
|
|
|
|
|
zero = SY zero.names $ E $ Coe ty' (B VZ) (weakD 1 q) zero.term,
|
|
|
|
|
one = SY one.names $ E $ Coe ty' (B VZ) (weakD 1 q) one.term
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public export %inline
|
|
|
|
|
CompH' : (ty : DScopeTerm d n) ->
|
|
|
|
|
(p, q : Dim d) -> (val : Term d n) -> (r : Dim d) ->
|
|
|
|
|
(zero : DScopeTerm d n) ->
|
|
|
|
|
(one : DScopeTerm d n) ->
|
|
|
|
|
Elim d n
|
|
|
|
|
CompH' {ty, p, q, val, r, zero, one} =
|
|
|
|
|
case dsqueeze ty of
|
|
|
|
|
S _ (N ty) => Comp {ty, p, q, val, r, zero, one}
|
|
|
|
|
S _ (Y _) => CompHY {ty, p, q, val, r, zero, one}
|
|
|
|
|
|
2023-04-15 09:13:01 -04:00
|
|
|
|
||| heterogeneous composition, using Comp and Coe (and subst)
|
|
|
|
|
|||
|
|
|
|
|
||| comp [i ⇒ A] @p @q s { (r=0) j ⇒ t₀; (r=1) j ⇒ t₁ }
|
|
|
|
|
||| ≔
|
|
|
|
|
||| comp [A‹q/i›] @p @q (coe [i ⇒ A] @p @q s) {
|
|
|
|
|
||| (r=0) j ⇒ coe [i ⇒ A] @j @q t₀;
|
|
|
|
|
||| (r=1) j ⇒ coe [i ⇒ A] @j @q t₁
|
|
|
|
|
||| }
|
|
|
|
|
public export %inline
|
2023-04-17 14:56:31 -04:00
|
|
|
|
CompH : (i : BaseName) -> (ty : Term (S d) n) ->
|
|
|
|
|
(p, q : Dim d) -> (val : Term d n) -> (r : Dim d) ->
|
|
|
|
|
(j0 : BaseName) -> (zero : Term (S d) n) ->
|
|
|
|
|
(j1 : BaseName) -> (one : Term (S d) n) ->
|
|
|
|
|
Elim d n
|
|
|
|
|
CompH {i, ty, p, q, val, r, j0, zero, j1, one} =
|
|
|
|
|
CompH' {ty = SY [< i] ty, p, q, val, r,
|
|
|
|
|
zero = SY [< j0] zero, one = SY [< j0] one}
|