├── .github └── workflows │ └── blueprint.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── SphereEversion.lean ├── SphereEversion ├── Global │ ├── Gromov.lean │ ├── Immersion.lean │ ├── Localisation.lean │ ├── LocalisationData.lean │ ├── LocalizedConstruction.lean │ ├── OneJetBundle.lean │ ├── OneJetSec.lean │ ├── ParametricityForFree.lean │ ├── Relation.lean │ ├── SmoothEmbedding.lean │ └── TwistOneJetSec.lean ├── Indexing.lean ├── InductiveConstructions.lean ├── Local │ ├── AmpleRelation.lean │ ├── Corrugation.lean │ ├── DualPair.lean │ ├── HPrinciple.lean │ ├── OneJet.lean │ ├── ParametricHPrinciple.lean │ ├── Relation.lean │ └── SphereEversion.lean ├── Loops │ ├── Basic.lean │ ├── DeltaMollifier.lean │ ├── Exists.lean │ ├── Reparametrization.lean │ └── Surrounding.lean ├── Main.lean ├── Notations.lean └── ToMathlib │ ├── Algebra │ └── Ring │ │ └── Periodic.lean │ ├── Analysis │ ├── Calculus.lean │ ├── Calculus │ │ └── AddTorsor │ │ │ └── AffineMap.lean │ ├── ContDiff.lean │ ├── Convex │ │ └── Basic.lean │ ├── CutOff.lean │ ├── InnerProductSpace │ │ ├── CrossProduct.lean │ │ ├── Dual.lean │ │ ├── Projection │ │ │ └── Submodule.lean │ │ └── Rotation.lean │ └── NormedSpace │ │ ├── Misc.lean │ │ └── OperatorNorm │ │ └── Prod.lean │ ├── Data │ └── Nat │ │ └── Basic.lean │ ├── Equivariant.lean │ ├── ExistsOfConvex.lean │ ├── Geometry │ └── Manifold │ │ ├── Algebra │ │ └── SmoothGerm.lean │ │ ├── Immersion.lean │ │ ├── IsManifold │ │ └── ExtChartAt.lean │ │ ├── Metrizable.lean │ │ └── VectorBundle │ │ └── Misc.lean │ ├── LinearAlgebra │ ├── Basic.lean │ └── FiniteDimensional.lean │ ├── MeasureTheory │ ├── BorelSpace.lean │ └── ParametricIntervalIntegral.lean │ ├── Order │ └── Filter │ │ └── Basic.lean │ ├── Partition.lean │ ├── SmoothBarycentric.lean │ ├── Topology │ ├── Algebra │ │ └── Module.lean │ ├── Misc.lean │ ├── Paracompact.lean │ ├── Path.lean │ └── Separation │ │ └── Hausdorff.lean │ └── Unused │ ├── EventuallyConstant.lean │ ├── Fin.lean │ ├── GeometryManifoldMisc.lean │ ├── IntervalIntegral.lean │ └── LinearAlgebra │ └── Multilinear.lean ├── blueprint ├── .gitignore ├── mathjax.sed ├── src │ ├── appendix.tex │ ├── content.tex │ ├── fix_mathjax.sh │ ├── global_convex_integration.tex │ ├── introduction.tex │ ├── latexmkrc │ ├── local_convex_integration.tex │ ├── local_to_global.tex │ ├── loops.tex │ ├── macros_common.tex │ ├── macros_print.tex │ ├── macros_web.tex │ ├── plastex.cfg │ ├── print.tex │ ├── stylecours.css │ └── web.tex └── tasks.py ├── docs_src ├── index.md ├── pygments.css ├── style.css └── template.html ├── graphs └── graphs.py ├── lake-manifest.json ├── lakefile.toml ├── lean-toolchain ├── noshake.json ├── scripts ├── build_docs.sh └── mk_all.sh └── tasks.py /.github/workflows/blueprint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/.github/workflows/blueprint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/README.md -------------------------------------------------------------------------------- /SphereEversion.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion.lean -------------------------------------------------------------------------------- /SphereEversion/Global/Gromov.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/Gromov.lean -------------------------------------------------------------------------------- /SphereEversion/Global/Immersion.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/Immersion.lean -------------------------------------------------------------------------------- /SphereEversion/Global/Localisation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/Localisation.lean -------------------------------------------------------------------------------- /SphereEversion/Global/LocalisationData.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/LocalisationData.lean -------------------------------------------------------------------------------- /SphereEversion/Global/LocalizedConstruction.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/LocalizedConstruction.lean -------------------------------------------------------------------------------- /SphereEversion/Global/OneJetBundle.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/OneJetBundle.lean -------------------------------------------------------------------------------- /SphereEversion/Global/OneJetSec.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/OneJetSec.lean -------------------------------------------------------------------------------- /SphereEversion/Global/ParametricityForFree.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/ParametricityForFree.lean -------------------------------------------------------------------------------- /SphereEversion/Global/Relation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/Relation.lean -------------------------------------------------------------------------------- /SphereEversion/Global/SmoothEmbedding.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/SmoothEmbedding.lean -------------------------------------------------------------------------------- /SphereEversion/Global/TwistOneJetSec.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Global/TwistOneJetSec.lean -------------------------------------------------------------------------------- /SphereEversion/Indexing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Indexing.lean -------------------------------------------------------------------------------- /SphereEversion/InductiveConstructions.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/InductiveConstructions.lean -------------------------------------------------------------------------------- /SphereEversion/Local/AmpleRelation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/AmpleRelation.lean -------------------------------------------------------------------------------- /SphereEversion/Local/Corrugation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/Corrugation.lean -------------------------------------------------------------------------------- /SphereEversion/Local/DualPair.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/DualPair.lean -------------------------------------------------------------------------------- /SphereEversion/Local/HPrinciple.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/HPrinciple.lean -------------------------------------------------------------------------------- /SphereEversion/Local/OneJet.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/OneJet.lean -------------------------------------------------------------------------------- /SphereEversion/Local/ParametricHPrinciple.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/ParametricHPrinciple.lean -------------------------------------------------------------------------------- /SphereEversion/Local/Relation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/Relation.lean -------------------------------------------------------------------------------- /SphereEversion/Local/SphereEversion.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Local/SphereEversion.lean -------------------------------------------------------------------------------- /SphereEversion/Loops/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Loops/Basic.lean -------------------------------------------------------------------------------- /SphereEversion/Loops/DeltaMollifier.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Loops/DeltaMollifier.lean -------------------------------------------------------------------------------- /SphereEversion/Loops/Exists.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Loops/Exists.lean -------------------------------------------------------------------------------- /SphereEversion/Loops/Reparametrization.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Loops/Reparametrization.lean -------------------------------------------------------------------------------- /SphereEversion/Loops/Surrounding.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Loops/Surrounding.lean -------------------------------------------------------------------------------- /SphereEversion/Main.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Main.lean -------------------------------------------------------------------------------- /SphereEversion/Notations.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/Notations.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Algebra/Ring/Periodic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Algebra/Ring/Periodic.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/Calculus.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/Calculus.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/Calculus/AddTorsor/AffineMap.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/Calculus/AddTorsor/AffineMap.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/ContDiff.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/ContDiff.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/Convex/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/Convex/Basic.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/CutOff.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/CutOff.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/InnerProductSpace/CrossProduct.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/InnerProductSpace/CrossProduct.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/InnerProductSpace/Dual.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/InnerProductSpace/Dual.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/InnerProductSpace/Projection/Submodule.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/InnerProductSpace/Projection/Submodule.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/InnerProductSpace/Rotation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/InnerProductSpace/Rotation.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/NormedSpace/Misc.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/NormedSpace/Misc.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Analysis/NormedSpace/OperatorNorm/Prod.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Analysis/NormedSpace/OperatorNorm/Prod.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Data/Nat/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Data/Nat/Basic.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Equivariant.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Equivariant.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/ExistsOfConvex.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/ExistsOfConvex.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Geometry/Manifold/Algebra/SmoothGerm.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Geometry/Manifold/Algebra/SmoothGerm.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Geometry/Manifold/Immersion.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Geometry/Manifold/Immersion.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Geometry/Manifold/IsManifold/ExtChartAt.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Geometry/Manifold/IsManifold/ExtChartAt.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Geometry/Manifold/Metrizable.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Geometry/Manifold/Metrizable.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Geometry/Manifold/VectorBundle/Misc.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Geometry/Manifold/VectorBundle/Misc.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/LinearAlgebra/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/LinearAlgebra/Basic.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/LinearAlgebra/FiniteDimensional.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/LinearAlgebra/FiniteDimensional.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/MeasureTheory/BorelSpace.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/MeasureTheory/BorelSpace.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/MeasureTheory/ParametricIntervalIntegral.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/MeasureTheory/ParametricIntervalIntegral.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Order/Filter/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Order/Filter/Basic.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Partition.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Partition.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/SmoothBarycentric.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/SmoothBarycentric.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Topology/Algebra/Module.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Topology/Algebra/Module.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Topology/Misc.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Topology/Misc.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Topology/Paracompact.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Topology/Paracompact.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Topology/Path.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Topology/Path.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Topology/Separation/Hausdorff.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Topology/Separation/Hausdorff.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Unused/EventuallyConstant.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Unused/EventuallyConstant.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Unused/Fin.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Unused/Fin.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Unused/GeometryManifoldMisc.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Unused/GeometryManifoldMisc.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Unused/IntervalIntegral.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Unused/IntervalIntegral.lean -------------------------------------------------------------------------------- /SphereEversion/ToMathlib/Unused/LinearAlgebra/Multilinear.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/SphereEversion/ToMathlib/Unused/LinearAlgebra/Multilinear.lean -------------------------------------------------------------------------------- /blueprint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/.gitignore -------------------------------------------------------------------------------- /blueprint/mathjax.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/mathjax.sed -------------------------------------------------------------------------------- /blueprint/src/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/appendix.tex -------------------------------------------------------------------------------- /blueprint/src/content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/content.tex -------------------------------------------------------------------------------- /blueprint/src/fix_mathjax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/fix_mathjax.sh -------------------------------------------------------------------------------- /blueprint/src/global_convex_integration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/global_convex_integration.tex -------------------------------------------------------------------------------- /blueprint/src/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/introduction.tex -------------------------------------------------------------------------------- /blueprint/src/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/latexmkrc -------------------------------------------------------------------------------- /blueprint/src/local_convex_integration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/local_convex_integration.tex -------------------------------------------------------------------------------- /blueprint/src/local_to_global.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/local_to_global.tex -------------------------------------------------------------------------------- /blueprint/src/loops.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/loops.tex -------------------------------------------------------------------------------- /blueprint/src/macros_common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/macros_common.tex -------------------------------------------------------------------------------- /blueprint/src/macros_print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/macros_print.tex -------------------------------------------------------------------------------- /blueprint/src/macros_web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/macros_web.tex -------------------------------------------------------------------------------- /blueprint/src/plastex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/plastex.cfg -------------------------------------------------------------------------------- /blueprint/src/print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/print.tex -------------------------------------------------------------------------------- /blueprint/src/stylecours.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/stylecours.css -------------------------------------------------------------------------------- /blueprint/src/web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/src/web.tex -------------------------------------------------------------------------------- /blueprint/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/blueprint/tasks.py -------------------------------------------------------------------------------- /docs_src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/docs_src/index.md -------------------------------------------------------------------------------- /docs_src/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/docs_src/pygments.css -------------------------------------------------------------------------------- /docs_src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/docs_src/style.css -------------------------------------------------------------------------------- /docs_src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/docs_src/template.html -------------------------------------------------------------------------------- /graphs/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/graphs/graphs.py -------------------------------------------------------------------------------- /lake-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/lake-manifest.json -------------------------------------------------------------------------------- /lakefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/lakefile.toml -------------------------------------------------------------------------------- /lean-toolchain: -------------------------------------------------------------------------------- 1 | leanprover/lean4:v4.25.1 -------------------------------------------------------------------------------- /noshake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/noshake.json -------------------------------------------------------------------------------- /scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/scripts/build_docs.sh -------------------------------------------------------------------------------- /scripts/mk_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/scripts/mk_all.sh -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover-community/sphere-eversion/HEAD/tasks.py --------------------------------------------------------------------------------