quox/lib/Quox/Typing/Context.idr

266 lines
7.1 KiB
Idris
Raw Normal View History

2023-03-13 16:41:57 -04:00
module Quox.Typing.Context
import Quox.Syntax
import Quox.Context
2023-03-15 10:54:51 -04:00
import Quox.Pretty
import public Data.Singleton
2023-03-13 16:41:57 -04:00
%default total
2023-03-13 16:41:57 -04:00
2023-03-15 10:54:51 -04:00
public export
2023-04-01 13:16:43 -04:00
QContext : Nat -> Type
QContext = Context' Qty
2023-03-15 10:54:51 -04:00
2023-03-13 16:41:57 -04:00
public export
2023-04-01 13:16:43 -04:00
TContext : TermLike
TContext d = Context (Term d)
2023-03-13 16:41:57 -04:00
public export
2023-04-01 13:16:43 -04:00
QOutput : Nat -> Type
QOutput = Context' Qty
2023-03-13 16:41:57 -04:00
public export
DimAssign : Nat -> Type
DimAssign = Context' DimConst
2023-03-13 16:41:57 -04:00
public export
2023-04-01 13:16:43 -04:00
record TyContext d n where
2023-03-13 16:41:57 -04:00
constructor MkTyContext
{auto dimLen : Singleton d}
{auto termLen : Singleton n}
dctx : DimEq d
2023-05-01 21:06:25 -04:00
dnames : BContext d
2023-04-01 13:16:43 -04:00
tctx : TContext d n
2023-05-01 21:06:25 -04:00
tnames : BContext n
2023-04-01 13:16:43 -04:00
qtys : QContext n -- only used for printing
2023-03-13 16:41:57 -04:00
%name TyContext ctx
public export
2023-04-01 13:16:43 -04:00
record EqContext n where
constructor MkEqContext
2023-03-15 10:54:51 -04:00
{dimLen : Nat}
{auto termLen : Singleton n}
2023-03-15 10:54:51 -04:00
dassign : DimAssign dimLen -- only used for printing
2023-05-01 21:06:25 -04:00
dnames : BContext dimLen -- only used for printing
2023-04-01 13:16:43 -04:00
tctx : TContext 0 n
2023-05-01 21:06:25 -04:00
tnames : BContext n
2023-04-01 13:16:43 -04:00
qtys : QContext n -- only used for printing
%name EqContext ctx
2023-04-15 09:13:01 -04:00
public export
record WhnfContext d n where
constructor MkWhnfContext
2023-05-01 21:06:25 -04:00
dnames : BContext d
tnames : BContext n
2023-04-15 09:13:01 -04:00
tctx : TContext d n
%name WhnfContext ctx
namespace TContext
export %inline
2023-04-01 13:16:43 -04:00
pushD : TContext d n -> TContext (S d) n
pushD tel = map (// shift 1) tel
export %inline
2023-04-01 13:16:43 -04:00
zeroFor : Context tm n -> QOutput n
zeroFor ctx = Zero <$ ctx
private
extendLen : Telescope a from to -> Singleton from -> Singleton to
extendLen [<] x = x
extendLen (tel :< _) x = [|S $ extendLen tel x|]
2023-04-03 11:46:23 -04:00
public export
CtxExtension : Nat -> Nat -> Nat -> Type
2023-05-01 21:06:25 -04:00
CtxExtension d = Telescope ((Qty, BindName,) . Term d)
2023-04-03 11:46:23 -04:00
namespace TyContext
public export %inline
2023-04-01 13:16:43 -04:00
empty : TyContext 0 0
2023-03-15 10:54:51 -04:00
empty =
MkTyContext {dctx = new, dnames = [<], tctx = [<], tnames = [<], qtys = [<]}
2023-03-26 10:10:39 -04:00
public export %inline
2023-04-01 13:16:43 -04:00
null : TyContext d n -> Bool
2023-03-26 10:10:39 -04:00
null ctx = null ctx.dnames && null ctx.tnames
export %inline
2023-04-03 11:46:23 -04:00
extendTyN : CtxExtension d from to -> TyContext d from -> TyContext d to
extendTyN xss (MkTyContext {termLen, dctx, dnames, tctx, tnames, qtys}) =
2023-03-15 10:54:51 -04:00
let (qs, xs, ss) = unzip3 xss in
MkTyContext {
dctx, dnames,
termLen = extendLen xss termLen,
tctx = tctx . ss,
tnames = tnames . xs,
qtys = qtys . qs
}
export %inline
2023-05-01 21:06:25 -04:00
extendTy : Qty -> BindName -> Term d n -> TyContext d n -> TyContext d (S n)
2023-03-15 10:54:51 -04:00
extendTy q x s = extendTyN [< (q, x, s)]
export %inline
2023-05-01 21:06:25 -04:00
extendDim : BindName -> TyContext d n -> TyContext (S d) n
extendDim x (MkTyContext {dimLen, dctx, dnames, tctx, tnames, qtys}) =
MkTyContext {
dctx = dctx :<? Nothing,
dnames = dnames :< x,
dimLen = [|S dimLen|],
tctx = pushD tctx,
tnames, qtys
}
export %inline
2023-04-01 13:16:43 -04:00
eqDim : Dim d -> Dim d -> TyContext d n -> TyContext d n
eqDim p q = {dctx $= set p q, dimLen $= id, termLen $= id}
2023-04-15 09:13:01 -04:00
export
toWhnfContext : TyContext d n -> WhnfContext d n
toWhnfContext (MkTyContext {dnames, tnames, tctx, _}) =
MkWhnfContext {dnames, tnames, tctx}
namespace QOutput
2023-04-01 13:16:43 -04:00
export %inline
(+) : QOutput n -> QOutput n -> QOutput n
(+) = zipWith (+)
2023-04-01 13:16:43 -04:00
export %inline
(*) : Qty -> QOutput n -> QOutput n
(*) pi = map (pi *)
2023-04-01 13:16:43 -04:00
export %inline
zeroFor : TyContext _ n -> QOutput n
zeroFor ctx = zeroFor ctx.tctx
export
makeDAssign : DSubst d 0 -> DimAssign d
2023-05-01 21:06:25 -04:00
makeDAssign (Shift SZ) = [<]
makeDAssign (K e _ ::: th) = makeDAssign th :< e
export
2023-04-01 13:16:43 -04:00
makeEqContext' : {d : Nat} -> TyContext d n -> DSubst d 0 -> EqContext n
2023-03-15 10:54:51 -04:00
makeEqContext' ctx th = MkEqContext {
termLen = ctx.termLen,
dassign = makeDAssign th,
dnames = ctx.dnames,
tctx = map (// th) ctx.tctx,
2023-03-15 10:54:51 -04:00
tnames = ctx.tnames,
qtys = ctx.qtys
}
2023-03-15 10:54:51 -04:00
export
2023-04-01 13:16:43 -04:00
makeEqContext : TyContext d n -> DSubst d 0 -> EqContext n
2023-03-15 10:54:51 -04:00
makeEqContext ctx@(MkTyContext {dnames, _}) th =
let (d' ** Refl) = lengthPrf0 dnames in makeEqContext' ctx th
namespace EqContext
public export %inline
2023-04-01 13:16:43 -04:00
empty : EqContext 0
2023-03-15 10:54:51 -04:00
empty = MkEqContext {
dassign = [<], dnames = [<], tctx = [<], tnames = [<], qtys = [<]
}
2023-03-26 10:10:39 -04:00
public export %inline
2023-04-01 13:16:43 -04:00
null : EqContext n -> Bool
2023-03-26 10:10:39 -04:00
null ctx = null ctx.dnames && null ctx.tnames
export %inline
2023-05-01 21:06:25 -04:00
extendTyN : CtxExtension 0 from to -> EqContext from -> EqContext to
extendTyN xss (MkEqContext {termLen, dassign, dnames, tctx, tnames, qtys}) =
let (qs, xs, ss) = unzip3 xss in
MkEqContext {
termLen = extendLen xss termLen,
tctx = tctx . ss,
tnames = tnames . xs,
qtys = qtys . qs,
dassign, dnames
}
export %inline
2023-05-01 21:06:25 -04:00
extendTy : Qty -> BindName -> Term 0 n -> EqContext n -> EqContext (S n)
2023-03-15 10:54:51 -04:00
extendTy q x s = extendTyN [< (q, x, s)]
export %inline
2023-05-01 21:06:25 -04:00
extendDim : BindName -> DimConst -> EqContext n -> EqContext n
extendDim x e (MkEqContext {dassign, dnames, tctx, tnames, qtys}) =
MkEqContext {dassign = dassign :< e, dnames = dnames :< x,
tctx, tnames, qtys}
export
2023-04-01 13:16:43 -04:00
toTyContext : (e : EqContext n) -> TyContext e.dimLen n
2023-03-15 10:54:51 -04:00
toTyContext (MkEqContext {dimLen, dassign, dnames, tctx, tnames, qtys}) =
MkTyContext {
dctx = fromGround dassign,
tctx = map (// shift0 dimLen) tctx,
dnames, tnames, qtys
}
2023-04-15 09:13:01 -04:00
export
toWhnfContext : (ectx : EqContext n) -> WhnfContext 0 n
toWhnfContext (MkEqContext {tnames, tctx, _}) =
MkWhnfContext {dnames = [<], tnames, tctx}
namespace WhnfContext
public export %inline
empty : WhnfContext 0 0
empty = MkWhnfContext [<] [<] [<]
export
2023-05-01 21:06:25 -04:00
extendDimN : {s : Nat} -> BContext s -> WhnfContext d n ->
2023-04-15 09:13:01 -04:00
WhnfContext (s + d) n
extendDimN ns (MkWhnfContext {dnames, tnames, tctx}) =
MkWhnfContext {
dnames = dnames ++ toSnocVect' ns,
tctx = dweakT s <$> tctx,
tnames
}
export
2023-05-01 21:06:25 -04:00
extendDim : BindName -> WhnfContext d n -> WhnfContext (S d) n
2023-04-15 09:13:01 -04:00
extendDim i = extendDimN [< i]
2023-03-15 10:54:51 -04:00
private
2023-05-14 13:58:46 -04:00
prettyTContextElt : {opts : _} ->
BContext d -> BContext n ->
Qty -> BindName -> Term d n -> Eff Pretty (Doc opts)
prettyTContextElt dnames tnames q x s =
pure $ hsep [hcat [!(prettyQty q), !dotD, !(prettyTBind x)], !colonD,
!(withPrec Outer $ prettyTerm dnames tnames s)]
private
prettyTContext' : {opts : _} ->
BContext d -> QContext n -> BContext n ->
TContext d n -> Eff Pretty (SnocList (Doc opts))
prettyTContext' _ [<] [<] [<] = pure [<]
prettyTContext' dnames (qtys :< q) (tnames :< x) (tys :< t) =
[|prettyTContext' dnames qtys tnames tys :<
prettyTContextElt dnames tnames q x t|]
export
prettyTContext : {opts : _} ->
BContext d -> QContext n -> BContext n ->
TContext d n -> Eff Pretty (Doc opts)
prettyTContext dnames qtys tnames tys =
separateTight !commaD <$> prettyTContext' dnames qtys tnames tys
export
prettyTyContext : {opts : _} -> TyContext d n -> Eff Pretty (Doc opts)
prettyTyContext (MkTyContext dctx dnames tctx tnames qtys) =
case dctx of
C [<] => prettyTContext dnames qtys tnames tctx
_ => pure $
sep [!(prettyDimEq dnames dctx) <++> !pipeD,
!(prettyTContext dnames qtys tnames tctx)]
export
prettyEqContext : {opts : _} -> EqContext n -> Eff Pretty (Doc opts)
prettyEqContext ctx = prettyTyContext $ toTyContext ctx