Commit 2024-07-19 18:48 736794fe
View on Github →chore: Split and move RingTheory.Ideal.LocalRing (#14829)
Currently, LocalRing is defined in the (long) file Mathlib.RingTheory.Ideal.LocalRing
. We also have a folder Mathlib.RingTheory.LocalRing
that contains only one (advanced) file Module
.
The file Mathlib.RingTheory.Ideal.LocalRing
is moved an splitted in several files. The new structure is
├── RingTheory.LocalRing
│ ├── MaximalIdeal
│ │ ├── Defs
│ │ ├── Basic
│ ├── RingHom
│ │ ├── Defs
│ │ ├── Basic
│ ├── ResidueField
│ │ ├── Defs
│ │ ├── Basic
│ ├── Defs
│ ├── Basic
└── ...