├── .gitignore ├── Coq_patches ├── README ├── fix-hanging-at-end-of-proof.patch ├── grayson-closedir-after-opendir.patch ├── grayson-fix-infinite-loop.patch ├── grayson-improved-abstraction-version2-8.3pl2.patch ├── inductive-indice-levels-matter-8.3.patch └── patch.type-in-type ├── Current_work ├── 2013_from_poset.v ├── bsystem.v ├── semisimplicial.v └── semisimplicial2.v ├── Generalities ├── uu0.v └── uuu.v ├── Makefile ├── Proof_of_Extensionality └── funextfun.v ├── README ├── hlevel1 └── hProp.v └── hlevel2 ├── algebra1a.v ├── algebra1b.v ├── algebra1c.v ├── algebra1d.v ├── finitesets.v ├── hSet.v ├── hnat.v ├── hq.v ├── hz.v └── stnfsets.v /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/.gitignore -------------------------------------------------------------------------------- /Coq_patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Coq_patches/README -------------------------------------------------------------------------------- /Coq_patches/fix-hanging-at-end-of-proof.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Coq_patches/fix-hanging-at-end-of-proof.patch -------------------------------------------------------------------------------- /Coq_patches/grayson-closedir-after-opendir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Coq_patches/grayson-closedir-after-opendir.patch -------------------------------------------------------------------------------- /Coq_patches/grayson-fix-infinite-loop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Coq_patches/grayson-fix-infinite-loop.patch -------------------------------------------------------------------------------- /Coq_patches/grayson-improved-abstraction-version2-8.3pl2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Coq_patches/grayson-improved-abstraction-version2-8.3pl2.patch -------------------------------------------------------------------------------- /Coq_patches/inductive-indice-levels-matter-8.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Coq_patches/inductive-indice-levels-matter-8.3.patch -------------------------------------------------------------------------------- /Coq_patches/patch.type-in-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Coq_patches/patch.type-in-type -------------------------------------------------------------------------------- /Current_work/2013_from_poset.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Current_work/2013_from_poset.v -------------------------------------------------------------------------------- /Current_work/bsystem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Current_work/bsystem.v -------------------------------------------------------------------------------- /Current_work/semisimplicial.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Current_work/semisimplicial.v -------------------------------------------------------------------------------- /Current_work/semisimplicial2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Current_work/semisimplicial2.v -------------------------------------------------------------------------------- /Generalities/uu0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Generalities/uu0.v -------------------------------------------------------------------------------- /Generalities/uuu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Generalities/uuu.v -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Makefile -------------------------------------------------------------------------------- /Proof_of_Extensionality/funextfun.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/Proof_of_Extensionality/funextfun.v -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/README -------------------------------------------------------------------------------- /hlevel1/hProp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel1/hProp.v -------------------------------------------------------------------------------- /hlevel2/algebra1a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/algebra1a.v -------------------------------------------------------------------------------- /hlevel2/algebra1b.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/algebra1b.v -------------------------------------------------------------------------------- /hlevel2/algebra1c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/algebra1c.v -------------------------------------------------------------------------------- /hlevel2/algebra1d.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/algebra1d.v -------------------------------------------------------------------------------- /hlevel2/finitesets.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/finitesets.v -------------------------------------------------------------------------------- /hlevel2/hSet.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/hSet.v -------------------------------------------------------------------------------- /hlevel2/hnat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/hnat.v -------------------------------------------------------------------------------- /hlevel2/hq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/hq.v -------------------------------------------------------------------------------- /hlevel2/hz.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/hz.v -------------------------------------------------------------------------------- /hlevel2/stnfsets.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladimirias/Foundations/HEAD/hlevel2/stnfsets.v --------------------------------------------------------------------------------