Skip to content

Commit a53018d

Browse files
affeldt-aistmkerjean
authored andcommitted
fix
1 parent 3f93cbd commit a53018d

4 files changed

Lines changed: 3 additions & 7 deletions

File tree

theories/charge.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ Unset Strict Implicit.
9191
Unset Printing Implicit Defensive.
9292

9393
Import Order.TTheory GRing.Theory Num.Def Num.Theory.
94-
Import numFieldTopology.Exports.
9594
Import numFieldNormedType.Exports.
9695

9796
Local Open Scope ring_scope.

theories/ftc.v

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Set Implicit Arguments.
2424
Unset Strict Implicit.
2525
Unset Printing Implicit Defensive.
2626
Import Order.TTheory GRing.Theory Num.Def Num.Theory.
27-
Import numFieldTopology.Exports.
2827
Import numFieldNormedType.Exports.
2928

3029
Local Open Scope classical_set_scope.
@@ -39,7 +38,7 @@ Implicit Types (f : R -> R) (a : itv_bound R).
3938
Let FTC0 f a : mu.-integrable setT (EFin \o f) ->
4039
let F x := (\int[mu]_(t in [set` Interval a (BRight x)]) f t)%R in
4140
forall x, a < BRight x -> lebesgue_pt f x ->
42-
h^-1 *: (F (h + x) - F x) @[h --> (0:R)%R^'] --> f x.
41+
h^-1 *: (F (h + x) - F x) @[h --> 0%R^'] --> f x.
4342
Proof.
4443
move=> intf F x ax fx.
4544
have locf : locally_integrable setT f.
@@ -191,7 +190,7 @@ Let FTC0_restrict f a x (u : R) : (x < u)%R ->
191190
mu.-integrable [set` Interval a (BRight u)] (EFin \o f) ->
192191
let F y := (\int[mu]_(t in [set` Interval a (BRight y)]) f t)%R in
193192
a < BRight x -> lebesgue_pt f x ->
194-
h^-1 *: (F (h + x) - F x) @[h --> ((0:R)%R^')] --> f x.
193+
h^-1 *: (F (h + x) - F x) @[h --> (0%R^')] --> f x.
195194
Proof.
196195
move=> xu + F ax fx.
197196
rewrite integrable_mkcond//= (restrict_EFin f) => intf.
@@ -354,7 +353,7 @@ Unshelve. all: by end_near. Qed.
354353

355354
Lemma parameterized_integral_cvg_left a b (f : R -> R) : a < b ->
356355
mu.-integrable `[a, b] (EFin \o f) ->
357-
int a x f @[x --> a] --> (0:R).
356+
int a x f @[x --> a] --> 0.
358357
Proof.
359358
move=> ab intf; pose fab := f \_ `[a, b].
360359
have intfab : mu.-integrable `[a, b] (EFin \o fab).

theories/lebesgue_integral.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ Set Implicit Arguments.
8282
Unset Strict Implicit.
8383
Unset Printing Implicit Defensive.
8484
Import Order.TTheory GRing.Theory Num.Def Num.Theory.
85-
Import numFieldTopology.Exports.
8685
Import numFieldNormedType.Exports.
8786
From mathcomp Require Import mathcomp_extra.
8887

theories/lebesgue_measure.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ Set Implicit Arguments.
6161
Unset Strict Implicit.
6262
Unset Printing Implicit Defensive.
6363
Import Order.TTheory GRing.Theory Num.Def Num.Theory.
64-
Import numFieldTopology.Exports.
6564
Import numFieldNormedType.Exports.
6665

6766
Local Open Scope classical_set_scope.

0 commit comments

Comments
 (0)