Commit 2024-03-27 11:32 85b063b5
View on Github →feat(DedekindDomain.Ideal): remove Domain assumption from DedekindDomain (#11527)
Probably because in mathlib4
the definition IsDedekindDomain
extends Domain
, and this was not the case in mathlib3
, there are unused hypothesis of the form
variable [IsDomain R] [IsDedekindDomain R]
and this PR removes the first one, that can be inferred by the second, both in variable declarations and in theorem/definition assumptions. A regex search has been performed on the library to search for all occurrences and none is left.