Skip to content

Commit

Permalink
lolwut
Browse files Browse the repository at this point in the history
  • Loading branch information
grunweg committed Mar 11, 2024
1 parent b4aa595 commit d93ec60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mathlib/MeasureTheory/MeasurableSpace/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ theorem le_map_comap : m ≤ (m.comap g).map g :=

end Functors

@[simp] theorem map_const {m} (b : β) : MeasurableSpace.map (fun _a : α ↦ b) m = ⊤ := by
refine eq_top_iff.2 <| fun s ?_
by_cases b ∈ s <;> simp [*, map_def] <;> rw [Set.preimage_id'] <;> simp
@[simp] theorem map_const {m} (b : β) : MeasurableSpace.map (fun _a : α ↦ b) m = ⊤ :=
eq_top_iff.2 <| fun s
by_cases b ∈ s <;> simp [*, map_def] <;> rw [Set.preimage_id'] <;> simp
#align measurable_space.map_const MeasurableSpace.map_const

set_option tactic.skipAssignedInstances false in
Expand Down

0 comments on commit d93ec60

Please sign in to comment.