Skip to content

Commit 800800c

Browse files
affeldt-aistproux01
authored andcommitted
fixes #1315
1 parent af43213 commit 800800c

File tree

7 files changed

+1731
-1748
lines changed

7 files changed

+1731
-1748
lines changed

CHANGELOG_UNRELEASED.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@
100100
- in `normedtype.v`:
101101
+ lemmas `ninfty`, `cvgy_compNP`
102102

103+
- new file `measurable_realfun.v`
104+
+ with as contents the first half of the file `lebesgue_measure.v`
105+
103106
### Changed
104107

105108
- in `lebesgue_integral.v`
@@ -126,6 +129,9 @@
126129
- in `normedtype.v`:
127130
+ lemma `cvgyNP` renamed to `cvgNy_compN` and generalized
128131

132+
- file `lebesgue_measure.v`
133+
+ first half moved to a new file `measurable_realfun.v`
134+
129135
### Renamed
130136

131137
- in `measure.v`
@@ -232,6 +238,22 @@
232238
`__deprecated__dvg_ereal_cvg`, `__deprecated__ereal_cvg_real`
233239
(were deprecated since 0.6.0)
234240

241+
- in `derive.v`:
242+
+ notations `le0r_cvg_map`, `ler0_cvg_map`, `ler_cvg_map`
243+
(deprecated since 0.6.0)
244+
+ lemmas `__deprecated__le0r_cvg_map`, `__deprecated__ler0_cvg_map`,
245+
`__deprecated__ler_cvg_map`
246+
(deprecated since 0.6.0)
247+
248+
- in `normedtype.v`
249+
+ notations `cvg_distP`, `cvg_distW`, `continuous_cvg_dist`, `cvg_dist2P`,
250+
`cvg_gt_ge`, `cvg_lt_le_`, `linear_bounded0`
251+
(deprecated since 0.6.0)
252+
+ lemmas `__deprecated__cvg_distW`, `__deprecated__continuous_cvg_dist`,
253+
`__deprecated__cvg_gt_ge`, `__deprecated__cvg_lt_le`,
254+
`__deprecated__linear_bounded0 `
255+
(deprecated since 0.6.0)
256+
235257
### Infrastructure
236258

237259
### Misc

_CoqProject

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ theories/sequences.v
7777
theories/exp.v
7878
theories/trigo.v
7979
theories/esum.v
80+
theories/measurable_realfun.v
8081
theories/lebesgue_measure.v
8182
theories/lebesgue_stieltjes_measure.v
8283
theories/forms.v

theories/Make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ sequences.v
4444
exp.v
4545
trigo.v
4646
esum.v
47+
measurable_realfun.v
4748
lebesgue_measure.v
4849
forms.v
4950
derive.v

theories/derive.v

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1463,31 +1463,6 @@ by apply: xe_A => //; rewrite eq_sym.
14631463
Qed.
14641464
Arguments cvg_at_leftE {R V} f x.
14651465

1466-
Lemma __deprecated__le0r_cvg_map (R : realFieldType) (T : topologicalType)
1467-
(F : set_system T) (FF : ProperFilter F) (f : T -> R) :
1468-
(\forall x \near F, 0 <= f x) -> cvg (f @ F) -> 0 <= lim (f @ F).
1469-
Proof. by move=> ? ?; rewrite limr_ge. Qed.
1470-
#[deprecated(since="mathcomp-analysis 0.6.0",
1471-
note="generalized by `limr_ge`")]
1472-
Notation le0r_cvg_map := __deprecated__le0r_cvg_map (only parsing).
1473-
1474-
Lemma __deprecated__ler0_cvg_map (R : realFieldType) (T : topologicalType)
1475-
(F : set_system T) (FF : ProperFilter F) (f : T -> R) :
1476-
(\forall x \near F, f x <= 0) -> cvg (f @ F) -> lim (f @ F) <= 0.
1477-
Proof. by move=> ? ?; rewrite limr_le. Qed.
1478-
#[deprecated(since="mathcomp-analysis 0.6.0",
1479-
note="generalized by `limr_le`")]
1480-
Notation ler0_cvg_map := __deprecated__ler0_cvg_map (only parsing).
1481-
1482-
Lemma __deprecated__ler_cvg_map (R : realFieldType) (T : topologicalType)
1483-
(F : set_system T) (FF : ProperFilter F) (f g : T -> R) :
1484-
(\forall x \near F, f x <= g x) -> cvg (f @ F) -> cvg (g @ F) ->
1485-
lim (f @ F) <= lim (g @ F).
1486-
Proof. by move=> ? ? ?; rewrite ler_lim. Qed.
1487-
#[deprecated(since="mathcomp-analysis 0.6.0",
1488-
note="subsumed by `ler_lim`")]
1489-
Notation ler_cvg_map := __deprecated__ler_cvg_map (only parsing).
1490-
14911466
Lemma derive1_at_max (R : realFieldType) (f : R -> R) (a b c : R) :
14921467
a <= b -> (forall t, t \in `]a, b[%R -> derivable f t 1) -> c \in `]a, b[%R ->
14931468
(forall t, t \in `]a, b[%R -> f t <= f c) -> is_derive c 1 f 0.

0 commit comments

Comments
 (0)