Skip to content

Commit 8fb7edc

Browse files
authored
Merge pull request #132 from math-comp/cleanup
Isolate normed structures from topological structures
2 parents 80bce5b + 8e2bf25 commit 8fb7edc

9 files changed

Lines changed: 823 additions & 851 deletions

File tree

AUTHORS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
- Pierre-Yves Strub, École polytechnique
88

99
# Acknowledgments
10-
- `hierarchy.v` is a reimplementation of file `Hierarchy.v` from the
11-
library Coquelicot by Sylvie Boldo, Catherine Lelay, and Guillaume
12-
Melquiond (http://coquelicot.saclay.inria.fr/)
10+
- `topology.v` and `normedtype.v` contain a reimplementation of file
11+
`Hierarchy.v` from the library Coquelicot by Sylvie Boldo, Catherine Lelay,
12+
and Guillaume Melquiond (http://coquelicot.saclay.inria.fr/)
1313
- our proof of Zorn's Lemma in `set.v` is a reimplementation of the one by
1414
Daniel Schepler (https://github.com/coq-contribs/zorns-lemma); we also took
1515
inspiration from his work on topology

FILES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- `posnum.v`
66
- `classical_set.v`
77
- `topology.v`
8-
- `hierarchy.v`
8+
- `normedtype.v`
99
- `landau.v`
1010
- `derive.v`
1111
- `README.md`

_CoqProject

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ classical_sets.v
1010
Rstruct.v
1111
Rbar.v
1212
topology.v
13-
hierarchy.v
13+
normedtype.v
1414
forms.v
1515
derive.v
1616
summability.v

derive.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Require Import Reals.
33
From mathcomp Require Import ssreflect ssrfun ssrbool ssrnat eqtype choice.
44
From mathcomp Require Import ssralg ssrnum fintype bigop matrix interval.
55
Require Import boolp reals Rstruct Rbar.
6-
Require Import classical_sets posnum topology hierarchy landau forms.
6+
Require Import classical_sets posnum topology normedtype landau forms.
77

88
Set Implicit Arguments.
99
Unset Strict Implicit.
@@ -1307,7 +1307,7 @@ have {imf_ltsup} imf_ltsup : forall t, t \in `[a, b] -> f t < sup imf.
13071307
apply/eqP; rewrite eqr_le supleft sup_upper_bound => //.
13081308
by rewrite !inE; apply/asboolP/imageP.
13091309
have invf_cont : {in `[a, b], continuous (fun t => 1 / (sup imf - f t))}.
1310-
move=> t tab; apply: lim_inv.
1310+
move=> t tab; apply: (@lim_inv _ [filter of t]).
13111311
by rewrite neqr_lt subr_gt0 orbC imf_ltsup.
13121312
by apply: lim_add; [apply: continuous_cst|apply: lim_opp; apply:fcont].
13131313
have [M imVfltM] : bounded ((fun t => 1 / (sup imf - f t)) @`

landau.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Require Import Reals.
33
From Coq Require Import ssreflect ssrfun ssrbool.
44
From mathcomp Require Import ssrnat eqtype choice fintype bigop ssralg ssrnum.
55
Require Import boolp reals Rstruct Rbar.
6-
Require Import classical_sets posnum topology hierarchy.
6+
Require Import classical_sets posnum topology normedtype.
77

88
(******************************************************************************)
99
(* BACHMANN-LANDAU NOTATIONS : BIG AND LITTLE O *)

misc/uniform_bigO.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Require Import Reals.
33
From Coq Require Import ssreflect ssrfun ssrbool.
44
From mathcomp Require Import ssrnat eqtype choice fintype bigop ssralg ssrnum.
55
Require Import boolp reals Rstruct Rbar.
6-
Require Import classical_sets posnum topology hierarchy landau.
6+
Require Import classical_sets posnum topology normedtype landau.
77

88
Set Implicit Arguments.
99
Unset Strict Implicit.

0 commit comments

Comments
 (0)