Skip to content

Commit b97756a

Browse files
committed
fixes
- fix changelog - spurious parentheses - tentative CI fix
1 parent 0872610 commit b97756a

File tree

3 files changed

+12
-24
lines changed

3 files changed

+12
-24
lines changed

CHANGELOG_UNRELEASED.md

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@
6363
+ `measurable_function.v`
6464
+ `measure.v`
6565

66+
- in `realfun.v`:
67+
+ lemmas `derivable_oy_continuous_within_itvcy`,
68+
`derivable_oy_continuous_within_itvNyc`
69+
+ lemmas `derivable_oo_continuousW`,
70+
`derivable_oy_continuousWoo`,
71+
`derivable_oy_continuousW`,
72+
`derivable_Nyo_continuousWoo`,
73+
`derivable_Nyo_continuousW`
74+
6675
- in `pseudometric_normed_Zmodule.v`:
6776
+ lemma `continuous_comp_cvg`
6877

@@ -72,14 +81,6 @@
7281
- in `ftc.v`:
7382
+ lemmas `integration_by_substitution_onem`, `Rintegration_by_substitution_onem`
7483

75-
- in `realfun.v`:
76-
+ lemmas `derivable_oy_continuous_within_itvcy`,
77-
`derivable_oy_continuous_within_itvNyc`
78-
+ lemmas `derivable_oo_continuousW`,
79-
`derivable_oy_continuousWoo`,
80-
`derivable_oy_continuousW`,
81-
`derivable_Nyo_continuousWoo`,
82-
`derivable_Nyo_continuousW`
8384
- in `probability.v`:
8485
+ lemmas `continuous_onemXn`, `onemXn_derivable`,
8586
`derivable_oo_continuous_bnd_onemXnMr`, `derive_onemXn`,
@@ -380,19 +381,6 @@
380381
+ `le_ereal_inf` -> `ereal_inf_le_tmp`
381382
+ `lb_ereal_inf` -> `le_ereal_inf_tmp`
382383
+ `ereal_sup_ge` -> `le_ereal_sup_tmp`
383-
- in `measure.v`
384-
+ definition `ess_sup` moved to `ess_sup_inf.v`
385-
386-
- in `convex.v`
387-
+ lemma `conv_gt0` to `convR_gt0`
388-
- in `tvs.v`
389-
+ HB class `TopologicalNmodule` moved to `PreTopologicalNmodule`
390-
+ HB class `TopologicalZmodule` moved to `PreTopologicalZmodule`
391-
+ HB class `TopologicalLmodule` moved to `PreTopologicalLmodule`
392-
+ structure `topologicalLmodule` moved to `preTopologicalLmodule`
393-
+ HB class `UniformNmodule` moved to `PreUniformNmodule`
394-
+ HB class `UniformZmodule` moved to `PreUniformZmodule`
395-
+ HB class `UniformLmodule` moved to `PreUniformLmodule`
396384

397385
- in `probability.v`:
398386
+ `bernoulli` -> `bernoulli_prob`

theories/ftc.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1801,8 +1801,8 @@ Local Open Scope ereal_scope.
18011801
Lemma integration_by_substitution_onem (G : R -> R) (r : R) :
18021802
(0 < r <= 1)%R ->
18031803
{within `[0%R, r], continuous G} ->
1804-
(\int[mu]_(x in `[0%R, r]) (G x)%:E =
1805-
\int[mu]_(x in `[`1-r, 1%R]) (G `1-x)%:E).
1804+
\int[mu]_(x in `[0%R, r]) (G x)%:E =
1805+
\int[mu]_(x in `[`1-r, 1%R]) (G `1-x)%:E.
18061806
Proof.
18071807
move=> r01 cG.
18081808
have := @integration_by_substitution_decreasing R onem G `1-r 1.

theories/probability.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2756,7 +2756,7 @@ apply: integrableB => //=.
27562756
by rewrite lee_fin invr_ge0 beta_fun_ge0.
27572757
rewrite (_ : integral _ _ _ = \int[lebesgue_measure]_x
27582758
(((@XMonemX R a.-1 b.-1) \_ `[0, 1]) x)%:E)%E; last first.
2759-
rewrite integral_mkcond/=; apply: eq_integral => /= x _.
2759+
rewrite [LHS]integral_mkcond/=; apply: eq_integral => /= x _.
27602760
by rewrite !patchE; case: ifPn => // ->.
27612761
have /integrableP[_] := @integrable_XMonemX_restrict R a b.
27622762
under eq_integral.

0 commit comments

Comments
 (0)