Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Mathlib/RingTheory/DedekindDomain/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ The integral closure condition is independent of the choice of field of fraction
use `isDedekindRing_iff` to prove `IsDedekindRing` for a given `fraction_map`.
-/
class IsDedekindRing : Prop
extends IsNoetherian A A, DimensionLEOne A, IsIntegralClosure A A (FractionRing A)
extends IsNoetherianRing A, DimensionLEOne A, IsIntegralClosure A A (FractionRing A)

/-- An integral domain is a Dedekind domain if and only if it is
Noetherian, has dimension ≤ 1, and is integrally closed in a given fraction field.
Expand Down
2 changes: 1 addition & 1 deletion Mathlib/RingTheory/DedekindDomain/Dvr.lean
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ localization at every nonzero prime is a discrete valuation ring.
This is equivalent to `IsDedekindDomain`.
-/
class IsDedekindDomainDvr : Prop extends IsNoetherian A A where
class IsDedekindDomainDvr : Prop extends IsNoetherianRing A where
is_dvr_at_nonzero_prime : ∀ P ≠ (⊥ : Ideal A), ∀ _ : P.IsPrime,
IsDiscreteValuationRing (Localization.AtPrime P)

Expand Down
Loading