Skip to content

Commit 25817d6

Browse files
committed
chore(Order/CompleteLattice/Basic): fix a name (leanprover-community#34673)
Rename `sInf_upperBounds_eq_csSup` to `sInf_upperBounds_eq_sSup`.
1 parent 2837dc2 commit 25817d6

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Mathlib/Order/CompleteLattice/Basic.lean

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,11 @@ theorem sInf_eq_iInf {s : Set α} : sInf s = ⨅ a ∈ s, a :=
445445
lemma sSup_lowerBounds_eq_sInf (s : Set α) : sSup (lowerBounds s) = sInf s :=
446446
(isLUB_sSup _).unique (isGLB_sInf _).isLUB
447447

448-
lemma sInf_upperBounds_eq_csSup (s : Set α) : sInf (upperBounds s) = sSup s :=
448+
lemma sInf_upperBounds_eq_sSup (s : Set α) : sInf (upperBounds s) = sSup s :=
449449
(isGLB_sInf _).unique (isLUB_sSup _).isGLB
450450

451+
@[deprecated (since := "2026-02-01")] alias sInf_upperBounds_eq_csSup := sInf_upperBounds_eq_sSup
452+
451453
theorem Monotone.le_map_iSup [CompleteLattice β] {f : α → β} (hf : Monotone f) :
452454
⨆ i, f (s i) ≤ f (iSup s) :=
453455
iSup_le fun _ => hf <| le_iSup _ _

Mathlib/Order/LiminfLimsup.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ theorem HasBasis.limsup_eq_iInf_iSup {p : ι → Prop} {s : ι → Set β} {f :
392392
(h.map u).limsSup_eq_iInf_sSup.trans <| by simp only [sSup_image]
393393

394394
lemma limsSup_principal_eq_sSup (s : Set α) : limsSup (𝓟 s) = sSup s := by
395-
simpa only [limsSup, eventually_principal] using sInf_upperBounds_eq_csSup s
395+
simpa only [limsSup, eventually_principal] using sInf_upperBounds_eq_sSup s
396396

397397
lemma limsInf_principal_eq_sInf (s : Set α) : limsInf (𝓟 s) = sInf s := by
398398
simpa only [limsInf, eventually_principal] using sSup_lowerBounds_eq_sInf s

0 commit comments

Comments
 (0)