File tree Expand file tree Collapse file tree
Mathlib/MeasureTheory/Integral Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -792,10 +792,7 @@ section PrimitiveIci
792792theorem IntegrableOn.continuousOn_primitive_Ici [NoAtoms μ] {a : ℝ}
793793 (hf : IntegrableOn f (Ici a) μ) :
794794 ContinuousOn (fun b ↦ ∫ x in Ici b, f x ∂μ) (Ici a) := by
795- conv =>
796- arg 1
797- ext b
798- rw [integral_Ici_eq_integral_Ioi]
795+ simp_rw [integral_Ici_eq_integral_Ioi]
799796 exact (hf.mono_set Ioi_subset_Ici_self).continuousOn_primitive_Ioi
800797
801798end PrimitiveIci
@@ -805,10 +802,7 @@ section PrimitiveIci
805802theorem IntegrableOn.continuousOn_primitive_Iic [NoAtoms μ] {a : ℝ}
806803 (hf : IntegrableOn f (Iic a) μ) :
807804 ContinuousOn (fun b ↦ ∫ x in Iic b, f x ∂μ) (Iic a) := by
808- conv =>
809- arg 1
810- ext b
811- rw [integral_Iic_eq_integral_Iio]
805+ simp_rw [integral_Iic_eq_integral_Iio]
812806 exact (hf.mono_set Iio_subset_Iic_self).continuousOn_primitive_Iio
813807
814808end PrimitiveIci
You can’t perform that action at this time.
0 commit comments