├── .gitignore ├── .gitmodules ├── .travis.yml ├── Makefile ├── README.md ├── etc ├── TimeFileMaker.py ├── ci │ ├── add_upstream.sh │ ├── after_success.sh │ ├── generate_and_push_doc.sh │ ├── install_coq.sh │ └── push_remote.sh ├── make-both-time-files.py ├── make-each-time-file-git.sh ├── make-each-time-file-hg.sh ├── make-each-time-file.sh ├── make-one-time-file.py ├── pushd-root.sh ├── replace_imports.py └── report_time.sh └── theories ├── .dir-locals.el └── Categories ├── Adjoint.v ├── Adjoint ├── Composition.v ├── Duals.v ├── Equality.v ├── Hom.v ├── Identity.v ├── UnitCounit.v ├── UnitCounitCoercions.v └── UniversalMorphisms.v ├── BoolCategory.v ├── Cat.v ├── Cat └── Morphisms.v ├── Category.v ├── Category ├── Core.v ├── Duals.v ├── Equality.v ├── Morphisms.v ├── Objects.v ├── Product.v ├── StrictCategory.v ├── Sum.v └── UnivalentCategory.v ├── CategoryOfSections.v ├── Comma ├── CommaCategory.v ├── Duals.v ├── InducedFunctors.v └── Projection.v ├── Common.v ├── ComputableCat.v ├── Coq ├── Arith │ ├── Compare_dec.v │ ├── Gt.v │ ├── Le.v │ ├── Lt.v │ └── Plus.v └── Logic │ └── Decidable.v ├── DependentProduct.v ├── Discrete └── Duals.v ├── DiscreteCategory.v ├── DualFunctor.v ├── ExponentialLaws.v ├── ExponentialLaws ├── Law0.v ├── Law1.v ├── Law1 │ ├── Functors.v │ └── Law.v ├── Law2.v ├── Law2 │ ├── Functors.v │ └── Law.v ├── Law3.v ├── Law3 │ ├── Functors.v │ └── Law.v ├── Law4.v └── Law4 │ ├── Functors.v │ └── Law.v ├── Functor.v ├── Functor ├── Attributes.v ├── Composition.v ├── Composition │ └── Functorial.v ├── CompositionLaws.v ├── Core.v ├── Duals.v ├── Equality.v ├── Identity.v ├── Pointwise.v ├── Pointwise │ └── Properties.v ├── Product.v ├── Product │ └── ProductFunctor.v └── Sum.v ├── FunctorCategory.v ├── FunctorCategory ├── Functorial.v └── Morphisms.v ├── Grothendieck.v ├── Grothendieck ├── PseudofunctorToCat.v ├── ToCat.v └── ToSet.v ├── Groupoid.v ├── Groupoid ├── Duals.v └── Functors.v ├── Hom.v ├── IndiscreteCategory.v ├── InitialTerminalCategory.v ├── IsGroupoid.v ├── NatCategory.v ├── NatCategory └── Duals.v ├── NaturalNumbersObject.v ├── NaturalTransformation.v ├── NaturalTransformation ├── Composition.v ├── Composition │ └── Functorial.v ├── CompositionLaws.v ├── Core.v ├── Duals.v ├── Equality.v ├── Identity.v ├── Isomorphisms.v ├── Pointwise.v ├── Product.v └── Sum.v ├── Notations.v ├── NotationsUtf8.v ├── Peano.v ├── ProductLaws.v ├── Pseudofunctor.v ├── Pseudofunctor ├── Core.v └── FromFunctor.v ├── SetCategory.v ├── Subcategory.v ├── Subcategory ├── Full.v ├── Sigma.v ├── SigmaMorphisms.v ├── SigmaObjects.v └── Wide.v ├── UniversalProperties.v └── Utf8.v /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/README.md -------------------------------------------------------------------------------- /etc/TimeFileMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/TimeFileMaker.py -------------------------------------------------------------------------------- /etc/ci/add_upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/ci/add_upstream.sh -------------------------------------------------------------------------------- /etc/ci/after_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/ci/after_success.sh -------------------------------------------------------------------------------- /etc/ci/generate_and_push_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/ci/generate_and_push_doc.sh -------------------------------------------------------------------------------- /etc/ci/install_coq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/ci/install_coq.sh -------------------------------------------------------------------------------- /etc/ci/push_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/ci/push_remote.sh -------------------------------------------------------------------------------- /etc/make-both-time-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/make-both-time-files.py -------------------------------------------------------------------------------- /etc/make-each-time-file-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/make-each-time-file-git.sh -------------------------------------------------------------------------------- /etc/make-each-time-file-hg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/make-each-time-file-hg.sh -------------------------------------------------------------------------------- /etc/make-each-time-file.sh: -------------------------------------------------------------------------------- 1 | make-each-time-file-git.sh -------------------------------------------------------------------------------- /etc/make-one-time-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/make-one-time-file.py -------------------------------------------------------------------------------- /etc/pushd-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/pushd-root.sh -------------------------------------------------------------------------------- /etc/replace_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/replace_imports.py -------------------------------------------------------------------------------- /etc/report_time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/etc/report_time.sh -------------------------------------------------------------------------------- /theories/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/.dir-locals.el -------------------------------------------------------------------------------- /theories/Categories/Adjoint.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/Composition.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/Composition.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/Duals.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/Equality.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/Equality.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/Hom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/Hom.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/Identity.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/Identity.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/UnitCounit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/UnitCounit.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/UnitCounitCoercions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/UnitCounitCoercions.v -------------------------------------------------------------------------------- /theories/Categories/Adjoint/UniversalMorphisms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Adjoint/UniversalMorphisms.v -------------------------------------------------------------------------------- /theories/Categories/BoolCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/BoolCategory.v -------------------------------------------------------------------------------- /theories/Categories/Cat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Cat.v -------------------------------------------------------------------------------- /theories/Categories/Cat/Morphisms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Cat/Morphisms.v -------------------------------------------------------------------------------- /theories/Categories/Category.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category.v -------------------------------------------------------------------------------- /theories/Categories/Category/Core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/Core.v -------------------------------------------------------------------------------- /theories/Categories/Category/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/Duals.v -------------------------------------------------------------------------------- /theories/Categories/Category/Equality.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/Equality.v -------------------------------------------------------------------------------- /theories/Categories/Category/Morphisms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/Morphisms.v -------------------------------------------------------------------------------- /theories/Categories/Category/Objects.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/Objects.v -------------------------------------------------------------------------------- /theories/Categories/Category/Product.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/Product.v -------------------------------------------------------------------------------- /theories/Categories/Category/StrictCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/StrictCategory.v -------------------------------------------------------------------------------- /theories/Categories/Category/Sum.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/Sum.v -------------------------------------------------------------------------------- /theories/Categories/Category/UnivalentCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Category/UnivalentCategory.v -------------------------------------------------------------------------------- /theories/Categories/CategoryOfSections.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/CategoryOfSections.v -------------------------------------------------------------------------------- /theories/Categories/Comma/CommaCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Comma/CommaCategory.v -------------------------------------------------------------------------------- /theories/Categories/Comma/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Comma/Duals.v -------------------------------------------------------------------------------- /theories/Categories/Comma/InducedFunctors.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Comma/InducedFunctors.v -------------------------------------------------------------------------------- /theories/Categories/Comma/Projection.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Comma/Projection.v -------------------------------------------------------------------------------- /theories/Categories/Common.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Common.v -------------------------------------------------------------------------------- /theories/Categories/ComputableCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ComputableCat.v -------------------------------------------------------------------------------- /theories/Categories/Coq/Arith/Compare_dec.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Coq/Arith/Compare_dec.v -------------------------------------------------------------------------------- /theories/Categories/Coq/Arith/Gt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Coq/Arith/Gt.v -------------------------------------------------------------------------------- /theories/Categories/Coq/Arith/Le.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Coq/Arith/Le.v -------------------------------------------------------------------------------- /theories/Categories/Coq/Arith/Lt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Coq/Arith/Lt.v -------------------------------------------------------------------------------- /theories/Categories/Coq/Arith/Plus.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Coq/Arith/Plus.v -------------------------------------------------------------------------------- /theories/Categories/Coq/Logic/Decidable.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Coq/Logic/Decidable.v -------------------------------------------------------------------------------- /theories/Categories/DependentProduct.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/DependentProduct.v -------------------------------------------------------------------------------- /theories/Categories/Discrete/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Discrete/Duals.v -------------------------------------------------------------------------------- /theories/Categories/DiscreteCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/DiscreteCategory.v -------------------------------------------------------------------------------- /theories/Categories/DualFunctor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/DualFunctor.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law0.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law1.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law1/Functors.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law1/Functors.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law1/Law.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law1/Law.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law2.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law2/Functors.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law2/Functors.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law2/Law.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law2/Law.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law3.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law3/Functors.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law3/Functors.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law3/Law.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law3/Law.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law4.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law4.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law4/Functors.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law4/Functors.v -------------------------------------------------------------------------------- /theories/Categories/ExponentialLaws/Law4/Law.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ExponentialLaws/Law4/Law.v -------------------------------------------------------------------------------- /theories/Categories/Functor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Attributes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Attributes.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Composition.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Composition.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Composition/Functorial.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Composition/Functorial.v -------------------------------------------------------------------------------- /theories/Categories/Functor/CompositionLaws.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/CompositionLaws.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Core.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Duals.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Equality.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Equality.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Identity.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Identity.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Pointwise.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Pointwise.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Pointwise/Properties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Pointwise/Properties.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Product.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Product.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Product/ProductFunctor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Product/ProductFunctor.v -------------------------------------------------------------------------------- /theories/Categories/Functor/Sum.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Functor/Sum.v -------------------------------------------------------------------------------- /theories/Categories/FunctorCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/FunctorCategory.v -------------------------------------------------------------------------------- /theories/Categories/FunctorCategory/Functorial.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/FunctorCategory/Functorial.v -------------------------------------------------------------------------------- /theories/Categories/FunctorCategory/Morphisms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/FunctorCategory/Morphisms.v -------------------------------------------------------------------------------- /theories/Categories/Grothendieck.v: -------------------------------------------------------------------------------- 1 | Require Export Grothendieck.ToSet. 2 | -------------------------------------------------------------------------------- /theories/Categories/Grothendieck/PseudofunctorToCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Grothendieck/PseudofunctorToCat.v -------------------------------------------------------------------------------- /theories/Categories/Grothendieck/ToCat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Grothendieck/ToCat.v -------------------------------------------------------------------------------- /theories/Categories/Grothendieck/ToSet.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Grothendieck/ToSet.v -------------------------------------------------------------------------------- /theories/Categories/Groupoid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Groupoid.v -------------------------------------------------------------------------------- /theories/Categories/Groupoid/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Groupoid/Duals.v -------------------------------------------------------------------------------- /theories/Categories/Groupoid/Functors.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Groupoid/Functors.v -------------------------------------------------------------------------------- /theories/Categories/Hom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Hom.v -------------------------------------------------------------------------------- /theories/Categories/IndiscreteCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/IndiscreteCategory.v -------------------------------------------------------------------------------- /theories/Categories/InitialTerminalCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/InitialTerminalCategory.v -------------------------------------------------------------------------------- /theories/Categories/IsGroupoid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/IsGroupoid.v -------------------------------------------------------------------------------- /theories/Categories/NatCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NatCategory.v -------------------------------------------------------------------------------- /theories/Categories/NatCategory/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NatCategory/Duals.v -------------------------------------------------------------------------------- /theories/Categories/NaturalNumbersObject.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalNumbersObject.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Composition.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Composition.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Composition/Functorial.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Composition/Functorial.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/CompositionLaws.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/CompositionLaws.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Core.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Duals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Duals.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Equality.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Equality.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Identity.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Identity.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Isomorphisms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Isomorphisms.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Pointwise.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Pointwise.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Product.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Product.v -------------------------------------------------------------------------------- /theories/Categories/NaturalTransformation/Sum.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NaturalTransformation/Sum.v -------------------------------------------------------------------------------- /theories/Categories/Notations.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Notations.v -------------------------------------------------------------------------------- /theories/Categories/NotationsUtf8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/NotationsUtf8.v -------------------------------------------------------------------------------- /theories/Categories/Peano.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Peano.v -------------------------------------------------------------------------------- /theories/Categories/ProductLaws.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/ProductLaws.v -------------------------------------------------------------------------------- /theories/Categories/Pseudofunctor.v: -------------------------------------------------------------------------------- 1 | Require Export Pseudofunctor.Core. 2 | -------------------------------------------------------------------------------- /theories/Categories/Pseudofunctor/Core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Pseudofunctor/Core.v -------------------------------------------------------------------------------- /theories/Categories/Pseudofunctor/FromFunctor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Pseudofunctor/FromFunctor.v -------------------------------------------------------------------------------- /theories/Categories/SetCategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/SetCategory.v -------------------------------------------------------------------------------- /theories/Categories/Subcategory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Subcategory.v -------------------------------------------------------------------------------- /theories/Categories/Subcategory/Full.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Subcategory/Full.v -------------------------------------------------------------------------------- /theories/Categories/Subcategory/Sigma.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Subcategory/Sigma.v -------------------------------------------------------------------------------- /theories/Categories/Subcategory/SigmaMorphisms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Subcategory/SigmaMorphisms.v -------------------------------------------------------------------------------- /theories/Categories/Subcategory/SigmaObjects.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Subcategory/SigmaObjects.v -------------------------------------------------------------------------------- /theories/Categories/Subcategory/Wide.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Subcategory/Wide.v -------------------------------------------------------------------------------- /theories/Categories/UniversalProperties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/UniversalProperties.v -------------------------------------------------------------------------------- /theories/Categories/Utf8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CategoricalData/HoTT-categories/HEAD/theories/Categories/Utf8.v --------------------------------------------------------------------------------