Commit 2024-03-10 19:38 38155ec4
View on Github →refactor(UniformSpace): drop separationRel
(#10644)
We had duplicated API between topological spaces and uniform spaces.
In this PR I mostly deduplicate it with some exceptions:
SeparationQuotient.lift'
andSeparationQuotient.map
are leftovers from the old version that are designed to work with uniform spaces;- probably, some theorems/instances still assume
UniformSpace
whenTopologicalSpace
would work. Outside ofUniformSpace/Separation
, I mostly changedSeparatedSpace
toT0Space
andseparationRel
toInseparable
. I also rewrote a few proofs that were broken by the API change. Fixes #2031