├── .gitignore ├── README.md ├── _config.yml ├── avatar0-transparent.png ├── img └── Poll2017.png └── lectures ├── GrammarOfProof.pdf ├── IID1 ├── Bibliography.bib ├── Lecture[IID1].pdf └── Lecture[IID1].tex ├── ZFC ├── Bibliography.bib ├── Exercises[ZFC-FOM].lagda ├── Exercises[ZFC-FOM].pdf ├── Lecture[ZFC-FOM].pdf └── Lecture[ZFC-FOM].tex ├── cbpv └── Hutton.hs ├── classical-proofs-as-programs.agda ├── cubical └── Exercises │ ├── Abs.agda │ ├── Functor.agda │ ├── Int.agda │ ├── JandComp.agda │ ├── Main.agda-lib │ ├── Monoid.agda │ ├── README.md │ └── Stream.agda ├── cwfs-ex ├── ScwfExtri.agda ├── Ucwf.agda ├── UcwfExpSub.agda └── UcwfImpSub.agda ├── demystifying-nbe └── combinatory-system-t.agda ├── dynamic-logic ├── AbstractObjectCreation.pdf └── TypesClubDL.pdf ├── hauptsatz └── 20210408-hauptsatz.pdf ├── henkin-kripke-STLC ├── Henkin │ ├── Completeness.agda │ ├── Lemmas.agda │ ├── LogicalPredicate.agda │ ├── Model.agda │ ├── Semantics.agda │ └── Soundness.agda ├── IPL.agda ├── Kripke │ ├── Kripke.agda │ ├── Lemmas.agda │ ├── Model.agda │ ├── Semantics.agda │ └── Soundness.agda ├── Library.agda ├── PreHenkin │ └── Structure.agda ├── STLC.agda ├── Standard │ ├── Lemmas.agda │ ├── Model.agda │ ├── Semantics.agda │ └── Soundness.agda └── Terms.agda ├── ipl ├── Makefile └── nbe-ipl.md ├── lam-pi-omega.md ├── logical-relation ├── lr.md └── src │ ├── CBN-GoedelsT.agda │ ├── GoedelsT-SKK.agda │ └── Main.agda-lib ├── meaning-explanations └── MeaningExplanations-220203.pdf ├── monoidal-preorders.agda ├── parametricity └── src │ ├── Main.agda-lib │ ├── PredicativeF.agda │ └── PredicativeFExplSub.agda ├── partiality-recursion ├── Code.agda └── slides.pdf ├── proof-by-reflection.agda ├── reduction ├── Nat.agda ├── exercises │ ├── ChurchRosser.agda │ └── NewmansLemma.agda └── solutions │ ├── NewmansLemma-let.agda │ ├── NewmansLemma-opt.agda │ └── NewmansLemma.agda ├── sandro-categores-functors-etc.md ├── some-remarks-about-impredicativity.pdf ├── stlc-ccc ├── .gitignore ├── notes │ ├── Makefile │ ├── aamacros.sty │ ├── bibliography.bib │ ├── ccc.pdf │ ├── ccc.tex │ ├── stlccc.pdf │ └── stlccc.tex ├── slides │ └── lecture1 │ │ ├── Makefile │ │ ├── bcprules.sty │ │ ├── img │ │ ├── cc_by_bw.pdf │ │ ├── chalmers-logo.pdf │ │ └── gu-logo.pdf │ │ ├── slides.pdf │ │ └── slides.tex ├── src │ ├── CC.agda │ ├── CCC.agda │ ├── CCC │ │ ├── Examples.agda │ │ ├── Examples │ │ │ ├── Internal.agda │ │ │ ├── Pre.agda │ │ │ ├── Relation.agda │ │ │ ├── Setoid.agda │ │ │ └── Unit.agda │ │ └── Sound.agda │ ├── CCC2.agda │ ├── CCCInternalLanguage.agda │ ├── Exercises │ │ ├── ABCIsomorphicABC.agda │ │ ├── AToTheOneIsomorphicA.agda │ │ ├── Awodey │ │ │ └── Chap06 │ │ │ │ └── Ex14.agda │ │ └── TheOneTimesAIsomorphicA.agda │ ├── ML.agda │ ├── ML1.agda │ ├── Main.agda-lib │ ├── README.md │ ├── STLCWithExplicitSubstitutions.agda │ ├── STLCWithExplicitSubstitutionsWithExplicitWeakening.agda │ └── Types.agda └── tex-utils │ ├── Makefile.pdfTeX │ └── texdeps.sh ├── stlc-typechecker ├── Main.agda ├── README.md ├── Term.agda ├── Term │ ├── Eval.agda │ ├── Lex.agda │ ├── Parse.agda │ ├── Show.agda │ └── UntypedEval.agda ├── Type.agda ├── TypeCheck.agda ├── big.lam ├── factorial.lam ├── twice.lam └── types-lecture.agda-lib ├── subtyping └── 20201210-Subtyping.pdf └── verified-compilation-cfg ├── MasterThesis.pdf └── MasterThesisPresentationHandoutITC.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/_config.yml -------------------------------------------------------------------------------- /avatar0-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/avatar0-transparent.png -------------------------------------------------------------------------------- /img/Poll2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/img/Poll2017.png -------------------------------------------------------------------------------- /lectures/GrammarOfProof.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/GrammarOfProof.pdf -------------------------------------------------------------------------------- /lectures/IID1/Bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/IID1/Bibliography.bib -------------------------------------------------------------------------------- /lectures/IID1/Lecture[IID1].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/IID1/Lecture[IID1].pdf -------------------------------------------------------------------------------- /lectures/IID1/Lecture[IID1].tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/IID1/Lecture[IID1].tex -------------------------------------------------------------------------------- /lectures/ZFC/Bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/ZFC/Bibliography.bib -------------------------------------------------------------------------------- /lectures/ZFC/Exercises[ZFC-FOM].lagda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/ZFC/Exercises[ZFC-FOM].lagda -------------------------------------------------------------------------------- /lectures/ZFC/Exercises[ZFC-FOM].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/ZFC/Exercises[ZFC-FOM].pdf -------------------------------------------------------------------------------- /lectures/ZFC/Lecture[ZFC-FOM].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/ZFC/Lecture[ZFC-FOM].pdf -------------------------------------------------------------------------------- /lectures/ZFC/Lecture[ZFC-FOM].tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/ZFC/Lecture[ZFC-FOM].tex -------------------------------------------------------------------------------- /lectures/cbpv/Hutton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cbpv/Hutton.hs -------------------------------------------------------------------------------- /lectures/classical-proofs-as-programs.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/classical-proofs-as-programs.agda -------------------------------------------------------------------------------- /lectures/cubical/Exercises/Abs.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cubical/Exercises/Abs.agda -------------------------------------------------------------------------------- /lectures/cubical/Exercises/Functor.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cubical/Exercises/Functor.agda -------------------------------------------------------------------------------- /lectures/cubical/Exercises/Int.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cubical/Exercises/Int.agda -------------------------------------------------------------------------------- /lectures/cubical/Exercises/JandComp.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cubical/Exercises/JandComp.agda -------------------------------------------------------------------------------- /lectures/cubical/Exercises/Main.agda-lib: -------------------------------------------------------------------------------- 1 | name: Main 2 | include: . 3 | depend: cubical, standard-library 4 | -------------------------------------------------------------------------------- /lectures/cubical/Exercises/Monoid.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cubical/Exercises/Monoid.agda -------------------------------------------------------------------------------- /lectures/cubical/Exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cubical/Exercises/README.md -------------------------------------------------------------------------------- /lectures/cubical/Exercises/Stream.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cubical/Exercises/Stream.agda -------------------------------------------------------------------------------- /lectures/cwfs-ex/ScwfExtri.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cwfs-ex/ScwfExtri.agda -------------------------------------------------------------------------------- /lectures/cwfs-ex/Ucwf.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cwfs-ex/Ucwf.agda -------------------------------------------------------------------------------- /lectures/cwfs-ex/UcwfExpSub.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cwfs-ex/UcwfExpSub.agda -------------------------------------------------------------------------------- /lectures/cwfs-ex/UcwfImpSub.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/cwfs-ex/UcwfImpSub.agda -------------------------------------------------------------------------------- /lectures/demystifying-nbe/combinatory-system-t.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/demystifying-nbe/combinatory-system-t.agda -------------------------------------------------------------------------------- /lectures/dynamic-logic/AbstractObjectCreation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/dynamic-logic/AbstractObjectCreation.pdf -------------------------------------------------------------------------------- /lectures/dynamic-logic/TypesClubDL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/dynamic-logic/TypesClubDL.pdf -------------------------------------------------------------------------------- /lectures/hauptsatz/20210408-hauptsatz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/hauptsatz/20210408-hauptsatz.pdf -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Henkin/Completeness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Henkin/Completeness.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Henkin/Lemmas.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Henkin/Lemmas.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Henkin/LogicalPredicate.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Henkin/LogicalPredicate.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Henkin/Model.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Henkin/Model.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Henkin/Semantics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Henkin/Semantics.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Henkin/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Henkin/Soundness.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/IPL.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/IPL.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Kripke/Kripke.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Kripke/Kripke.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Kripke/Lemmas.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Kripke/Lemmas.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Kripke/Model.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Kripke/Model.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Kripke/Semantics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Kripke/Semantics.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Kripke/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Kripke/Soundness.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Library.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Library.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/PreHenkin/Structure.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/PreHenkin/Structure.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/STLC.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/STLC.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Standard/Lemmas.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Standard/Lemmas.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Standard/Model.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Standard/Model.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Standard/Semantics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Standard/Semantics.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Standard/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Standard/Soundness.agda -------------------------------------------------------------------------------- /lectures/henkin-kripke-STLC/Terms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/henkin-kripke-STLC/Terms.agda -------------------------------------------------------------------------------- /lectures/ipl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/ipl/Makefile -------------------------------------------------------------------------------- /lectures/ipl/nbe-ipl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/ipl/nbe-ipl.md -------------------------------------------------------------------------------- /lectures/lam-pi-omega.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/lam-pi-omega.md -------------------------------------------------------------------------------- /lectures/logical-relation/lr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/logical-relation/lr.md -------------------------------------------------------------------------------- /lectures/logical-relation/src/CBN-GoedelsT.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/logical-relation/src/CBN-GoedelsT.agda -------------------------------------------------------------------------------- /lectures/logical-relation/src/GoedelsT-SKK.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/logical-relation/src/GoedelsT-SKK.agda -------------------------------------------------------------------------------- /lectures/logical-relation/src/Main.agda-lib: -------------------------------------------------------------------------------- 1 | include : . 2 | depend : standard-library -------------------------------------------------------------------------------- /lectures/meaning-explanations/MeaningExplanations-220203.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/meaning-explanations/MeaningExplanations-220203.pdf -------------------------------------------------------------------------------- /lectures/monoidal-preorders.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/monoidal-preorders.agda -------------------------------------------------------------------------------- /lectures/parametricity/src/Main.agda-lib: -------------------------------------------------------------------------------- 1 | include: . 2 | depend: standard-library 3 | -------------------------------------------------------------------------------- /lectures/parametricity/src/PredicativeF.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/parametricity/src/PredicativeF.agda -------------------------------------------------------------------------------- /lectures/parametricity/src/PredicativeFExplSub.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/parametricity/src/PredicativeFExplSub.agda -------------------------------------------------------------------------------- /lectures/partiality-recursion/Code.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/partiality-recursion/Code.agda -------------------------------------------------------------------------------- /lectures/partiality-recursion/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/partiality-recursion/slides.pdf -------------------------------------------------------------------------------- /lectures/proof-by-reflection.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/proof-by-reflection.agda -------------------------------------------------------------------------------- /lectures/reduction/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/reduction/Nat.agda -------------------------------------------------------------------------------- /lectures/reduction/exercises/ChurchRosser.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/reduction/exercises/ChurchRosser.agda -------------------------------------------------------------------------------- /lectures/reduction/exercises/NewmansLemma.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/reduction/exercises/NewmansLemma.agda -------------------------------------------------------------------------------- /lectures/reduction/solutions/NewmansLemma-let.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/reduction/solutions/NewmansLemma-let.agda -------------------------------------------------------------------------------- /lectures/reduction/solutions/NewmansLemma-opt.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/reduction/solutions/NewmansLemma-opt.agda -------------------------------------------------------------------------------- /lectures/reduction/solutions/NewmansLemma.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/reduction/solutions/NewmansLemma.agda -------------------------------------------------------------------------------- /lectures/sandro-categores-functors-etc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/sandro-categores-functors-etc.md -------------------------------------------------------------------------------- /lectures/some-remarks-about-impredicativity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/some-remarks-about-impredicativity.pdf -------------------------------------------------------------------------------- /lectures/stlc-ccc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/.gitignore -------------------------------------------------------------------------------- /lectures/stlc-ccc/notes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/notes/Makefile -------------------------------------------------------------------------------- /lectures/stlc-ccc/notes/aamacros.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/notes/aamacros.sty -------------------------------------------------------------------------------- /lectures/stlc-ccc/notes/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/notes/bibliography.bib -------------------------------------------------------------------------------- /lectures/stlc-ccc/notes/ccc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/notes/ccc.pdf -------------------------------------------------------------------------------- /lectures/stlc-ccc/notes/ccc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/notes/ccc.tex -------------------------------------------------------------------------------- /lectures/stlc-ccc/notes/stlccc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/notes/stlccc.pdf -------------------------------------------------------------------------------- /lectures/stlc-ccc/notes/stlccc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/notes/stlccc.tex -------------------------------------------------------------------------------- /lectures/stlc-ccc/slides/lecture1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/slides/lecture1/Makefile -------------------------------------------------------------------------------- /lectures/stlc-ccc/slides/lecture1/bcprules.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/slides/lecture1/bcprules.sty -------------------------------------------------------------------------------- /lectures/stlc-ccc/slides/lecture1/img/cc_by_bw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/slides/lecture1/img/cc_by_bw.pdf -------------------------------------------------------------------------------- /lectures/stlc-ccc/slides/lecture1/img/chalmers-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/slides/lecture1/img/chalmers-logo.pdf -------------------------------------------------------------------------------- /lectures/stlc-ccc/slides/lecture1/img/gu-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/slides/lecture1/img/gu-logo.pdf -------------------------------------------------------------------------------- /lectures/stlc-ccc/slides/lecture1/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/slides/lecture1/slides.pdf -------------------------------------------------------------------------------- /lectures/stlc-ccc/slides/lecture1/slides.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/slides/lecture1/slides.tex -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CC.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CC.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC/Examples.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC/Examples.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC/Examples/Internal.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC/Examples/Internal.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC/Examples/Pre.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC/Examples/Pre.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC/Examples/Relation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC/Examples/Relation.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC/Examples/Setoid.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC/Examples/Setoid.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC/Examples/Unit.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC/Examples/Unit.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC/Sound.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC/Sound.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCC2.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCC2.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/CCCInternalLanguage.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/CCCInternalLanguage.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/Exercises/ABCIsomorphicABC.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/Exercises/ABCIsomorphicABC.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/Exercises/AToTheOneIsomorphicA.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/Exercises/AToTheOneIsomorphicA.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/Exercises/Awodey/Chap06/Ex14.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/Exercises/Awodey/Chap06/Ex14.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/Exercises/TheOneTimesAIsomorphicA.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/Exercises/TheOneTimesAIsomorphicA.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/ML.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/ML.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/ML1.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/ML1.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/Main.agda-lib: -------------------------------------------------------------------------------- 1 | depend: standard-library 2 | include: . 3 | -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/README.md -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/STLCWithExplicitSubstitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/STLCWithExplicitSubstitutions.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/STLCWithExplicitSubstitutionsWithExplicitWeakening.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/STLCWithExplicitSubstitutionsWithExplicitWeakening.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/src/Types.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/src/Types.agda -------------------------------------------------------------------------------- /lectures/stlc-ccc/tex-utils/Makefile.pdfTeX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/tex-utils/Makefile.pdfTeX -------------------------------------------------------------------------------- /lectures/stlc-ccc/tex-utils/texdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-ccc/tex-utils/texdeps.sh -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Main.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Main.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/README.md -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Term.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Term.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Term/Eval.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Term/Eval.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Term/Lex.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Term/Lex.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Term/Parse.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Term/Parse.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Term/Show.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Term/Show.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Term/UntypedEval.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Term/UntypedEval.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/Type.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/Type.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/TypeCheck.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/TypeCheck.agda -------------------------------------------------------------------------------- /lectures/stlc-typechecker/big.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/big.lam -------------------------------------------------------------------------------- /lectures/stlc-typechecker/factorial.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/factorial.lam -------------------------------------------------------------------------------- /lectures/stlc-typechecker/twice.lam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/twice.lam -------------------------------------------------------------------------------- /lectures/stlc-typechecker/types-lecture.agda-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/stlc-typechecker/types-lecture.agda-lib -------------------------------------------------------------------------------- /lectures/subtyping/20201210-Subtyping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/subtyping/20201210-Subtyping.pdf -------------------------------------------------------------------------------- /lectures/verified-compilation-cfg/MasterThesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/verified-compilation-cfg/MasterThesis.pdf -------------------------------------------------------------------------------- /lectures/verified-compilation-cfg/MasterThesisPresentationHandoutITC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InitialTypes/Club/HEAD/lectures/verified-compilation-cfg/MasterThesisPresentationHandoutITC.pdf --------------------------------------------------------------------------------