2023-02-11 12:15:50 -05:00
|
|
|
|
module Tests.Typechecker
|
|
|
|
|
|
|
|
|
|
import Quox.Syntax
|
|
|
|
|
import Quox.Typechecker as Lib
|
|
|
|
|
import public TypingImpls
|
|
|
|
|
import TAP
|
2023-03-31 17:43:25 -04:00
|
|
|
|
import Quox.EffExtra
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
|
|
|
|
|
2023-02-13 16:06:53 -05:00
|
|
|
|
data Error'
|
2023-04-01 13:16:43 -04:00
|
|
|
|
= TCError Typing.Error
|
|
|
|
|
| WrongInfer (Term d n) (Term d n)
|
|
|
|
|
| WrongQOut (QOutput n) (QOutput n)
|
2023-02-13 16:06:53 -05:00
|
|
|
|
|
|
|
|
|
export
|
|
|
|
|
ToInfo Error' where
|
|
|
|
|
toInfo (TCError e) = toInfo e
|
|
|
|
|
toInfo (WrongInfer good bad) =
|
|
|
|
|
[("type", "WrongInfer"),
|
|
|
|
|
("wanted", prettyStr True good),
|
|
|
|
|
("got", prettyStr True bad)]
|
|
|
|
|
toInfo (WrongQOut good bad) =
|
|
|
|
|
[("type", "WrongQOut"),
|
|
|
|
|
("wanted", prettyStr True good),
|
|
|
|
|
("wanted", prettyStr True bad)]
|
|
|
|
|
|
2023-02-11 12:15:50 -05:00
|
|
|
|
0 M : Type -> Type
|
2023-04-01 13:16:43 -04:00
|
|
|
|
M = Eff [Except Error', DefsReader]
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
inj : TC a -> M a
|
2023-03-31 17:43:25 -04:00
|
|
|
|
inj = rethrow . mapFst TCError <=< lift . runExcept
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
reflTy : Term d n
|
2023-02-11 12:15:50 -05:00
|
|
|
|
reflTy =
|
2023-04-01 13:16:43 -04:00
|
|
|
|
Pi_ Zero "A" (TYPE 0) $
|
|
|
|
|
Pi_ One "x" (BVT 0) $
|
2023-02-11 12:15:50 -05:00
|
|
|
|
Eq0 (BVT 1) (BVT 0) (BVT 0)
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
reflDef : Term d n
|
2023-03-16 13:18:49 -04:00
|
|
|
|
reflDef = [< "A","x"] :\\ [< "i"] :\\% BVT 0
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
2023-02-23 04:04:16 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
fstTy : Term d n
|
2023-02-23 04:04:16 -05:00
|
|
|
|
fstTy =
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ Zero "A" (TYPE 1) $
|
|
|
|
|
Pi_ Zero "B" (Arr Any (BVT 0) (TYPE 1)) $
|
|
|
|
|
Arr Any (Sig_ "x" (BVT 1) $ E $ BV 1 :@ BVT 0) (BVT 1))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
fstDef : Term d n
|
2023-02-23 04:04:16 -05:00
|
|
|
|
fstDef =
|
2023-03-16 13:18:49 -04:00
|
|
|
|
([< "A","B","p"] :\\
|
|
|
|
|
E (CasePair Any (BV 0) (SN $ BVT 2) (SY [< "x","y"] $ BVT 1)))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
sndTy : Term d n
|
2023-02-23 04:04:16 -05:00
|
|
|
|
sndTy =
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ Zero "A" (TYPE 1) $
|
|
|
|
|
Pi_ Zero "B" (Arr Any (BVT 0) (TYPE 1)) $
|
|
|
|
|
Pi_ Any "p" (Sig_ "x" (BVT 1) $ E $ BV 1 :@ BVT 0) $
|
2023-02-23 04:04:16 -05:00
|
|
|
|
E (BV 1 :@ E (F "fst" :@@ [BVT 2, BVT 1, BVT 0])))
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
sndDef : Term d n
|
2023-02-23 04:04:16 -05:00
|
|
|
|
sndDef =
|
2023-03-16 13:18:49 -04:00
|
|
|
|
([< "A","B","p"] :\\
|
2023-02-23 04:04:16 -05:00
|
|
|
|
E (CasePair Any (BV 0)
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "p"] $ E $ BV 2 :@ E (F "fst" :@@ [BVT 3, BVT 2, BVT 0]))
|
|
|
|
|
(SY [< "x","y"] $ BVT 0)))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
defGlobals : Definitions
|
2023-02-11 12:15:50 -05:00
|
|
|
|
defGlobals = fromList
|
2023-04-01 13:16:43 -04:00
|
|
|
|
[("A", mkPostulate gzero $ TYPE 0),
|
|
|
|
|
("B", mkPostulate gzero $ TYPE 0),
|
|
|
|
|
("C", mkPostulate gzero $ TYPE 1),
|
|
|
|
|
("D", mkPostulate gzero $ TYPE 1),
|
|
|
|
|
("P", mkPostulate gzero $ Arr Any (FT "A") (TYPE 0)),
|
|
|
|
|
("a", mkPostulate gany $ FT "A"),
|
|
|
|
|
("a'", mkPostulate gany $ FT "A"),
|
|
|
|
|
("b", mkPostulate gany $ FT "B"),
|
|
|
|
|
("f", mkPostulate gany $ Arr One (FT "A") (FT "A")),
|
|
|
|
|
("g", mkPostulate gany $ Arr One (FT "A") (FT "B")),
|
|
|
|
|
("f2", mkPostulate gany $ Arr One (FT "A") $ Arr One (FT "A") (FT "B")),
|
|
|
|
|
("p", mkPostulate gany $ Pi_ One "x" (FT "A") $ E $ F "P" :@ BVT 0),
|
|
|
|
|
("q", mkPostulate gany $ Pi_ One "x" (FT "A") $ E $ F "P" :@ BVT 0),
|
|
|
|
|
("refl", mkDef gany reflTy reflDef),
|
|
|
|
|
("fst", mkDef gany fstTy fstDef),
|
|
|
|
|
("snd", mkDef gany sndTy sndDef)]
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
|
|
|
|
parameters (label : String) (act : Lazy (M ()))
|
2023-04-01 13:16:43 -04:00
|
|
|
|
{default defGlobals globals : Definitions}
|
2023-02-11 12:15:50 -05:00
|
|
|
|
testTC : Test
|
2023-03-31 17:43:25 -04:00
|
|
|
|
testTC = test label {e = Error', a = ()} $
|
|
|
|
|
extract $ runExcept $ runReader globals act
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
|
|
|
|
testTCFail : Test
|
2023-03-31 17:43:25 -04:00
|
|
|
|
testTCFail = testThrows label (const True) $
|
|
|
|
|
(extract $ runExcept $ runReader globals act) $> "()"
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
anys : {n : Nat} -> QContext n
|
2023-03-15 10:54:51 -04:00
|
|
|
|
anys {n = 0} = [<]
|
|
|
|
|
anys {n = S n} = anys :< Any
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
ctx, ctx01 : {n : Nat} -> Context (\n => (BaseName, Term 0 n)) n ->
|
|
|
|
|
TyContext 0 n
|
2023-03-15 10:54:51 -04:00
|
|
|
|
ctx tel = let (ns, ts) = unzip tel in
|
|
|
|
|
MkTyContext new [<] ts ns anys
|
|
|
|
|
ctx01 tel = let (ns, ts) = unzip tel in
|
|
|
|
|
MkTyContext ZeroIsOne [<] ts ns anys
|
2023-03-13 22:22:26 -04:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
empty01 : TyContext 0 0
|
2023-03-25 17:41:30 -04:00
|
|
|
|
empty01 = eqDim (K Zero) (K One) empty
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
inferredTypeEq : TyContext d n -> (exp, got : Term d n) -> M ()
|
2023-02-13 16:06:53 -05:00
|
|
|
|
inferredTypeEq ctx exp got =
|
2023-03-31 17:43:25 -04:00
|
|
|
|
wrapErr (const $ WrongInfer exp got) $ inj $ equalType ctx exp got
|
2023-02-13 16:06:53 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
qoutEq : (exp, got : QOutput n) -> M ()
|
2023-03-31 17:43:25 -04:00
|
|
|
|
qoutEq qout res = unless (qout == res) $ throw $ WrongQOut qout res
|
2023-02-13 16:06:53 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
inferAs : TyContext d n -> (sg : SQty) -> Elim d n -> Term d n -> M ()
|
2023-02-19 11:51:44 -05:00
|
|
|
|
inferAs ctx@(MkTyContext {dctx, _}) sg e ty = do
|
|
|
|
|
case !(inj $ infer ctx sg e) of
|
|
|
|
|
Just res => inferredTypeEq ctx ty res.type
|
|
|
|
|
Nothing => pure ()
|
2023-02-13 16:06:53 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
inferAsQ : TyContext d n -> (sg : SQty) ->
|
|
|
|
|
Elim d n -> Term d n -> QOutput n -> M ()
|
2023-02-19 11:51:44 -05:00
|
|
|
|
inferAsQ ctx@(MkTyContext {dctx, _}) sg e ty qout = do
|
|
|
|
|
case !(inj $ infer ctx sg e) of
|
|
|
|
|
Just res => do
|
|
|
|
|
inferredTypeEq ctx ty res.type
|
|
|
|
|
qoutEq qout res.qout
|
|
|
|
|
Nothing => pure ()
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
infer_ : TyContext d n -> (sg : SQty) -> Elim d n -> M ()
|
2023-02-13 16:06:53 -05:00
|
|
|
|
infer_ ctx sg e = ignore $ inj $ infer ctx sg e
|
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
checkQ : TyContext d n -> SQty ->
|
|
|
|
|
Term d n -> Term d n -> QOutput n -> M ()
|
2023-02-19 11:51:44 -05:00
|
|
|
|
checkQ ctx@(MkTyContext {dctx, _}) sg s ty qout = do
|
|
|
|
|
case !(inj $ check ctx sg s ty) of
|
|
|
|
|
Just res => qoutEq qout res
|
|
|
|
|
Nothing => pure ()
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
check_ : TyContext d n -> SQty -> Term d n -> Term d n -> M ()
|
2023-02-13 16:06:53 -05:00
|
|
|
|
check_ ctx sg s ty = ignore $ inj $ check ctx sg s ty
|
2023-02-11 12:15:50 -05:00
|
|
|
|
|
2023-04-01 13:16:43 -04:00
|
|
|
|
checkType_ : TyContext d n -> Term d n -> Maybe Universe -> M ()
|
2023-03-05 07:14:25 -05:00
|
|
|
|
checkType_ ctx s u = inj $ checkType ctx s u
|
|
|
|
|
|
2023-02-23 04:04:16 -05:00
|
|
|
|
|
2023-02-11 12:15:50 -05:00
|
|
|
|
export
|
|
|
|
|
tests : Test
|
|
|
|
|
tests = "typechecker" :- [
|
|
|
|
|
"universes" :- [
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTC "0 · ★₀ ⇐ ★₁ # by checkType" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
checkType_ empty (TYPE 0) (Just 1),
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTC "0 · ★₀ ⇐ ★₁ # by check" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (TYPE 0) (TYPE 1),
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTC "0 · ★₀ ⇐ ★₂" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
checkType_ empty (TYPE 0) (Just 2),
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTC "0 · ★₀ ⇐ ★_" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
checkType_ empty (TYPE 0) Nothing,
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTCFail "0 · ★₁ ⇍ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
checkType_ empty (TYPE 1) (Just 0),
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTCFail "0 · ★₀ ⇍ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
checkType_ empty (TYPE 0) (Just 0),
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTC "0=1 ⊢ 0 · ★₁ ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
checkType_ empty01 (TYPE 1) (Just 0),
|
2023-03-05 07:14:25 -05:00
|
|
|
|
testTCFail "1 · ★₀ ⇍ ★₁ # by check" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone (TYPE 0) (TYPE 1)
|
2023-02-11 12:15:50 -05:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"function types" :- [
|
2023-02-13 16:06:53 -05:00
|
|
|
|
note "A, B : ★₀; C, D : ★₁; P : A ⇾ ★₀",
|
2023-02-12 15:30:08 -05:00
|
|
|
|
testTC "0 · A ⊸ B ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (Arr One (FT "A") (FT "B")) (TYPE 0),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "subtyping",
|
|
|
|
|
testTC "0 · A ⊸ B ⇐ ★₁" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (Arr One (FT "A") (FT "B")) (TYPE 1),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
testTC "0 · C ⊸ D ⇐ ★₁" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (Arr One (FT "C") (FT "D")) (TYPE 1),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
testTCFail "0 · C ⊸ D ⇍ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (Arr One (FT "C") (FT "D")) (TYPE 0),
|
2023-02-13 16:06:53 -05:00
|
|
|
|
testTC "0 · (1·x : A) → P x ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ One "x" (FT "A") $ E $ F "P" :@ BVT 0)
|
2023-02-13 16:06:53 -05:00
|
|
|
|
(TYPE 0),
|
|
|
|
|
testTCFail "0 · A ⊸ P ⇍ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (Arr One (FT "A") $ FT "P") (TYPE 0),
|
2023-02-19 11:51:44 -05:00
|
|
|
|
testTC "0=1 ⊢ 0 · A ⊸ P ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty01 szero (Arr One (FT "A") $ FT "P") (TYPE 0)
|
2023-02-13 16:06:53 -05:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"pair types" :- [
|
|
|
|
|
note #""A × B" for "(_ : A) × B""#,
|
|
|
|
|
testTC "0 · A × A ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (FT "A" `And` FT "A") (TYPE 0),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTCFail "0 · A × P ⇍ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (FT "A" `And` FT "P") (TYPE 0),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "0 · (x : A) × P x ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Sig_ "x" (FT "A") $ E $ F "P" :@ BVT 0) (TYPE 0),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "0 · (x : A) × P x ⇐ ★₁" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Sig_ "x" (FT "A") $ E $ F "P" :@ BVT 0) (TYPE 1),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "0 · (A : ★₀) × A ⇐ ★₁" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (Sig_ "A" (TYPE 0) $ BVT 0) (TYPE 1),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTCFail "0 · (A : ★₀) × A ⇍ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (Sig_ "A" (TYPE 0) $ BVT 0) (TYPE 0),
|
2023-02-13 16:06:53 -05:00
|
|
|
|
testTCFail "1 · A × A ⇍ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone (FT "A" `And` FT "A") (TYPE 0)
|
2023-02-11 12:15:50 -05:00
|
|
|
|
],
|
|
|
|
|
|
2023-02-23 04:04:16 -05:00
|
|
|
|
"enum types" :- [
|
2023-03-13 22:22:26 -04:00
|
|
|
|
testTC "0 · {} ⇐ ★₀" $ check_ empty szero (enum []) (TYPE 0),
|
|
|
|
|
testTC "0 · {} ⇐ ★₃" $ check_ empty szero (enum []) (TYPE 3),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "0 · {a,b,c} ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (enum ["a", "b", "c"]) (TYPE 0),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "0 · {a,b,c} ⇐ ★₃" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (enum ["a", "b", "c"]) (TYPE 3),
|
|
|
|
|
testTCFail "1 · {} ⇍ ★₀" $ check_ empty sone (enum []) (TYPE 0),
|
|
|
|
|
testTC "0=1 ⊢ 1 · {} ⇐ ★₀" $ check_ empty01 sone (enum []) (TYPE 0)
|
2023-02-23 04:04:16 -05:00
|
|
|
|
],
|
|
|
|
|
|
2023-02-11 12:15:50 -05:00
|
|
|
|
"free vars" :- [
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "A : ★₀",
|
2023-02-11 12:15:50 -05:00
|
|
|
|
testTC "0 · A ⇒ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAs empty szero (F "A") (TYPE 0),
|
2023-02-13 16:06:53 -05:00
|
|
|
|
testTC "0 · [A] ⇐ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (FT "A") (TYPE 0),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "subtyping",
|
2023-02-13 16:06:53 -05:00
|
|
|
|
testTC "0 · [A] ⇐ ★₁" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero (FT "A") (TYPE 1),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "(fail) runtime-relevant type",
|
|
|
|
|
testTCFail "1 · A ⇏ ★₀" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
infer_ empty sone (F "A"),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
note "refl : (0·A : ★₀) → (1·x : A) → (x ≡ x : A) ≔ (λ A x ⇒ δ _ ⇒ x)",
|
2023-03-13 22:22:26 -04:00
|
|
|
|
testTC "1 · refl ⇒ ⋯" $ inferAs empty sone (F "refl") reflTy,
|
|
|
|
|
testTC "1 · [refl] ⇐ ⋯" $ check_ empty sone (FT "refl") reflTy
|
2023-02-13 16:06:53 -05:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"bound vars" :- [
|
2023-02-14 15:14:47 -05:00
|
|
|
|
testTC "x : A ⊢ 1 · x ⇒ A ⊳ 1·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAsQ {n = 1} (ctx [< ("x", FT "A")]) sone
|
2023-04-01 13:16:43 -04:00
|
|
|
|
(BV 0) (FT "A") [< One],
|
2023-02-14 15:14:47 -05:00
|
|
|
|
testTC "x : A ⊢ 1 · [x] ⇐ A ⊳ 1·x" $
|
2023-04-01 13:16:43 -04:00
|
|
|
|
checkQ {n = 1} (ctx [< ("x", FT "A")]) sone (BVT 0) (FT "A") [< One],
|
2023-02-23 04:04:16 -05:00
|
|
|
|
note "f2 : A ⊸ A ⊸ B",
|
|
|
|
|
testTC "x : A ⊢ 1 · f2 [x] [x] ⇒ B ⊳ ω·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAsQ {n = 1} (ctx [< ("x", FT "A")]) sone
|
2023-02-23 04:04:16 -05:00
|
|
|
|
(F "f2" :@@ [BVT 0, BVT 0]) (FT "B") [< Any]
|
2023-02-11 12:15:50 -05:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"lambda" :- [
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "linear & unrestricted identity",
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "1 · (λ x ⇒ x) ⇐ A ⊸ A" $
|
2023-03-16 13:18:49 -04:00
|
|
|
|
check_ empty sone ([< "x"] :\\ BVT 0) (Arr One (FT "A") (FT "A")),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "1 · (λ x ⇒ x) ⇐ A → A" $
|
2023-03-16 13:18:49 -04:00
|
|
|
|
check_ empty sone ([< "x"] :\\ BVT 0) (Arr Any (FT "A") (FT "A")),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "(fail) zero binding used relevantly",
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTCFail "1 · (λ x ⇒ x) ⇍ A ⇾ A" $
|
2023-03-16 13:18:49 -04:00
|
|
|
|
check_ empty sone ([< "x"] :\\ BVT 0) (Arr Zero (FT "A") (FT "A")),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "(but ok in overall erased context)",
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "0 · (λ x ⇒ x) ⇐ A ⇾ A" $
|
2023-03-16 13:18:49 -04:00
|
|
|
|
check_ empty szero ([< "x"] :\\ BVT 0) (Arr Zero (FT "A") (FT "A")),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "1 · (λ A x ⇒ refl A x) ⇐ ⋯ # (type of refl)" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone
|
2023-03-16 13:18:49 -04:00
|
|
|
|
([< "A", "x"] :\\ E (F "refl" :@@ [BVT 1, BVT 0]))
|
2023-02-12 15:30:08 -05:00
|
|
|
|
reflTy,
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "1 · (λ A x ⇒ δ i ⇒ x) ⇐ ⋯ # (def. and type of refl)" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone reflDef reflTy
|
2023-02-11 12:15:50 -05:00
|
|
|
|
],
|
|
|
|
|
|
2023-02-23 04:04:16 -05:00
|
|
|
|
"pairs" :- [
|
|
|
|
|
testTC "1 · (a, a) ⇐ A × A" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone (Pair (FT "a") (FT "a")) (FT "A" `And` FT "A"),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "x : A ⊢ 1 · (x, x) ⇐ A × A ⊳ ω·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
checkQ (ctx [< ("x", FT "A")]) sone
|
2023-02-23 04:04:16 -05:00
|
|
|
|
(Pair (BVT 0) (BVT 0)) (FT "A" `And` FT "A") [< Any],
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "1 · (a, δ i ⇒ a) ⇐ (x : A) × (x ≡ a)" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(Pair (FT "a") ([< "i"] :\\% FT "a"))
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Sig_ "x" (FT "A") $ Eq0 (FT "A") (BVT 0) (FT "a"))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"unpairing" :- [
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "x : A × A ⊢ 1 · (case1 x return B of (l,r) ⇒ f2 l r) ⇒ B ⊳ 1·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAsQ (ctx [< ("x", FT "A" `And` FT "A")]) sone
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(CasePair One (BV 0) (SN $ FT "B")
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "l", "r"] $ E $ F "f2" :@@ [BVT 1, BVT 0]))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
(FT "B") [< One],
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "x : A × A ⊢ 1 · (caseω x return B of (l,r) ⇒ f2 l r) ⇒ B ⊳ ω·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAsQ (ctx [< ("x", FT "A" `And` FT "A")]) sone
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(CasePair Any (BV 0) (SN $ FT "B")
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "l", "r"] $ E $ F "f2" :@@ [BVT 1, BVT 0]))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
(FT "B") [< Any],
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "x : A × A ⊢ 0 · (caseω x return B of (l,r) ⇒ f2 l r) ⇒ B ⊳ 0·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAsQ (ctx [< ("x", FT "A" `And` FT "A")]) szero
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(CasePair Any (BV 0) (SN $ FT "B")
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "l", "r"] $ E $ F "f2" :@@ [BVT 1, BVT 0]))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
(FT "B") [< Zero],
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTCFail "x : A × A ⊢ 1 · (case0 x return B of (l,r) ⇒ f2 l r) ⇏" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
infer_ (ctx [< ("x", FT "A" `And` FT "A")]) sone
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(CasePair Zero (BV 0) (SN $ FT "B")
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "l", "r"] $ E $ F "f2" :@@ [BVT 1, BVT 0])),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "x : A × B ⊢ 1 · (caseω x return A of (l,r) ⇒ l) ⇒ A ⊳ ω·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAsQ (ctx [< ("x", FT "A" `And` FT "B")]) sone
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(CasePair Any (BV 0) (SN $ FT "A")
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "l", "r"] $ BVT 1))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
(FT "A") [< Any],
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "x : A × B ⊢ 0 · (case1 x return A of (l,r) ⇒ l) ⇒ A ⊳ 0·x" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAsQ (ctx [< ("x", FT "A" `And` FT "B")]) szero
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(CasePair One (BV 0) (SN $ FT "A")
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "l", "r"] $ BVT 1))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
(FT "A") [< Zero],
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTCFail "x : A × B ⊢ 1 · (case1 x return A of (l,r) ⇒ l) ⇏" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
infer_ (ctx [< ("x", FT "A" `And` FT "B")]) sone
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(CasePair One (BV 0) (SN $ FT "A")
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(SY [< "l", "r"] $ BVT 1)),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
note "fst : (0·A : ★₁) → (0·B : A ↠ ★₁) → ((x : A) × B x) ↠ A",
|
2023-03-04 15:02:51 -05:00
|
|
|
|
note " ≔ (λ A B p ⇒ caseω p return A of (x, y) ⇒ x)",
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "0 · ‹type of fst› ⇐ ★₂" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero fstTy (TYPE 2),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "1 · ‹def of fst› ⇐ ‹type of fst›" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone fstDef fstTy,
|
2023-02-23 04:04:16 -05:00
|
|
|
|
note "snd : (0·A : ★₁) → (0·B : A ↠ ★₁) → (ω·p : (x : A) × B x) → B (fst A B p)",
|
2023-03-04 15:02:51 -05:00
|
|
|
|
note " ≔ (λ A B p ⇒ caseω p return p ⇒ B (fst A B p) of (x, y) ⇒ y)",
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "0 · ‹type of snd› ⇐ ★₂" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero sndTy (TYPE 2),
|
2023-02-23 04:04:16 -05:00
|
|
|
|
testTC "1 · ‹def of snd› ⇐ ‹type of snd›" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone sndDef sndTy,
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "0 · snd ★₀ (λ x ⇒ x) ⇒ (ω·p : (A : ★₀) × A) → fst ★₀ (λ x ⇒ x) p" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
inferAs empty szero
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(F "snd" :@@ [TYPE 0, [< "x"] :\\ BVT 0])
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ Any "A" (Sig_ "A" (TYPE 0) $ BVT 0) $
|
2023-03-16 13:18:49 -04:00
|
|
|
|
(E $ F "fst" :@@ [TYPE 0, [< "x"] :\\ BVT 0, BVT 0]))
|
2023-02-23 04:04:16 -05:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"enums" :- [
|
2023-03-05 07:17:46 -05:00
|
|
|
|
testTC "1 · 'a ⇐ {a}" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone (Tag "a") (enum ["a"]),
|
2023-03-05 07:17:46 -05:00
|
|
|
|
testTC "1 · 'a ⇐ {a, b, c}" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone (Tag "a") (enum ["a", "b", "c"]),
|
2023-03-05 07:17:46 -05:00
|
|
|
|
testTCFail "1 · 'a ⇍ {b, c}" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone (Tag "a") (enum ["b", "c"]),
|
2023-03-05 07:17:46 -05:00
|
|
|
|
testTC "0=1 ⊢ 1 · 'a ⇐ {b, c}" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty01 sone (Tag "a") (enum ["b", "c"])
|
2023-02-23 04:04:16 -05:00
|
|
|
|
],
|
|
|
|
|
|
2023-03-26 08:40:54 -04:00
|
|
|
|
"enum matching" :- [
|
|
|
|
|
testTC "ω.x : {tt} ⊢ 1 · case1 x return {tt} of { 'tt ⇒ 'tt } ⇒ {tt}" $
|
|
|
|
|
inferAs (ctx [< ("x", enum ["tt"])]) sone
|
|
|
|
|
(CaseEnum One (BV 0) (SN (enum ["tt"])) $
|
|
|
|
|
singleton "tt" (Tag "tt"))
|
|
|
|
|
(enum ["tt"]),
|
|
|
|
|
testTCFail "ω.x : {tt} ⊢ 1 · case1 x return {tt} of { 'ff ⇒ 'tt } ⇏" $
|
|
|
|
|
infer_ (ctx [< ("x", enum ["tt"])]) sone
|
|
|
|
|
(CaseEnum One (BV 0) (SN (enum ["tt"])) $
|
|
|
|
|
singleton "ff" (Tag "tt"))
|
|
|
|
|
],
|
|
|
|
|
|
2023-04-01 10:02:02 -04:00
|
|
|
|
"equality types" :- [
|
2023-04-01 13:16:43 -04:00
|
|
|
|
testTC "0 · ℕ ≡ ℕ : ★₀ ⇐ Type" $
|
|
|
|
|
checkType_ empty (Eq0 (TYPE 0) Nat Nat) Nothing,
|
|
|
|
|
testTC "0 · ℕ ≡ ℕ : ★₀ ⇐ ★₁" $
|
2023-04-01 10:02:02 -04:00
|
|
|
|
check_ empty szero (Eq0 (TYPE 0) Nat Nat) (TYPE 1),
|
2023-04-01 13:16:43 -04:00
|
|
|
|
testTCFail "1 · ℕ ≡ ℕ : ★₀ ⇍ ★₁" $
|
|
|
|
|
check_ empty sone (Eq0 (TYPE 0) Nat Nat) (TYPE 1),
|
|
|
|
|
testTC "0 · ℕ ≡ ℕ : ★₀ ⇐ ★₂" $
|
2023-04-01 10:02:02 -04:00
|
|
|
|
check_ empty szero (Eq0 (TYPE 0) Nat Nat) (TYPE 2),
|
2023-04-01 13:16:43 -04:00
|
|
|
|
testTC "0 · ℕ ≡ ℕ : ★₁ ⇐ ★₂" $
|
2023-04-01 10:02:02 -04:00
|
|
|
|
check_ empty szero (Eq0 (TYPE 1) Nat Nat) (TYPE 2),
|
2023-04-01 13:16:43 -04:00
|
|
|
|
testTCFail "0 · ℕ ≡ ℕ : ★₁ ⇍ ★₁" $
|
2023-04-01 10:02:02 -04:00
|
|
|
|
check_ empty szero (Eq0 (TYPE 1) Nat Nat) (TYPE 1),
|
2023-04-01 13:16:43 -04:00
|
|
|
|
testTCFail "0 ≡ 'beep : {beep} ⇍ Type" $
|
|
|
|
|
checkType_ empty (Eq0 (enum ["beep"]) Zero (Tag "beep")) Nothing,
|
|
|
|
|
testTC "ab : A ≡ B : ★₀, x : A, y : B ⊢ 0 · Eq [i ⇒ ab i] x y ⇐ ★₀" $
|
2023-04-01 10:02:02 -04:00
|
|
|
|
check_ (ctx [< ("ab", Eq0 (TYPE 0) (FT "A") (FT "B")),
|
|
|
|
|
("x", FT "A"), ("y", FT "B")]) szero
|
|
|
|
|
(Eq (SY [< "i"] $ E $ BV 2 :% BV 0) (BVT 1) (BVT 0))
|
|
|
|
|
(TYPE 0),
|
2023-04-01 13:16:43 -04:00
|
|
|
|
testTCFail "ab : A ≡ B : ★₀, x : A, y : B ⊢ Eq [i ⇒ ab i] y x ⇍ Type" $
|
|
|
|
|
checkType_ (ctx [< ("ab", Eq0 (TYPE 0) (FT "A") (FT "B")),
|
|
|
|
|
("x", FT "A"), ("y", FT "B")])
|
2023-04-01 10:02:02 -04:00
|
|
|
|
(Eq (SY [< "i"] $ E $ BV 2 :% BV 0) (BVT 0) (BVT 1))
|
2023-04-01 13:16:43 -04:00
|
|
|
|
Nothing
|
2023-04-01 10:02:02 -04:00
|
|
|
|
],
|
|
|
|
|
|
2023-02-13 16:06:53 -05:00
|
|
|
|
"equalities" :- [
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "1 · (δ i ⇒ a) ⇐ a ≡ a" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone (DLam $ SN $ FT "a")
|
2023-02-13 16:06:53 -05:00
|
|
|
|
(Eq0 (FT "A") (FT "a") (FT "a")),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "0 · (λ p q ⇒ δ i ⇒ p) ⇐ (ω·p q : a ≡ a') → p ≡ q" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero
|
2023-03-16 13:18:49 -04:00
|
|
|
|
([< "p","q"] :\\ [< "i"] :\\% BVT 1)
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ Any "p" (Eq0 (FT "A") (FT "a") (FT "a")) $
|
|
|
|
|
Pi_ Any "q" (Eq0 (FT "A") (FT "a") (FT "a")) $
|
2023-02-13 16:06:53 -05:00
|
|
|
|
Eq0 (Eq0 (FT "A") (FT "a") (FT "a")) (BVT 1) (BVT 0)),
|
2023-03-04 15:02:51 -05:00
|
|
|
|
testTC "0 · (λ p q ⇒ δ i ⇒ q) ⇐ (ω·p q : a ≡ a') → p ≡ q" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty szero
|
2023-03-16 13:18:49 -04:00
|
|
|
|
([< "p","q"] :\\ [< "i"] :\\% BVT 0)
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ Any "p" (Eq0 (FT "A") (FT "a") (FT "a")) $
|
|
|
|
|
Pi_ Any "q" (Eq0 (FT "A") (FT "a") (FT "a")) $
|
2023-02-13 16:06:53 -05:00
|
|
|
|
Eq0 (Eq0 (FT "A") (FT "a") (FT "a")) (BVT 1) (BVT 0))
|
|
|
|
|
],
|
|
|
|
|
|
2023-03-31 13:11:35 -04:00
|
|
|
|
"natural numbers" :- [
|
|
|
|
|
testTC "0 · ℕ ⇐ ★₀" $ check_ empty szero Nat (TYPE 0),
|
|
|
|
|
testTC "0 · ℕ ⇐ ★₇" $ check_ empty szero Nat (TYPE 7),
|
|
|
|
|
testTCFail "1 · ℕ ⇍ ★₀" $ check_ empty sone Nat (TYPE 0),
|
|
|
|
|
testTC "1 · zero ⇐ ℕ" $ check_ empty sone Zero Nat,
|
2023-03-31 17:43:25 -04:00
|
|
|
|
testTCFail "1 · zero ⇍ ℕ×ℕ" $ check_ empty sone Zero (Nat `And` Nat),
|
2023-03-31 13:11:35 -04:00
|
|
|
|
testTC "ω·n : ℕ ⊢ 1 · succ n ⇐ ℕ" $
|
|
|
|
|
check_ (ctx [< ("n", Nat)]) sone (Succ (BVT 0)) Nat,
|
|
|
|
|
testTC "1 · λ n ⇒ succ n ⇐ 1.ℕ → ℕ" $
|
|
|
|
|
check_ empty sone ([< "n"] :\\ Succ (BVT 0)) (Arr One Nat Nat),
|
|
|
|
|
todo "nat elim"
|
|
|
|
|
],
|
|
|
|
|
|
2023-04-01 10:01:53 -04:00
|
|
|
|
"natural elim" :- [
|
|
|
|
|
note "1 · λ n ⇒ case1 n return ℕ of { zero ⇒ 0; succ n ⇒ n }",
|
|
|
|
|
note " ⇐ 1.ℕ → ℕ",
|
|
|
|
|
testTC "pred" $
|
|
|
|
|
check_ empty sone
|
|
|
|
|
([< "n"] :\\ E (CaseNat One Zero (BV 0) (SN Nat)
|
|
|
|
|
Zero (SY [< "n", Unused] $ BVT 1)))
|
|
|
|
|
(Arr One Nat Nat),
|
|
|
|
|
note "1 · λ m n ⇒ case1 m return ℕ of { zero ⇒ n; succ _, 1.p ⇒ succ p }",
|
|
|
|
|
note " ⇐ 1.ℕ → 1.ℕ → 1.ℕ",
|
|
|
|
|
testTC "plus" $
|
|
|
|
|
check_ empty sone
|
|
|
|
|
([< "m", "n"] :\\ E (CaseNat One One (BV 1) (SN Nat)
|
|
|
|
|
(BVT 0) (SY [< Unused, "p"] $ Succ $ BVT 0)))
|
|
|
|
|
(Arr One Nat $ Arr One Nat Nat)
|
|
|
|
|
],
|
|
|
|
|
|
2023-03-31 13:11:35 -04:00
|
|
|
|
"box types" :- [
|
|
|
|
|
testTC "0 · [0.ℕ] ⇐ ★₀" $
|
|
|
|
|
check_ empty szero (BOX Zero Nat) (TYPE 0),
|
|
|
|
|
testTC "0 · [0.★₀] ⇐ ★₁" $
|
|
|
|
|
check_ empty szero (BOX Zero (TYPE 0)) (TYPE 1),
|
|
|
|
|
testTCFail "0 · [0.★₀] ⇍ ★₀" $
|
|
|
|
|
check_ empty szero (BOX Zero (TYPE 0)) (TYPE 0)
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
todo "box values",
|
|
|
|
|
todo "box elim",
|
|
|
|
|
|
2023-02-11 12:15:50 -05:00
|
|
|
|
"misc" :- [
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "0·A : Type, 0·P : A → Type, ω·p : (1·x : A) → P x",
|
|
|
|
|
note "⊢",
|
2023-03-04 15:02:51 -05:00
|
|
|
|
note "1 · λ x y xy ⇒ δ i ⇒ p (xy i)",
|
|
|
|
|
note " ⇐ (0·x y : A) → (1·xy : x ≡ y) → Eq [i ⇒ P (xy i)] (p x) (p y)",
|
2023-02-12 15:30:08 -05:00
|
|
|
|
testTC "cong" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone
|
2023-03-16 13:18:49 -04:00
|
|
|
|
([< "x", "y", "xy"] :\\ [< "i"] :\\% E (F "p" :@ E (BV 0 :% BV 0)))
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ Zero "x" (FT "A") $
|
|
|
|
|
Pi_ Zero "y" (FT "A") $
|
|
|
|
|
Pi_ One "xy" (Eq0 (FT "A") (BVT 1) (BVT 0)) $
|
|
|
|
|
Eq_ "i" (E $ F "P" :@ E (BV 0 :% BV 0))
|
|
|
|
|
(E $ F "p" :@ BVT 2) (E $ F "p" :@ BVT 1)),
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "0·A : Type, 0·P : ω·A → Type,",
|
2023-02-13 16:06:53 -05:00
|
|
|
|
note "ω·p q : (1·x : A) → P x",
|
2023-02-12 15:30:08 -05:00
|
|
|
|
note "⊢",
|
2023-03-04 15:02:51 -05:00
|
|
|
|
note "1 · λ eq ⇒ δ i ⇒ λ x ⇒ eq x i",
|
2023-02-13 16:06:53 -05:00
|
|
|
|
note " ⇐ (1·eq : (1·x : A) → p x ≡ q x) → p ≡ q",
|
2023-02-12 15:30:08 -05:00
|
|
|
|
testTC "funext" $
|
2023-03-13 22:22:26 -04:00
|
|
|
|
check_ empty sone
|
2023-03-16 13:18:49 -04:00
|
|
|
|
([< "eq"] :\\ [< "i"] :\\% [< "x"] :\\ E (BV 1 :@ BVT 0 :% BV 0))
|
2023-02-25 09:24:45 -05:00
|
|
|
|
(Pi_ One "eq"
|
|
|
|
|
(Pi_ One "x" (FT "A")
|
|
|
|
|
(Eq0 (E $ F "P" :@ BVT 0)
|
|
|
|
|
(E $ F "p" :@ BVT 0) (E $ F "q" :@ BVT 0)))
|
2023-03-10 15:52:29 -05:00
|
|
|
|
(Eq0 (Pi_ Any "x" (FT "A") $ E $ F "P" :@ BVT 0) (FT "p") (FT "q"))),
|
|
|
|
|
todo "absurd (when coerce is in)"
|
|
|
|
|
-- absurd : (`true ≡ `false : {true, false}) ⇾ (0·A : ★₀) → A ≔
|
|
|
|
|
-- λ e ⇒
|
|
|
|
|
-- case coerce [i ⇒ case e @i return ★₀ of {`true ⇒ {tt}; `false ⇒ {}}]
|
|
|
|
|
-- @0 @1 `tt
|
|
|
|
|
-- return A
|
|
|
|
|
-- of { }
|
2023-02-11 12:15:50 -05:00
|
|
|
|
]
|
|
|
|
|
]
|