├── .github └── workflows │ └── build-typetheory.yml ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── TypeTheory ├── .dir-locals.el ├── Articles │ ├── .package │ │ └── files │ ├── ALV_2017.v │ └── ALV_2018.v ├── Auxiliary │ ├── .package │ │ └── files │ ├── ArrowCategory.v │ ├── Auxiliary.v │ ├── CategoryTheory.v │ ├── CategoryTheoryImports.v │ ├── DisplayedCategories.v │ ├── Partial.v │ ├── Pullbacks.v │ ├── README.md │ ├── SetQuotients.v │ ├── SetsAndPresheaves.v │ └── TypeOfMorphisms.v ├── Bsystems │ ├── .package │ │ └── files │ ├── README.md │ ├── STid.v │ ├── S_St.v │ ├── S_fun.v │ ├── TS_ST.v │ ├── T_Tt.v │ ├── T_fun.v │ ├── dlt.v │ ├── lB.v │ ├── lB0.v │ ├── lB0_non_unital.v │ ├── lB_carriers.v │ ├── lB_non_unital.v │ ├── lB_to_precat.v │ ├── lBsystems.v │ ├── prelB.v │ └── prelB_non_unital.v ├── Categories │ ├── .package │ │ └── files │ ├── category_FAM.v │ ├── category_of_elements.v │ ├── ess_alg_categories.v │ └── ess_and_gen_alg_cats.v ├── CompCats │ ├── .package │ │ └── files │ ├── DiscCompCatDef_Cat.v │ ├── DiscCompCatDef_DiscCompCat_catiso.v │ ├── DiscCompCat_Cat.v │ ├── DiscreteComprehensionCat.v │ ├── FullyFaithfulDispFunctor.v │ └── README.md ├── Csystems │ ├── .package │ │ └── files │ ├── README.md │ ├── hSet_ltowers.v │ ├── lC0systems.v │ ├── lCsystems.v │ ├── lTowers.v │ ├── ltowers_over.v │ └── prelim.v ├── Cubical │ ├── .package │ │ └── files │ └── FillFromComp.v ├── CwDM │ ├── .package │ │ └── files │ ├── CompCat_of_CwDM.v │ └── DispCat_of_CwDM.v ├── CwF │ ├── .package │ │ └── files │ ├── CwF_Cats.v │ ├── CwF_Cats_Simple.v │ ├── CwF_Cats_Simple_Iso.v │ ├── CwF_def.v │ ├── README.md │ ├── RelUniv_Cat_Yo_CwF_Iso.v │ └── RepMaps.v ├── CwF_TypeCat │ ├── .package │ │ └── files │ ├── CwF_Cats_Iso.v │ ├── CwF_Defs_Equiv.v │ ├── CwF_SplitTypeCat_Cats.v │ ├── CwF_SplitTypeCat_Cats_Standalone.v │ ├── CwF_SplitTypeCat_Defs.v │ ├── CwF_SplitTypeCat_Equiv_Cats.v │ ├── CwF_SplitTypeCat_Equiv_Comparison.v │ ├── CwF_SplitTypeCat_Equivalence.v │ ├── CwF_SplitTypeCat_Maps.v │ ├── CwF_SplitTypeCat_Univalent_Cats.v │ ├── README.md │ ├── SplitTypeCat_Cat_Simple.v │ └── TypeCat_Reassoc.v ├── Initiality │ ├── .package │ │ └── files │ ├── Environments.v │ ├── Initiality.v │ ├── Interpretation.v │ ├── InterpretationLemmas.v │ ├── SyntacticCategory.v │ ├── SyntacticCategory_Structure.v │ ├── Syntax.v │ ├── SyntaxLemmas.v │ ├── Typing.v │ └── TypingLemmas.v ├── Instances │ ├── .package │ │ └── files │ ├── Presheaves.v │ ├── Sets.v │ └── VSets.v ├── OtherDefs │ ├── .package │ │ └── files │ ├── CwF_1.v │ ├── CwF_Dybjer.v │ ├── CwF_Pitts.v │ ├── CwF_Pitts_completion.v │ ├── CwF_Pitts_natural.v │ ├── CwF_Pitts_to_CwF_1.v │ ├── CwF_Pitts_to_DM.v │ ├── CwF_Pitts_to_TypeCat.v │ ├── CwF_Pitts_to_TypeCat_to_DM.v │ ├── DM.v │ ├── DM_to_TypeCat.v │ ├── DM_to_TypeCat_to_DM.v │ ├── README.md │ ├── TypeCat_to_CwF_Pitts.v │ └── TypeCat_to_DM.v ├── RelUniv │ ├── .package │ │ └── files │ ├── README.md │ ├── RelUnivTransfer.v │ ├── RelUnivYonedaCompletion.v │ ├── RelUniv_Cat.v │ ├── RelUniv_Cat_Iso.v │ ├── RelUniv_Cat_Simple.v │ ├── RelativeUniverses.v │ └── Transport_along_Equivs.v ├── TypeCat │ ├── .package │ │ └── files │ ├── Contextual.v │ ├── ExtraStructure.v │ ├── General.v │ ├── Maps.v │ ├── README.md │ ├── Structure.v │ └── TypeCat.v ├── TypeCat_CompCat │ ├── .package │ │ └── files │ ├── README.md │ ├── SplitTypeCat_ComprehensionCat.v │ ├── SplitTypeCat_DiscCompCatDef_catiso.v │ ├── TypeCat_ComprehensionCat.v │ └── TypeCat_ComprehensionCat_Equiv.v ├── TypeConstructions │ ├── .package │ │ └── files │ ├── CwF_SplitTypeCat_TypeEquiv.v │ ├── CwF_Structure_Display.v │ └── SplTCwF_TypeFormers.v └── dune └── dune-project /.github/workflows/build-typetheory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/.github/workflows/build-typetheory.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/README.md -------------------------------------------------------------------------------- /TypeTheory/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/.dir-locals.el -------------------------------------------------------------------------------- /TypeTheory/Articles/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Articles/.package/files -------------------------------------------------------------------------------- /TypeTheory/Articles/ALV_2017.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Articles/ALV_2017.v -------------------------------------------------------------------------------- /TypeTheory/Articles/ALV_2018.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Articles/ALV_2018.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/.package/files -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/ArrowCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/ArrowCategory.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/Auxiliary.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/Auxiliary.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/CategoryTheory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/CategoryTheory.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/CategoryTheoryImports.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/CategoryTheoryImports.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/DisplayedCategories.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/DisplayedCategories.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/Partial.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/Partial.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/Pullbacks.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/Pullbacks.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/README.md -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/SetQuotients.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/SetQuotients.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/SetsAndPresheaves.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/SetsAndPresheaves.v -------------------------------------------------------------------------------- /TypeTheory/Auxiliary/TypeOfMorphisms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Auxiliary/TypeOfMorphisms.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/.package/files -------------------------------------------------------------------------------- /TypeTheory/Bsystems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/README.md -------------------------------------------------------------------------------- /TypeTheory/Bsystems/STid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/STid.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/S_St.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/S_St.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/S_fun.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/S_fun.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/TS_ST.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/TS_ST.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/T_Tt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/T_Tt.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/T_fun.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/T_fun.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/dlt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/dlt.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/lB.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/lB.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/lB0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/lB0.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/lB0_non_unital.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/lB0_non_unital.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/lB_carriers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/lB_carriers.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/lB_non_unital.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/lB_non_unital.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/lB_to_precat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/lB_to_precat.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/lBsystems.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/lBsystems.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/prelB.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/prelB.v -------------------------------------------------------------------------------- /TypeTheory/Bsystems/prelB_non_unital.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Bsystems/prelB_non_unital.v -------------------------------------------------------------------------------- /TypeTheory/Categories/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Categories/.package/files -------------------------------------------------------------------------------- /TypeTheory/Categories/category_FAM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Categories/category_FAM.v -------------------------------------------------------------------------------- /TypeTheory/Categories/category_of_elements.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Categories/category_of_elements.v -------------------------------------------------------------------------------- /TypeTheory/Categories/ess_alg_categories.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Categories/ess_alg_categories.v -------------------------------------------------------------------------------- /TypeTheory/Categories/ess_and_gen_alg_cats.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Categories/ess_and_gen_alg_cats.v -------------------------------------------------------------------------------- /TypeTheory/CompCats/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CompCats/.package/files -------------------------------------------------------------------------------- /TypeTheory/CompCats/DiscCompCatDef_Cat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CompCats/DiscCompCatDef_Cat.v -------------------------------------------------------------------------------- /TypeTheory/CompCats/DiscCompCatDef_DiscCompCat_catiso.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CompCats/DiscCompCatDef_DiscCompCat_catiso.v -------------------------------------------------------------------------------- /TypeTheory/CompCats/DiscCompCat_Cat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CompCats/DiscCompCat_Cat.v -------------------------------------------------------------------------------- /TypeTheory/CompCats/DiscreteComprehensionCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CompCats/DiscreteComprehensionCat.v -------------------------------------------------------------------------------- /TypeTheory/CompCats/FullyFaithfulDispFunctor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CompCats/FullyFaithfulDispFunctor.v -------------------------------------------------------------------------------- /TypeTheory/CompCats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CompCats/README.md -------------------------------------------------------------------------------- /TypeTheory/Csystems/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/.package/files -------------------------------------------------------------------------------- /TypeTheory/Csystems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/README.md -------------------------------------------------------------------------------- /TypeTheory/Csystems/hSet_ltowers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/hSet_ltowers.v -------------------------------------------------------------------------------- /TypeTheory/Csystems/lC0systems.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/lC0systems.v -------------------------------------------------------------------------------- /TypeTheory/Csystems/lCsystems.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/lCsystems.v -------------------------------------------------------------------------------- /TypeTheory/Csystems/lTowers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/lTowers.v -------------------------------------------------------------------------------- /TypeTheory/Csystems/ltowers_over.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/ltowers_over.v -------------------------------------------------------------------------------- /TypeTheory/Csystems/prelim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Csystems/prelim.v -------------------------------------------------------------------------------- /TypeTheory/Cubical/.package/files: -------------------------------------------------------------------------------- 1 | FillFromComp.v -------------------------------------------------------------------------------- /TypeTheory/Cubical/FillFromComp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Cubical/FillFromComp.v -------------------------------------------------------------------------------- /TypeTheory/CwDM/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwDM/.package/files -------------------------------------------------------------------------------- /TypeTheory/CwDM/CompCat_of_CwDM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwDM/CompCat_of_CwDM.v -------------------------------------------------------------------------------- /TypeTheory/CwDM/DispCat_of_CwDM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwDM/DispCat_of_CwDM.v -------------------------------------------------------------------------------- /TypeTheory/CwF/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/.package/files -------------------------------------------------------------------------------- /TypeTheory/CwF/CwF_Cats.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/CwF_Cats.v -------------------------------------------------------------------------------- /TypeTheory/CwF/CwF_Cats_Simple.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/CwF_Cats_Simple.v -------------------------------------------------------------------------------- /TypeTheory/CwF/CwF_Cats_Simple_Iso.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/CwF_Cats_Simple_Iso.v -------------------------------------------------------------------------------- /TypeTheory/CwF/CwF_def.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/CwF_def.v -------------------------------------------------------------------------------- /TypeTheory/CwF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/README.md -------------------------------------------------------------------------------- /TypeTheory/CwF/RelUniv_Cat_Yo_CwF_Iso.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/RelUniv_Cat_Yo_CwF_Iso.v -------------------------------------------------------------------------------- /TypeTheory/CwF/RepMaps.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF/RepMaps.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/.package/files -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_Cats_Iso.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_Cats_Iso.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_Defs_Equiv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_Defs_Equiv.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Cats.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Cats.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Cats_Standalone.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Cats_Standalone.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Defs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Defs.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Equiv_Cats.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Equiv_Cats.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Equiv_Comparison.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Equiv_Comparison.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Equivalence.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Equivalence.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Maps.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Maps.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Univalent_Cats.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/CwF_SplitTypeCat_Univalent_Cats.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/README.md -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/SplitTypeCat_Cat_Simple.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/SplitTypeCat_Cat_Simple.v -------------------------------------------------------------------------------- /TypeTheory/CwF_TypeCat/TypeCat_Reassoc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/CwF_TypeCat/TypeCat_Reassoc.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/.package/files -------------------------------------------------------------------------------- /TypeTheory/Initiality/Environments.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/Environments.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/Initiality.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/Initiality.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/Interpretation.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/Interpretation.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/InterpretationLemmas.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/InterpretationLemmas.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/SyntacticCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/SyntacticCategory.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/SyntacticCategory_Structure.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/SyntacticCategory_Structure.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/Syntax.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/Syntax.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/SyntaxLemmas.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/SyntaxLemmas.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/Typing.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/Typing.v -------------------------------------------------------------------------------- /TypeTheory/Initiality/TypingLemmas.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Initiality/TypingLemmas.v -------------------------------------------------------------------------------- /TypeTheory/Instances/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Instances/.package/files -------------------------------------------------------------------------------- /TypeTheory/Instances/Presheaves.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Instances/Presheaves.v -------------------------------------------------------------------------------- /TypeTheory/Instances/Sets.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Instances/Sets.v -------------------------------------------------------------------------------- /TypeTheory/Instances/VSets.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/Instances/VSets.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/.package/files -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_1.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Dybjer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Dybjer.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Pitts.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Pitts.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Pitts_completion.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Pitts_completion.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Pitts_natural.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Pitts_natural.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Pitts_to_CwF_1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Pitts_to_CwF_1.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Pitts_to_DM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Pitts_to_DM.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Pitts_to_TypeCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Pitts_to_TypeCat.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/CwF_Pitts_to_TypeCat_to_DM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/CwF_Pitts_to_TypeCat_to_DM.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/DM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/DM.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/DM_to_TypeCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/DM_to_TypeCat.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/DM_to_TypeCat_to_DM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/DM_to_TypeCat_to_DM.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/README.md -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/TypeCat_to_CwF_Pitts.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/TypeCat_to_CwF_Pitts.v -------------------------------------------------------------------------------- /TypeTheory/OtherDefs/TypeCat_to_DM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/OtherDefs/TypeCat_to_DM.v -------------------------------------------------------------------------------- /TypeTheory/RelUniv/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/.package/files -------------------------------------------------------------------------------- /TypeTheory/RelUniv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/README.md -------------------------------------------------------------------------------- /TypeTheory/RelUniv/RelUnivTransfer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/RelUnivTransfer.v -------------------------------------------------------------------------------- /TypeTheory/RelUniv/RelUnivYonedaCompletion.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/RelUnivYonedaCompletion.v -------------------------------------------------------------------------------- /TypeTheory/RelUniv/RelUniv_Cat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/RelUniv_Cat.v -------------------------------------------------------------------------------- /TypeTheory/RelUniv/RelUniv_Cat_Iso.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/RelUniv_Cat_Iso.v -------------------------------------------------------------------------------- /TypeTheory/RelUniv/RelUniv_Cat_Simple.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/RelUniv_Cat_Simple.v -------------------------------------------------------------------------------- /TypeTheory/RelUniv/RelativeUniverses.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/RelativeUniverses.v -------------------------------------------------------------------------------- /TypeTheory/RelUniv/Transport_along_Equivs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/RelUniv/Transport_along_Equivs.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/.package/files -------------------------------------------------------------------------------- /TypeTheory/TypeCat/Contextual.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/Contextual.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat/ExtraStructure.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/ExtraStructure.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat/General.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/General.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat/Maps.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/Maps.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/README.md -------------------------------------------------------------------------------- /TypeTheory/TypeCat/Structure.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/Structure.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat/TypeCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat/TypeCat.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat_CompCat/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat_CompCat/.package/files -------------------------------------------------------------------------------- /TypeTheory/TypeCat_CompCat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat_CompCat/README.md -------------------------------------------------------------------------------- /TypeTheory/TypeCat_CompCat/SplitTypeCat_ComprehensionCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat_CompCat/SplitTypeCat_ComprehensionCat.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat_CompCat/SplitTypeCat_DiscCompCatDef_catiso.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat_CompCat/SplitTypeCat_DiscCompCatDef_catiso.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat_CompCat/TypeCat_ComprehensionCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat_CompCat/TypeCat_ComprehensionCat.v -------------------------------------------------------------------------------- /TypeTheory/TypeCat_CompCat/TypeCat_ComprehensionCat_Equiv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeCat_CompCat/TypeCat_ComprehensionCat_Equiv.v -------------------------------------------------------------------------------- /TypeTheory/TypeConstructions/.package/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeConstructions/.package/files -------------------------------------------------------------------------------- /TypeTheory/TypeConstructions/CwF_SplitTypeCat_TypeEquiv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeConstructions/CwF_SplitTypeCat_TypeEquiv.v -------------------------------------------------------------------------------- /TypeTheory/TypeConstructions/CwF_Structure_Display.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeConstructions/CwF_Structure_Display.v -------------------------------------------------------------------------------- /TypeTheory/TypeConstructions/SplTCwF_TypeFormers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/TypeConstructions/SplTCwF_TypeFormers.v -------------------------------------------------------------------------------- /TypeTheory/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/TypeTheory/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniMath/TypeTheory/HEAD/dune-project --------------------------------------------------------------------------------