├── .dir-locals.el ├── .github └── workflows │ └── build-schools.yml ├── .gitignore ├── .gitmodules ├── 2017-12-Birmingham ├── Makefile ├── Part1_Spartan_Type_Theory │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── Spartan_exercises.pdf │ ├── Spartan_exercises.v │ └── Spartan_solutions.v ├── Part2_Fundamentals_Coq │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── coq_exercises.v │ ├── coq_solutions.v │ └── fundamentals_lecture.v ├── Part3_Univalent_Foundations │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── diagrams.sty │ ├── uf.pdf │ └── uf.tex ├── Part4_Tactics_UniMath │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── exercises_tactics.v │ ├── exercises_tactics_with_solutions.v │ ├── lecture_tactics.v │ ├── lecture_tactics_long_version.v │ └── weq_exercises.v ├── Part5_Set_Level_Mathematics │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── set_level_mathematics_exercises.v │ └── set_level_mathematics_solutions.v ├── Part6_Category_Theory │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── category_theory_exercises.v │ └── category_theory_solutions.v ├── Part7_UniMath_future │ ├── 7_UniMath_future.pdf │ ├── 7_UniMath_future.tex │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ └── isofhlevel.png ├── README.md └── dune ├── 2019-04-Birmingham ├── Makefile ├── Part1_Spartan_Type_Theory │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── Spartan-Type-Theory.key │ ├── Spartan-Type-Theory.pdf │ ├── Spartan_exercises.html │ ├── Spartan_exercises.md │ ├── Spartan_exercises.pdf │ ├── Spartan_exercises.v │ └── Spartan_solutions.v ├── Part2_Fundamentals_Coq │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── coq_exercises.v │ ├── coq_solutions.v │ └── fundamentals_lecture.v ├── Part3_Univalent_Foundations │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── diagrams.sty │ ├── truncation_exercices.v │ ├── uf.pdf │ └── uf.tex ├── Part4_Tactics_UniMath │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── exercises_tactics.v │ ├── exercises_tactics_with_solutions.v │ ├── lecture_tactics.v │ ├── lecture_tactics_long_version.v │ ├── weq_exercises.v │ └── weq_exercises_with_solutions.v ├── Part5_Set_Level_Mathematics │ ├── 5_set_level_mathematics_lecture.pdf │ ├── 5_set_level_mathematics_lecture.tex │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── set_level_mathematics_exercises.v │ └── set_level_mathematics_solutions.v ├── Part6_Category_Theory │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ ├── category_theory.v │ ├── category_theory_exercises.v │ ├── category_theory_solutions.v │ └── lecture.pdf ├── Part7_Paradoxes │ ├── GirardsParadox.v │ ├── GirardsParadox_solutions.v │ └── RussellsParadox.v ├── Part8_UniMath_future │ ├── Makefile.coq.input │ ├── Makefile.coq.local │ └── UniMath_past_present_future.pdf ├── README.md ├── Seminar_Talks │ ├── Brandon_Shapiro_Types_as_Weak_omega_Groupoids.pdf │ └── tslil_clingman_Univalence_Axiom_Brief_and_Incomplete_Tour.pdf └── dune ├── 2019-07-Columbus ├── Demo │ ├── Demo.v │ ├── Makefile.coq.input │ └── Makefile.coq.local ├── Makefile └── dune ├── 2022-07-Cortona ├── 1_Type-Theory │ └── Lecture_Type-Theory.pdf ├── 2_Fundamentals-Coq │ ├── Fundamentals_Coq.pdf │ ├── Makefile │ ├── coq_exercises.v │ ├── coq_solutions.v │ └── fundamentals_lecture.v ├── 3_Univalent-foundations.pdf ├── 4_Tactics-UniMath │ ├── coqdoc.css │ ├── exercises_tactics.v │ ├── exercises_tactics_with_solutions.v │ ├── lecture_tactics.html │ ├── lecture_tactics.v │ ├── lecture_tactics_long_version.html │ ├── lecture_tactics_long_version.v │ ├── weq_exercises.v │ └── weq_exercises_with_solutions.v ├── 5_Set-level-mathematics │ ├── 5_set_level_mathematics_lecture.pdf │ ├── set_level_mathematics_exercises.v │ └── set_level_mathematics_solutions.v ├── 6_Category_Theory │ ├── category_theory.v │ ├── category_theory_exercises.v │ ├── category_theory_solutions.v │ └── lecture.pdf ├── 7_Synthetic-Homotopy-Theory │ └── Synthetic_Homotopy_Theory.v └── dune ├── 2024-07-Minneapolis ├── 1_Type-Theory │ └── minneapolis_lecture_1.pdf ├── 2_Coq │ ├── Fundamentals_Coq.pdf │ ├── coq_exercises.v │ ├── coq_solutions.v │ └── fundamentals_lecture.v ├── 3_Univalent-Foundations │ └── minneapolis_lecture_3.pdf ├── 4_Tactics │ ├── exercises_tactics.v │ ├── exercises_tactics_with_solutions.v │ ├── tactics_lecture.v │ └── tactics_lecture_extended.v ├── 5_Set-level-mathematics │ ├── lecture5.pdf │ ├── set_level_mathematics_exercises.v │ └── set_level_mathematics_solutions.v ├── 6_Category-theory-in-UF │ ├── category_theory.v │ ├── category_theory_exercises.v │ ├── category_theory_solutions.v │ └── lecture.pdf ├── 7_Synthetic-Homotopy-Theory │ ├── circle_exercises.v │ └── circle_solutions.v └── dune ├── Makefile ├── README.md ├── _config.yml ├── dune-project └── installation.md /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/build-schools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/.github/workflows/build-schools.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/.gitmodules -------------------------------------------------------------------------------- /2017-12-Birmingham/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Makefile -------------------------------------------------------------------------------- /2017-12-Birmingham/Part1_Spartan_Type_Theory/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part1_Spartan_Type_Theory/Makefile.coq.input -------------------------------------------------------------------------------- /2017-12-Birmingham/Part1_Spartan_Type_Theory/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2017-12-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.pdf -------------------------------------------------------------------------------- /2017-12-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part1_Spartan_Type_Theory/Spartan_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part1_Spartan_Type_Theory/Spartan_solutions.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part2_Fundamentals_Coq/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part2_Fundamentals_Coq/Makefile.coq.input -------------------------------------------------------------------------------- /2017-12-Birmingham/Part2_Fundamentals_Coq/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2017-12-Birmingham/Part2_Fundamentals_Coq/coq_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part2_Fundamentals_Coq/coq_exercises.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part2_Fundamentals_Coq/coq_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part2_Fundamentals_Coq/coq_solutions.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part2_Fundamentals_Coq/fundamentals_lecture.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part2_Fundamentals_Coq/fundamentals_lecture.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part3_Univalent_Foundations/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part3_Univalent_Foundations/Makefile.coq.input -------------------------------------------------------------------------------- /2017-12-Birmingham/Part3_Univalent_Foundations/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2017-12-Birmingham/Part3_Univalent_Foundations/diagrams.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part3_Univalent_Foundations/diagrams.sty -------------------------------------------------------------------------------- /2017-12-Birmingham/Part3_Univalent_Foundations/uf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part3_Univalent_Foundations/uf.pdf -------------------------------------------------------------------------------- /2017-12-Birmingham/Part3_Univalent_Foundations/uf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part3_Univalent_Foundations/uf.tex -------------------------------------------------------------------------------- /2017-12-Birmingham/Part4_Tactics_UniMath/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part4_Tactics_UniMath/Makefile.coq.input -------------------------------------------------------------------------------- /2017-12-Birmingham/Part4_Tactics_UniMath/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2017-12-Birmingham/Part4_Tactics_UniMath/exercises_tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part4_Tactics_UniMath/exercises_tactics.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part4_Tactics_UniMath/exercises_tactics_with_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part4_Tactics_UniMath/exercises_tactics_with_solutions.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part4_Tactics_UniMath/lecture_tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part4_Tactics_UniMath/lecture_tactics.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part4_Tactics_UniMath/lecture_tactics_long_version.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part4_Tactics_UniMath/lecture_tactics_long_version.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part4_Tactics_UniMath/weq_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part4_Tactics_UniMath/weq_exercises.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part5_Set_Level_Mathematics/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part5_Set_Level_Mathematics/Makefile.coq.input -------------------------------------------------------------------------------- /2017-12-Birmingham/Part5_Set_Level_Mathematics/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2017-12-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_exercises.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_solutions.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part6_Category_Theory/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part6_Category_Theory/Makefile.coq.input -------------------------------------------------------------------------------- /2017-12-Birmingham/Part6_Category_Theory/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2017-12-Birmingham/Part6_Category_Theory/category_theory_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part6_Category_Theory/category_theory_exercises.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part6_Category_Theory/category_theory_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part6_Category_Theory/category_theory_solutions.v -------------------------------------------------------------------------------- /2017-12-Birmingham/Part7_UniMath_future/7_UniMath_future.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part7_UniMath_future/7_UniMath_future.pdf -------------------------------------------------------------------------------- /2017-12-Birmingham/Part7_UniMath_future/7_UniMath_future.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part7_UniMath_future/7_UniMath_future.tex -------------------------------------------------------------------------------- /2017-12-Birmingham/Part7_UniMath_future/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part7_UniMath_future/Makefile.coq.input -------------------------------------------------------------------------------- /2017-12-Birmingham/Part7_UniMath_future/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2017-12-Birmingham/Part7_UniMath_future/isofhlevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/Part7_UniMath_future/isofhlevel.png -------------------------------------------------------------------------------- /2017-12-Birmingham/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/README.md -------------------------------------------------------------------------------- /2017-12-Birmingham/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2017-12-Birmingham/dune -------------------------------------------------------------------------------- /2019-04-Birmingham/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Makefile -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Makefile.coq.input -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan-Type-Theory.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan-Type-Theory.key -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan-Type-Theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan-Type-Theory.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.html -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.md -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_exercises.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part1_Spartan_Type_Theory/Spartan_solutions.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part2_Fundamentals_Coq/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part2_Fundamentals_Coq/Makefile.coq.input -------------------------------------------------------------------------------- /2019-04-Birmingham/Part2_Fundamentals_Coq/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-04-Birmingham/Part2_Fundamentals_Coq/coq_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part2_Fundamentals_Coq/coq_exercises.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part2_Fundamentals_Coq/coq_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part2_Fundamentals_Coq/coq_solutions.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part2_Fundamentals_Coq/fundamentals_lecture.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part2_Fundamentals_Coq/fundamentals_lecture.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part3_Univalent_Foundations/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part3_Univalent_Foundations/Makefile.coq.input -------------------------------------------------------------------------------- /2019-04-Birmingham/Part3_Univalent_Foundations/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-04-Birmingham/Part3_Univalent_Foundations/diagrams.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part3_Univalent_Foundations/diagrams.sty -------------------------------------------------------------------------------- /2019-04-Birmingham/Part3_Univalent_Foundations/truncation_exercices.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part3_Univalent_Foundations/truncation_exercices.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part3_Univalent_Foundations/uf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part3_Univalent_Foundations/uf.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/Part3_Univalent_Foundations/uf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part3_Univalent_Foundations/uf.tex -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part4_Tactics_UniMath/Makefile.coq.input -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/exercises_tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part4_Tactics_UniMath/exercises_tactics.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/exercises_tactics_with_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part4_Tactics_UniMath/exercises_tactics_with_solutions.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/lecture_tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part4_Tactics_UniMath/lecture_tactics.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/lecture_tactics_long_version.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part4_Tactics_UniMath/lecture_tactics_long_version.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/weq_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part4_Tactics_UniMath/weq_exercises.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part4_Tactics_UniMath/weq_exercises_with_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part4_Tactics_UniMath/weq_exercises_with_solutions.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part5_Set_Level_Mathematics/5_set_level_mathematics_lecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part5_Set_Level_Mathematics/5_set_level_mathematics_lecture.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/Part5_Set_Level_Mathematics/5_set_level_mathematics_lecture.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part5_Set_Level_Mathematics/5_set_level_mathematics_lecture.tex -------------------------------------------------------------------------------- /2019-04-Birmingham/Part5_Set_Level_Mathematics/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part5_Set_Level_Mathematics/Makefile.coq.input -------------------------------------------------------------------------------- /2019-04-Birmingham/Part5_Set_Level_Mathematics/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-04-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_exercises.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_solutions.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part6_Category_Theory/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part6_Category_Theory/Makefile.coq.input -------------------------------------------------------------------------------- /2019-04-Birmingham/Part6_Category_Theory/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-04-Birmingham/Part6_Category_Theory/category_theory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part6_Category_Theory/category_theory.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part6_Category_Theory/category_theory_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part6_Category_Theory/category_theory_exercises.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part6_Category_Theory/category_theory_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part6_Category_Theory/category_theory_solutions.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part6_Category_Theory/lecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part6_Category_Theory/lecture.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/Part7_Paradoxes/GirardsParadox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part7_Paradoxes/GirardsParadox.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part7_Paradoxes/GirardsParadox_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part7_Paradoxes/GirardsParadox_solutions.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part7_Paradoxes/RussellsParadox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part7_Paradoxes/RussellsParadox.v -------------------------------------------------------------------------------- /2019-04-Birmingham/Part8_UniMath_future/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part8_UniMath_future/Makefile.coq.input -------------------------------------------------------------------------------- /2019-04-Birmingham/Part8_UniMath_future/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-04-Birmingham/Part8_UniMath_future/UniMath_past_present_future.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Part8_UniMath_future/UniMath_past_present_future.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/README.md -------------------------------------------------------------------------------- /2019-04-Birmingham/Seminar_Talks/Brandon_Shapiro_Types_as_Weak_omega_Groupoids.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Seminar_Talks/Brandon_Shapiro_Types_as_Weak_omega_Groupoids.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/Seminar_Talks/tslil_clingman_Univalence_Axiom_Brief_and_Incomplete_Tour.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/Seminar_Talks/tslil_clingman_Univalence_Axiom_Brief_and_Incomplete_Tour.pdf -------------------------------------------------------------------------------- /2019-04-Birmingham/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-04-Birmingham/dune -------------------------------------------------------------------------------- /2019-07-Columbus/Demo/Demo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-07-Columbus/Demo/Demo.v -------------------------------------------------------------------------------- /2019-07-Columbus/Demo/Makefile.coq.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-07-Columbus/Demo/Makefile.coq.input -------------------------------------------------------------------------------- /2019-07-Columbus/Demo/Makefile.coq.local: -------------------------------------------------------------------------------- 1 | COQBIN = ../../UniMath/sub/coq/bin/ 2 | -------------------------------------------------------------------------------- /2019-07-Columbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-07-Columbus/Makefile -------------------------------------------------------------------------------- /2019-07-Columbus/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2019-07-Columbus/dune -------------------------------------------------------------------------------- /2022-07-Cortona/1_Type-Theory/Lecture_Type-Theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/1_Type-Theory/Lecture_Type-Theory.pdf -------------------------------------------------------------------------------- /2022-07-Cortona/2_Fundamentals-Coq/Fundamentals_Coq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/2_Fundamentals-Coq/Fundamentals_Coq.pdf -------------------------------------------------------------------------------- /2022-07-Cortona/2_Fundamentals-Coq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/2_Fundamentals-Coq/Makefile -------------------------------------------------------------------------------- /2022-07-Cortona/2_Fundamentals-Coq/coq_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/2_Fundamentals-Coq/coq_exercises.v -------------------------------------------------------------------------------- /2022-07-Cortona/2_Fundamentals-Coq/coq_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/2_Fundamentals-Coq/coq_solutions.v -------------------------------------------------------------------------------- /2022-07-Cortona/2_Fundamentals-Coq/fundamentals_lecture.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/2_Fundamentals-Coq/fundamentals_lecture.v -------------------------------------------------------------------------------- /2022-07-Cortona/3_Univalent-foundations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/3_Univalent-foundations.pdf -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/coqdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/coqdoc.css -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/exercises_tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/exercises_tactics.v -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/exercises_tactics_with_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/exercises_tactics_with_solutions.v -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/lecture_tactics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/lecture_tactics.html -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/lecture_tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/lecture_tactics.v -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/lecture_tactics_long_version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/lecture_tactics_long_version.html -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/lecture_tactics_long_version.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/lecture_tactics_long_version.v -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/weq_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/weq_exercises.v -------------------------------------------------------------------------------- /2022-07-Cortona/4_Tactics-UniMath/weq_exercises_with_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/4_Tactics-UniMath/weq_exercises_with_solutions.v -------------------------------------------------------------------------------- /2022-07-Cortona/5_Set-level-mathematics/5_set_level_mathematics_lecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/5_Set-level-mathematics/5_set_level_mathematics_lecture.pdf -------------------------------------------------------------------------------- /2022-07-Cortona/5_Set-level-mathematics/set_level_mathematics_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/5_Set-level-mathematics/set_level_mathematics_exercises.v -------------------------------------------------------------------------------- /2022-07-Cortona/5_Set-level-mathematics/set_level_mathematics_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/5_Set-level-mathematics/set_level_mathematics_solutions.v -------------------------------------------------------------------------------- /2022-07-Cortona/6_Category_Theory/category_theory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/6_Category_Theory/category_theory.v -------------------------------------------------------------------------------- /2022-07-Cortona/6_Category_Theory/category_theory_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/6_Category_Theory/category_theory_exercises.v -------------------------------------------------------------------------------- /2022-07-Cortona/6_Category_Theory/category_theory_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/6_Category_Theory/category_theory_solutions.v -------------------------------------------------------------------------------- /2022-07-Cortona/6_Category_Theory/lecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/6_Category_Theory/lecture.pdf -------------------------------------------------------------------------------- /2022-07-Cortona/7_Synthetic-Homotopy-Theory/Synthetic_Homotopy_Theory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/7_Synthetic-Homotopy-Theory/Synthetic_Homotopy_Theory.v -------------------------------------------------------------------------------- /2022-07-Cortona/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2022-07-Cortona/dune -------------------------------------------------------------------------------- /2024-07-Minneapolis/1_Type-Theory/minneapolis_lecture_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/1_Type-Theory/minneapolis_lecture_1.pdf -------------------------------------------------------------------------------- /2024-07-Minneapolis/2_Coq/Fundamentals_Coq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/2_Coq/Fundamentals_Coq.pdf -------------------------------------------------------------------------------- /2024-07-Minneapolis/2_Coq/coq_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/2_Coq/coq_exercises.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/2_Coq/coq_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/2_Coq/coq_solutions.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/2_Coq/fundamentals_lecture.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/2_Coq/fundamentals_lecture.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/3_Univalent-Foundations/minneapolis_lecture_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/3_Univalent-Foundations/minneapolis_lecture_3.pdf -------------------------------------------------------------------------------- /2024-07-Minneapolis/4_Tactics/exercises_tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/4_Tactics/exercises_tactics.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/4_Tactics/exercises_tactics_with_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/4_Tactics/exercises_tactics_with_solutions.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/4_Tactics/tactics_lecture.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/4_Tactics/tactics_lecture.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/4_Tactics/tactics_lecture_extended.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/4_Tactics/tactics_lecture_extended.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/5_Set-level-mathematics/lecture5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/5_Set-level-mathematics/lecture5.pdf -------------------------------------------------------------------------------- /2024-07-Minneapolis/5_Set-level-mathematics/set_level_mathematics_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/5_Set-level-mathematics/set_level_mathematics_exercises.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/5_Set-level-mathematics/set_level_mathematics_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/5_Set-level-mathematics/set_level_mathematics_solutions.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/6_Category-theory-in-UF/category_theory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/6_Category-theory-in-UF/category_theory.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/6_Category-theory-in-UF/category_theory_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/6_Category-theory-in-UF/category_theory_exercises.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/6_Category-theory-in-UF/category_theory_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/6_Category-theory-in-UF/category_theory_solutions.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/6_Category-theory-in-UF/lecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/6_Category-theory-in-UF/lecture.pdf -------------------------------------------------------------------------------- /2024-07-Minneapolis/7_Synthetic-Homotopy-Theory/circle_exercises.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/7_Synthetic-Homotopy-Theory/circle_exercises.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/7_Synthetic-Homotopy-Theory/circle_solutions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/7_Synthetic-Homotopy-Theory/circle_solutions.v -------------------------------------------------------------------------------- /2024-07-Minneapolis/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/2024-07-Minneapolis/dune -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/_config.yml -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/dune-project -------------------------------------------------------------------------------- /installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/Schools/HEAD/installation.md --------------------------------------------------------------------------------