├── .github ├── dependabot.yml └── workflows │ ├── 01-claim-issue.yml │ ├── 02-disclaim-issue.yml │ ├── 03-propose-pr.yml │ ├── 04-withdraw-pr.yml │ ├── 05-pr-comment.yml │ ├── blueprint.yml │ ├── create-release.yml │ └── update.yml ├── .gitignore ├── .gitpod.yml ├── .vscode └── settings.json ├── CITATION.bib ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FLT.lean ├── FLT ├── Assumptions │ ├── KnownIn1980s.lean │ ├── Mazur.lean │ ├── Odlyzko.lean │ └── README.md ├── AutomorphicForm │ └── QuaternionAlgebra │ │ ├── Defs.lean │ │ ├── FiniteDimensional.lean │ │ └── HeckeOperators │ │ ├── Abstract.lean │ │ ├── Concrete.lean │ │ └── Local.lean ├── Basic │ ├── FreyPackage.lean │ └── Reductions.lean ├── Data │ ├── Hurwitz.lean │ ├── HurwitzRatHat.lean │ └── QHat.lean ├── DedekindDomain │ ├── AdicValuation.lean │ ├── Completion │ │ └── BaseChange.lean │ ├── FiniteAdeleRing │ │ ├── BaseChange.lean │ │ ├── IsDirectLimitRestricted.lean │ │ ├── LocalUnits.lean │ │ ├── TensorPi.lean │ │ └── TensorRestrictedProduct.lean │ └── IntegralClosure.lean ├── Deformations │ ├── Algebra │ │ └── InverseLimit │ │ │ ├── Basic.lean │ │ │ └── Topology.lean │ ├── Categories.lean │ ├── ContinuousRepresentation │ │ └── IsTopologicalModule.lean │ ├── IsProartinian.lean │ ├── IsResidueAlgebra.lean │ ├── Lemmas.lean │ ├── LiftFunctor.lean │ ├── Representable.lean │ ├── RepresentationTheory │ │ ├── AbsoluteGaloisGroup.lean │ │ ├── ContinuousSMulDiscrete.lean │ │ ├── Etale.lean │ │ ├── Frobenius.lean │ │ ├── GaloisRep.lean │ │ ├── GaloisRepFamily.lean │ │ ├── IntegralClosure.lean │ │ ├── Irreducible.lean │ │ └── Subrepresentation.lean │ └── Subfunctor.lean ├── DivisionAlgebra │ └── Finiteness.lean ├── EllipticCurve │ └── Torsion.lean ├── GaloisRepresentation │ ├── Automorphic.lean │ ├── Cyclotomic.lean │ └── HardlyRamified │ │ ├── Defs.lean │ │ ├── Family.lean │ │ ├── Frey.lean │ │ ├── Lift.lean │ │ ├── ModThree.lean │ │ └── Threeadic.lean ├── GlobalLanglandsConjectures │ ├── GLnDefs.lean │ └── GLzero.lean ├── GroupScheme │ └── FiniteFlat.lean ├── HaarMeasure │ ├── HaarChar │ │ ├── AddEquiv.lean │ │ ├── AdeleRing.lean │ │ ├── FiniteDimensional.lean │ │ ├── Padic.lean │ │ ├── RealComplex.lean │ │ └── Ring.lean │ └── MeasurableSpacePadics.lean ├── Hacks │ └── RightActionInstances.lean ├── Mathlib │ ├── Algebra │ │ ├── Algebra │ │ │ ├── Bilinear.lean │ │ │ ├── Hom.lean │ │ │ ├── Pi.lean │ │ │ └── Tower.lean │ │ ├── FixedPoints │ │ │ └── Basic.lean │ │ ├── IsDirectLimit.lean │ │ ├── IsQuaternionAlgebra.lean │ │ ├── Module │ │ │ ├── LinearMap │ │ │ │ └── Defs.lean │ │ │ └── Submodule │ │ │ │ └── Basic.lean │ │ └── Order │ │ │ └── AbsoluteValue │ │ │ └── Basic.lean │ ├── Analysis │ │ └── Normed │ │ │ └── Ring │ │ │ └── WithAbs.lean │ ├── Data │ │ ├── Fin │ │ │ └── Basic.lean │ │ └── Set │ │ │ └── Prod.lean │ ├── GroupTheory │ │ ├── DoubleCoset.lean │ │ └── Index.lean │ ├── LinearAlgebra │ │ ├── Determinant.lean │ │ ├── Dimension │ │ │ └── Constructions.lean │ │ ├── Matrix │ │ │ └── GeneralLinearGroup │ │ │ │ └── Defs.lean │ │ ├── Pi.lean │ │ └── Span │ │ │ └── Defs.lean │ ├── MeasureTheory │ │ ├── Constructions │ │ │ └── BorelSpace │ │ │ │ ├── AdeleRing.lean │ │ │ │ ├── AdicCompletion.lean │ │ │ │ ├── FiniteAdeleRing.lean │ │ │ │ ├── InfinitePlace.lean │ │ │ │ └── Padic.lean │ │ ├── Group │ │ │ ├── Action.lean │ │ │ └── Measure.lean │ │ └── Measure │ │ │ ├── Regular.lean │ │ │ └── Typeclasses │ │ │ └── Finite.lean │ ├── NumberTheory │ │ ├── NumberField │ │ │ ├── Basic.lean │ │ │ └── Completion.lean │ │ └── Padics │ │ │ └── PadicIntegers.lean │ ├── RepresentationTheory │ │ └── Basic.lean │ ├── RingTheory │ │ ├── DedekindDomain │ │ │ ├── FiniteAdeleRing.lean │ │ │ └── Ideal │ │ │ │ └── Lemmas.lean │ │ ├── Ideal │ │ │ └── Quotient │ │ │ │ └── Basic.lean │ │ ├── LocalRing │ │ │ ├── Defs.lean │ │ │ └── MaximalIdeal │ │ │ │ └── Basic.lean │ │ ├── Localization │ │ │ └── BaseChange.lean │ │ ├── TensorProduct │ │ │ ├── Basis.lean │ │ │ └── Pi.lean │ │ └── Valuation │ │ │ └── ValuationSubring.lean │ └── Topology │ │ ├── Algebra │ │ ├── ContinuousAlgEquiv.lean │ │ ├── ContinuousMonoidHom.lean │ │ ├── Group │ │ │ ├── Quotient.lean │ │ │ └── Units.lean │ │ ├── Module │ │ │ ├── Equiv.lean │ │ │ ├── FiniteDimension.lean │ │ │ ├── ModuleTopology.lean │ │ │ └── Quotient.lean │ │ ├── Monoid.lean │ │ ├── MulAction.lean │ │ ├── Order │ │ │ └── Field.lean │ │ ├── RestrictedProduct │ │ │ ├── Basic.lean │ │ │ ├── Equiv.lean │ │ │ ├── Module.lean │ │ │ └── TopologicalSpace.lean │ │ ├── UniformRing.lean │ │ └── Valued │ │ │ ├── ValuationTopology.lean │ │ │ ├── WithVal.lean │ │ │ └── WithZeroMulInt.lean │ │ ├── Constructions.lean │ │ ├── HomToDiscrete.lean │ │ ├── Homeomorph.lean │ │ ├── Instances │ │ └── Matrix.lean │ │ └── MetricSpace │ │ ├── ProperSpace │ │ └── InfinitePlace.lean │ │ └── Pseudo │ │ └── Matrix.lean ├── NumberField │ ├── AdeleRing.lean │ ├── Completion │ │ ├── Finite.lean │ │ └── Infinite.lean │ ├── DiscriminantBounds.lean │ ├── FiniteAdeleRing.lean │ ├── InfiniteAdeleRing.lean │ ├── InfinitePlace │ │ ├── Dimension.lean │ │ ├── Extension.lean │ │ └── WeakApproximation.lean │ └── Padics │ │ └── RestrictedProduct.lean ├── Patching │ ├── Algebra.lean │ ├── Module.lean │ ├── Over.lean │ ├── REqualsT.lean │ ├── System.lean │ ├── Ultraproduct.lean │ ├── Utils │ │ ├── AdicTopology.lean │ │ ├── Depth.lean │ │ ├── InverseLimit.lean │ │ ├── Lemmas.lean │ │ ├── StructureFiniteness.lean │ │ └── TopologicallyFG.lean │ └── VanishingFilter.lean ├── QuaternionAlgebra │ └── NumberField.lean └── TateCurve │ └── TateCurve.lean ├── FermatsLastTheorem.lean ├── GENERAL.md ├── LICENSE ├── README.md ├── blog.md ├── blueprint ├── notes_on_how_blueprint_works.txt ├── requirements.txt ├── src │ ├── FLT.bib │ ├── TODO │ ├── blueprint.sty │ ├── chapter │ │ ├── AdeleMiniproject.tex │ │ ├── FrobeniusProject.tex │ │ ├── FujisakiProject.tex │ │ ├── HaarCharacterProject.tex │ │ ├── HeckeOperatorProject.tex │ │ ├── QuaternionAlgebraProject.tex │ │ ├── biblio.tex │ │ ├── ch01introduction.tex │ │ ├── ch02reductions.tex │ │ ├── ch03freyold.tex │ │ ├── ch03freyreduction.tex │ │ ├── ch04overview.tex │ │ ├── ch05automorphicformexample.tex │ │ ├── ch06automorphicrepresentations.tex │ │ ├── ch07exampleGLn.tex │ │ ├── chtopbestiary.tex │ │ └── global_langlands.tex │ ├── content.tex │ ├── extra_styles.css │ ├── latexmkrc │ ├── macro │ │ ├── common.tex │ │ ├── print.tex │ │ └── web.tex │ ├── plastex.cfg │ ├── print.tex │ ├── stylecours.css │ ├── util.sty │ └── web.tex └── tasks.py ├── docs ├── .bundle │ └── config ├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _includes │ └── mathjax.html ├── _layouts │ └── default.html ├── assets │ └── css │ │ └── style.scss ├── index.md └── upstreaming.md ├── lake-manifest.json ├── lakefile.toml ├── lean-toolchain ├── scripts ├── build_docs.sh ├── install_pre-push.sh ├── nolints.json ├── noshake.json ├── pre-push.sh ├── run_before_push.sh └── upstreaming_dashboard.py └── tasks.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/01-claim-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/01-claim-issue.yml -------------------------------------------------------------------------------- /.github/workflows/02-disclaim-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/02-disclaim-issue.yml -------------------------------------------------------------------------------- /.github/workflows/03-propose-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/03-propose-pr.yml -------------------------------------------------------------------------------- /.github/workflows/04-withdraw-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/04-withdraw-pr.yml -------------------------------------------------------------------------------- /.github/workflows/05-pr-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/05-pr-comment.yml -------------------------------------------------------------------------------- /.github/workflows/blueprint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/blueprint.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/CITATION.bib -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FLT.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT.lean -------------------------------------------------------------------------------- /FLT/Assumptions/KnownIn1980s.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Assumptions/KnownIn1980s.lean -------------------------------------------------------------------------------- /FLT/Assumptions/Mazur.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Assumptions/Mazur.lean -------------------------------------------------------------------------------- /FLT/Assumptions/Odlyzko.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Assumptions/Odlyzko.lean -------------------------------------------------------------------------------- /FLT/Assumptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Assumptions/README.md -------------------------------------------------------------------------------- /FLT/AutomorphicForm/QuaternionAlgebra/Defs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/AutomorphicForm/QuaternionAlgebra/Defs.lean -------------------------------------------------------------------------------- /FLT/AutomorphicForm/QuaternionAlgebra/FiniteDimensional.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/AutomorphicForm/QuaternionAlgebra/FiniteDimensional.lean -------------------------------------------------------------------------------- /FLT/AutomorphicForm/QuaternionAlgebra/HeckeOperators/Abstract.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/AutomorphicForm/QuaternionAlgebra/HeckeOperators/Abstract.lean -------------------------------------------------------------------------------- /FLT/AutomorphicForm/QuaternionAlgebra/HeckeOperators/Concrete.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/AutomorphicForm/QuaternionAlgebra/HeckeOperators/Concrete.lean -------------------------------------------------------------------------------- /FLT/AutomorphicForm/QuaternionAlgebra/HeckeOperators/Local.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/AutomorphicForm/QuaternionAlgebra/HeckeOperators/Local.lean -------------------------------------------------------------------------------- /FLT/Basic/FreyPackage.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Basic/FreyPackage.lean -------------------------------------------------------------------------------- /FLT/Basic/Reductions.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Basic/Reductions.lean -------------------------------------------------------------------------------- /FLT/Data/Hurwitz.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Data/Hurwitz.lean -------------------------------------------------------------------------------- /FLT/Data/HurwitzRatHat.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Data/HurwitzRatHat.lean -------------------------------------------------------------------------------- /FLT/Data/QHat.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Data/QHat.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/AdicValuation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/AdicValuation.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/Completion/BaseChange.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/Completion/BaseChange.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/FiniteAdeleRing/BaseChange.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/FiniteAdeleRing/BaseChange.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/FiniteAdeleRing/IsDirectLimitRestricted.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/FiniteAdeleRing/IsDirectLimitRestricted.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/FiniteAdeleRing/LocalUnits.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/FiniteAdeleRing/LocalUnits.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/FiniteAdeleRing/TensorPi.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/FiniteAdeleRing/TensorPi.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/FiniteAdeleRing/TensorRestrictedProduct.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/FiniteAdeleRing/TensorRestrictedProduct.lean -------------------------------------------------------------------------------- /FLT/DedekindDomain/IntegralClosure.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DedekindDomain/IntegralClosure.lean -------------------------------------------------------------------------------- /FLT/Deformations/Algebra/InverseLimit/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/Algebra/InverseLimit/Basic.lean -------------------------------------------------------------------------------- /FLT/Deformations/Algebra/InverseLimit/Topology.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/Algebra/InverseLimit/Topology.lean -------------------------------------------------------------------------------- /FLT/Deformations/Categories.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/Categories.lean -------------------------------------------------------------------------------- /FLT/Deformations/ContinuousRepresentation/IsTopologicalModule.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/ContinuousRepresentation/IsTopologicalModule.lean -------------------------------------------------------------------------------- /FLT/Deformations/IsProartinian.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/IsProartinian.lean -------------------------------------------------------------------------------- /FLT/Deformations/IsResidueAlgebra.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/IsResidueAlgebra.lean -------------------------------------------------------------------------------- /FLT/Deformations/Lemmas.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/Lemmas.lean -------------------------------------------------------------------------------- /FLT/Deformations/LiftFunctor.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/LiftFunctor.lean -------------------------------------------------------------------------------- /FLT/Deformations/Representable.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/Representable.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/AbsoluteGaloisGroup.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/AbsoluteGaloisGroup.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/ContinuousSMulDiscrete.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/ContinuousSMulDiscrete.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/Etale.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/Etale.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/Frobenius.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/Frobenius.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/GaloisRep.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/GaloisRep.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/GaloisRepFamily.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/GaloisRepFamily.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/IntegralClosure.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/IntegralClosure.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/Irreducible.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/Irreducible.lean -------------------------------------------------------------------------------- /FLT/Deformations/RepresentationTheory/Subrepresentation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/RepresentationTheory/Subrepresentation.lean -------------------------------------------------------------------------------- /FLT/Deformations/Subfunctor.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Deformations/Subfunctor.lean -------------------------------------------------------------------------------- /FLT/DivisionAlgebra/Finiteness.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/DivisionAlgebra/Finiteness.lean -------------------------------------------------------------------------------- /FLT/EllipticCurve/Torsion.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/EllipticCurve/Torsion.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/Automorphic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/Automorphic.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/Cyclotomic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/Cyclotomic.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/HardlyRamified/Defs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/HardlyRamified/Defs.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/HardlyRamified/Family.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/HardlyRamified/Family.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/HardlyRamified/Frey.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/HardlyRamified/Frey.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/HardlyRamified/Lift.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/HardlyRamified/Lift.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/HardlyRamified/ModThree.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/HardlyRamified/ModThree.lean -------------------------------------------------------------------------------- /FLT/GaloisRepresentation/HardlyRamified/Threeadic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GaloisRepresentation/HardlyRamified/Threeadic.lean -------------------------------------------------------------------------------- /FLT/GlobalLanglandsConjectures/GLnDefs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GlobalLanglandsConjectures/GLnDefs.lean -------------------------------------------------------------------------------- /FLT/GlobalLanglandsConjectures/GLzero.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GlobalLanglandsConjectures/GLzero.lean -------------------------------------------------------------------------------- /FLT/GroupScheme/FiniteFlat.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/GroupScheme/FiniteFlat.lean -------------------------------------------------------------------------------- /FLT/HaarMeasure/HaarChar/AddEquiv.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/HaarMeasure/HaarChar/AddEquiv.lean -------------------------------------------------------------------------------- /FLT/HaarMeasure/HaarChar/AdeleRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/HaarMeasure/HaarChar/AdeleRing.lean -------------------------------------------------------------------------------- /FLT/HaarMeasure/HaarChar/FiniteDimensional.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/HaarMeasure/HaarChar/FiniteDimensional.lean -------------------------------------------------------------------------------- /FLT/HaarMeasure/HaarChar/Padic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/HaarMeasure/HaarChar/Padic.lean -------------------------------------------------------------------------------- /FLT/HaarMeasure/HaarChar/RealComplex.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/HaarMeasure/HaarChar/RealComplex.lean -------------------------------------------------------------------------------- /FLT/HaarMeasure/HaarChar/Ring.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/HaarMeasure/HaarChar/Ring.lean -------------------------------------------------------------------------------- /FLT/HaarMeasure/MeasurableSpacePadics.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/HaarMeasure/MeasurableSpacePadics.lean -------------------------------------------------------------------------------- /FLT/Hacks/RightActionInstances.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Hacks/RightActionInstances.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/Algebra/Bilinear.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/Algebra/Bilinear.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/Algebra/Hom.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/Algebra/Hom.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/Algebra/Pi.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/Algebra/Pi.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/Algebra/Tower.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/Algebra/Tower.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/FixedPoints/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/FixedPoints/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/IsDirectLimit.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/IsDirectLimit.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/IsQuaternionAlgebra.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/IsQuaternionAlgebra.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/Module/LinearMap/Defs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/Module/LinearMap/Defs.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/Module/Submodule/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/Module/Submodule/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Algebra/Order/AbsoluteValue/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Algebra/Order/AbsoluteValue/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Analysis/Normed/Ring/WithAbs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Analysis/Normed/Ring/WithAbs.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Data/Fin/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Data/Fin/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Data/Set/Prod.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Data/Set/Prod.lean -------------------------------------------------------------------------------- /FLT/Mathlib/GroupTheory/DoubleCoset.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/GroupTheory/DoubleCoset.lean -------------------------------------------------------------------------------- /FLT/Mathlib/GroupTheory/Index.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/GroupTheory/Index.lean -------------------------------------------------------------------------------- /FLT/Mathlib/LinearAlgebra/Determinant.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/LinearAlgebra/Determinant.lean -------------------------------------------------------------------------------- /FLT/Mathlib/LinearAlgebra/Dimension/Constructions.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/LinearAlgebra/Dimension/Constructions.lean -------------------------------------------------------------------------------- /FLT/Mathlib/LinearAlgebra/Matrix/GeneralLinearGroup/Defs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/LinearAlgebra/Matrix/GeneralLinearGroup/Defs.lean -------------------------------------------------------------------------------- /FLT/Mathlib/LinearAlgebra/Pi.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/LinearAlgebra/Pi.lean -------------------------------------------------------------------------------- /FLT/Mathlib/LinearAlgebra/Span/Defs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/LinearAlgebra/Span/Defs.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/AdeleRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/AdeleRing.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/AdicCompletion.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/AdicCompletion.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/FiniteAdeleRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/FiniteAdeleRing.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/InfinitePlace.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/InfinitePlace.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/Padic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Constructions/BorelSpace/Padic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Group/Action.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Group/Action.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Group/Measure.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Group/Measure.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Measure/Regular.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Measure/Regular.lean -------------------------------------------------------------------------------- /FLT/Mathlib/MeasureTheory/Measure/Typeclasses/Finite.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/MeasureTheory/Measure/Typeclasses/Finite.lean -------------------------------------------------------------------------------- /FLT/Mathlib/NumberTheory/NumberField/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/NumberTheory/NumberField/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/NumberTheory/NumberField/Completion.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/NumberTheory/NumberField/Completion.lean -------------------------------------------------------------------------------- /FLT/Mathlib/NumberTheory/Padics/PadicIntegers.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/NumberTheory/Padics/PadicIntegers.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RepresentationTheory/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RepresentationTheory/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/DedekindDomain/FiniteAdeleRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/DedekindDomain/FiniteAdeleRing.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/DedekindDomain/Ideal/Lemmas.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/DedekindDomain/Ideal/Lemmas.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/Ideal/Quotient/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/Ideal/Quotient/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/LocalRing/Defs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/LocalRing/Defs.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/LocalRing/MaximalIdeal/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/LocalRing/MaximalIdeal/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/Localization/BaseChange.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/Localization/BaseChange.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/TensorProduct/Basis.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/TensorProduct/Basis.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/TensorProduct/Pi.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/TensorProduct/Pi.lean -------------------------------------------------------------------------------- /FLT/Mathlib/RingTheory/Valuation/ValuationSubring.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/RingTheory/Valuation/ValuationSubring.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/ContinuousAlgEquiv.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/ContinuousAlgEquiv.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/ContinuousMonoidHom.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/ContinuousMonoidHom.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Group/Quotient.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Group/Quotient.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Group/Units.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Group/Units.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Module/Equiv.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Module/Equiv.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Module/FiniteDimension.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Module/FiniteDimension.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Module/ModuleTopology.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Module/ModuleTopology.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Module/Quotient.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Module/Quotient.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Monoid.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Monoid.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/MulAction.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/MulAction.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Order/Field.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Order/Field.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/RestrictedProduct/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/RestrictedProduct/Basic.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/RestrictedProduct/Equiv.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/RestrictedProduct/Equiv.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/RestrictedProduct/Module.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/RestrictedProduct/Module.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/RestrictedProduct/TopologicalSpace.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/RestrictedProduct/TopologicalSpace.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/UniformRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/UniformRing.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Valued/ValuationTopology.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Valued/ValuationTopology.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Valued/WithVal.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Valued/WithVal.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Algebra/Valued/WithZeroMulInt.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Algebra/Valued/WithZeroMulInt.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Constructions.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Constructions.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/HomToDiscrete.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/HomToDiscrete.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Homeomorph.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Homeomorph.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/Instances/Matrix.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/Instances/Matrix.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/MetricSpace/ProperSpace/InfinitePlace.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/MetricSpace/ProperSpace/InfinitePlace.lean -------------------------------------------------------------------------------- /FLT/Mathlib/Topology/MetricSpace/Pseudo/Matrix.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Mathlib/Topology/MetricSpace/Pseudo/Matrix.lean -------------------------------------------------------------------------------- /FLT/NumberField/AdeleRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/AdeleRing.lean -------------------------------------------------------------------------------- /FLT/NumberField/Completion/Finite.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/Completion/Finite.lean -------------------------------------------------------------------------------- /FLT/NumberField/Completion/Infinite.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/Completion/Infinite.lean -------------------------------------------------------------------------------- /FLT/NumberField/DiscriminantBounds.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/DiscriminantBounds.lean -------------------------------------------------------------------------------- /FLT/NumberField/FiniteAdeleRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/FiniteAdeleRing.lean -------------------------------------------------------------------------------- /FLT/NumberField/InfiniteAdeleRing.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/InfiniteAdeleRing.lean -------------------------------------------------------------------------------- /FLT/NumberField/InfinitePlace/Dimension.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/InfinitePlace/Dimension.lean -------------------------------------------------------------------------------- /FLT/NumberField/InfinitePlace/Extension.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/InfinitePlace/Extension.lean -------------------------------------------------------------------------------- /FLT/NumberField/InfinitePlace/WeakApproximation.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/InfinitePlace/WeakApproximation.lean -------------------------------------------------------------------------------- /FLT/NumberField/Padics/RestrictedProduct.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/NumberField/Padics/RestrictedProduct.lean -------------------------------------------------------------------------------- /FLT/Patching/Algebra.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Algebra.lean -------------------------------------------------------------------------------- /FLT/Patching/Module.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Module.lean -------------------------------------------------------------------------------- /FLT/Patching/Over.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Over.lean -------------------------------------------------------------------------------- /FLT/Patching/REqualsT.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/REqualsT.lean -------------------------------------------------------------------------------- /FLT/Patching/System.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/System.lean -------------------------------------------------------------------------------- /FLT/Patching/Ultraproduct.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Ultraproduct.lean -------------------------------------------------------------------------------- /FLT/Patching/Utils/AdicTopology.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Utils/AdicTopology.lean -------------------------------------------------------------------------------- /FLT/Patching/Utils/Depth.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Utils/Depth.lean -------------------------------------------------------------------------------- /FLT/Patching/Utils/InverseLimit.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Utils/InverseLimit.lean -------------------------------------------------------------------------------- /FLT/Patching/Utils/Lemmas.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Utils/Lemmas.lean -------------------------------------------------------------------------------- /FLT/Patching/Utils/StructureFiniteness.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Utils/StructureFiniteness.lean -------------------------------------------------------------------------------- /FLT/Patching/Utils/TopologicallyFG.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/Utils/TopologicallyFG.lean -------------------------------------------------------------------------------- /FLT/Patching/VanishingFilter.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/Patching/VanishingFilter.lean -------------------------------------------------------------------------------- /FLT/QuaternionAlgebra/NumberField.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/QuaternionAlgebra/NumberField.lean -------------------------------------------------------------------------------- /FLT/TateCurve/TateCurve.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FLT/TateCurve/TateCurve.lean -------------------------------------------------------------------------------- /FermatsLastTheorem.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/FermatsLastTheorem.lean -------------------------------------------------------------------------------- /GENERAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/GENERAL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/README.md -------------------------------------------------------------------------------- /blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blog.md -------------------------------------------------------------------------------- /blueprint/notes_on_how_blueprint_works.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/notes_on_how_blueprint_works.txt -------------------------------------------------------------------------------- /blueprint/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/requirements.txt -------------------------------------------------------------------------------- /blueprint/src/FLT.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/FLT.bib -------------------------------------------------------------------------------- /blueprint/src/TODO: -------------------------------------------------------------------------------- 1 | web.tex needs pointing to my github project 2 | -------------------------------------------------------------------------------- /blueprint/src/blueprint.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/blueprint.sty -------------------------------------------------------------------------------- /blueprint/src/chapter/AdeleMiniproject.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/AdeleMiniproject.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/FrobeniusProject.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/FrobeniusProject.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/FujisakiProject.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/FujisakiProject.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/HaarCharacterProject.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/HaarCharacterProject.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/HeckeOperatorProject.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/HeckeOperatorProject.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/QuaternionAlgebraProject.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/QuaternionAlgebraProject.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/biblio.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/biblio.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch01introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch01introduction.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch02reductions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch02reductions.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch03freyold.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch03freyold.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch03freyreduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch03freyreduction.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch04overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch04overview.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch05automorphicformexample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch05automorphicformexample.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch06automorphicrepresentations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch06automorphicrepresentations.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/ch07exampleGLn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/ch07exampleGLn.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/chtopbestiary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/chtopbestiary.tex -------------------------------------------------------------------------------- /blueprint/src/chapter/global_langlands.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/chapter/global_langlands.tex -------------------------------------------------------------------------------- /blueprint/src/content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/content.tex -------------------------------------------------------------------------------- /blueprint/src/extra_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/extra_styles.css -------------------------------------------------------------------------------- /blueprint/src/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/latexmkrc -------------------------------------------------------------------------------- /blueprint/src/macro/common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/macro/common.tex -------------------------------------------------------------------------------- /blueprint/src/macro/print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/macro/print.tex -------------------------------------------------------------------------------- /blueprint/src/macro/web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/macro/web.tex -------------------------------------------------------------------------------- /blueprint/src/plastex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/plastex.cfg -------------------------------------------------------------------------------- /blueprint/src/print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/print.tex -------------------------------------------------------------------------------- /blueprint/src/stylecours.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/stylecours.css -------------------------------------------------------------------------------- /blueprint/src/util.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/util.sty -------------------------------------------------------------------------------- /blueprint/src/web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/src/web.tex -------------------------------------------------------------------------------- /blueprint/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/blueprint/tasks.py -------------------------------------------------------------------------------- /docs/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/mathjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/_includes/mathjax.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/upstreaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/docs/upstreaming.md -------------------------------------------------------------------------------- /lake-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/lake-manifest.json -------------------------------------------------------------------------------- /lakefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/lakefile.toml -------------------------------------------------------------------------------- /lean-toolchain: -------------------------------------------------------------------------------- 1 | leanprover/lean4:v4.26.0-rc2 -------------------------------------------------------------------------------- /scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/scripts/build_docs.sh -------------------------------------------------------------------------------- /scripts/install_pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/scripts/install_pre-push.sh -------------------------------------------------------------------------------- /scripts/nolints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/scripts/nolints.json -------------------------------------------------------------------------------- /scripts/noshake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/scripts/noshake.json -------------------------------------------------------------------------------- /scripts/pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/scripts/pre-push.sh -------------------------------------------------------------------------------- /scripts/run_before_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/scripts/run_before_push.sh -------------------------------------------------------------------------------- /scripts/upstreaming_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/scripts/upstreaming_dashboard.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/FLT/HEAD/tasks.py --------------------------------------------------------------------------------