File tree Expand file tree Collapse file tree
Mathlib/MeasureTheory/Measure Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1094,22 +1094,18 @@ instance {_ : MeasurableSpace α} : InfSet (Measure α) :=
10941094theorem sInf_apply (hs : MeasurableSet s) : sInf m s = sInf (toOuterMeasure '' m) s :=
10951095 toMeasure_apply _ _ hs
10961096
1097- set_option backward.privateInPublic true in
10981097private theorem measure_sInf_le (h : μ ∈ m) : sInf m ≤ μ :=
10991098 have : sInf (toOuterMeasure '' m) ≤ μ.toOuterMeasure := sInf_le (mem_image_of_mem _ h)
11001099 le_iff.2 fun s hs => by rw [sInf_apply hs]; exact this s
11011100
1102- set_option backward.privateInPublic true in
11031101private theorem measure_le_sInf (h : ∀ μ' ∈ m, μ ≤ μ') : μ ≤ sInf m :=
11041102 have : μ.toOuterMeasure ≤ sInf (toOuterMeasure '' m) :=
11051103 le_sInf <| forall_mem_image.2 fun _ hμ ↦ toOuterMeasure_le.2 <| h _ hμ
11061104 le_iff.2 fun s hs => by rw [sInf_apply hs]; exact this s
11071105
1108- set_option backward.privateInPublic true in
1109- set_option backward.privateInPublic.warn false in
11101106instance instCompleteSemilatticeInf {_ : MeasurableSpace α} :
11111107 CompleteSemilatticeInf (Measure α) where
1112- isGLB_sInf _ := ⟨fun x ↦ measure_sInf_le, fun _ ↦ by exact measure_le_sInf⟩
1108+ isGLB_sInf _ := private ⟨fun _ ↦ measure_sInf_le, fun _ ↦ measure_le_sInf⟩
11131109
11141110instance instCompleteLattice {_ : MeasurableSpace α} : CompleteLattice (Measure α) :=
11151111 { completeLatticeOfCompleteSemilatticeInf (Measure α) with
You can’t perform that action at this time.
0 commit comments