Skip to content

Commit 7528cc1

Browse files
Rename cumulative (typo?) (#1675)
* rename cumulative --------- Co-authored-by: affeldt-aist <[email protected]>
1 parent c2e18be commit 7528cc1

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG_UNRELEASED.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
### Renamed
1010

11+
- in `lebesgue_stieltjes_measure.v`:
12+
+ `cumulativeNy0` -> `cumulativeNy`
13+
+ `cumulativey1` -> `cumulativey`
14+
1115
### Generalized
1216

1317
### Deprecated

theories/lebesgue_stieltjes_measure.v

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -601,15 +601,15 @@ Hint Extern 0 (measurable [set _]) => solve [apply: measurable_set1] : core.
601601
Hint Extern 0 (measurable [set` _] ) => exact: measurable_itv : core.
602602

603603
HB.mixin Record isCumulativeBounded (R : numFieldType) (l r : R) (f : R -> R) := {
604-
cumulativeNy0 : f @ -oo --> l ;
605-
cumulativey1 : f @ +oo --> r }.
604+
cumulativeNy : f @ -oo --> l ;
605+
cumulativey : f @ +oo --> r }.
606606

607607
#[short(type=cumulativeBounded)]
608608
HB.structure Definition CumulativeBounded (R : numFieldType) (l r : R) :=
609609
{ f of isCumulativeBounded R l r f & Cumulative R f}.
610610

611-
Arguments cumulativeNy0 {R l r} s.
612-
Arguments cumulativey1 {R l r} s.
611+
Arguments cumulativeNy {R l r} s.
612+
Arguments cumulativey {R l r} s.
613613

614614
Section probability_measure_of_lebesgue_stieltjes_mesure.
615615
Context {R : realType} (f : cumulativeBounded (0:R) (1:R)).
@@ -629,9 +629,9 @@ have : (lsf \o I) n @[n --> \oo] --> 1%E.
629629
by rewrite wlength_itv_bnd// ge0_cp.
630630
rewrite -(sube0 1); apply: cvgeB => //.
631631
- by apply/cvg_EFin; [near=> F
632-
|exact/(cvg_comp _ _ (@cvgr_idn R))/cumulativey1].
632+
|exact/(cvg_comp _ _ (@cvgr_idn R))/cumulativey].
633633
- apply/cvg_EFin; [by near=> F|apply: (cvg_ninftyP _ _).1 => //].
634-
exact: cumulativeNy0.
634+
exact: cumulativeNy.
635635
by apply: (cvg_comp _ _ (@cvgr_idn R)); rewrite ninfty.
636636
have : (lsf \o I) n @[n --> \oo] --> lsf (\bigcup_n I n).
637637
apply: nondecreasing_cvg_mu; rewrite /I//; first exact: bigcup_measurable.

theories/probability.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ have : lsf `]-n%:R, r] @[n --> \oo] --> (f r)%:E.
269269
rewrite measurable_mu_extE/= ?wlength_itv_bnd//; last exact: is_ocitv.
270270
by rewrite lerNl; near: n; exact: nbhs_infty_ger.
271271
rewrite -[X in _ --> X](sube0 (f r)%:E); apply: (cvgeB _ (cvg_cst _ )) => //.
272-
apply: (cvg_comp _ _ (cvg_comp _ _ _ (cumulativeNy0 f))) => //.
272+
apply: (cvg_comp _ _ (cvg_comp _ _ _ (cumulativeNy f))) => //.
273273
by apply: (cvg_comp _ _ cvgr_idn); rewrite ninfty.
274274
have : lsf `]- n%:R, r] @[n --> \oo] --> lsf (\bigcup_n `]-n%:R, r]%classic).
275275
apply: nondecreasing_cvg_mu; rewrite /I//; first exact: bigcup_measurable.

0 commit comments

Comments
 (0)