Skip to content

Commit b09d4e9

Browse files
committed
Add a coq-mathcomp-reals package
1 parent 24e4799 commit b09d4e9

27 files changed

Lines changed: 89 additions & 37 deletions

_CoqProject

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
-Q classical mathcomp.classical
2+
-Q reals mathcomp.reals
3+
-Q reals_stdlib mathcomp.reals_stdlib
24
-Q theories mathcomp.analysis
5+
-Q analysis_stdlib mathcomp.analysis_stdlib
36

47
-arg -w -arg -parsing
58
-arg -w -arg +undeclared-scope
@@ -20,26 +23,33 @@ classical/fsbigop.v
2023
classical/set_interval.v
2124
classical/classical_orders.v
2225
classical/filter.v
26+
reals/constructive_ereal.v
27+
reals/real_interval.v
28+
reals/signed.v
29+
reals/itv.v
30+
reals/prodnormedzmodule.v
31+
reals/nsatz_realtype.v
32+
reals/all_reals.v
33+
reals/altreals/xfinmap.v
34+
reals/altreals/discrete.v
35+
reals/altreals/realseq.v
36+
reals/altreals/realsum.v
37+
reals/altreals/distr.v
38+
reals_stdlib/Rstruct.v
2339
theories/all_analysis.v
24-
theories/constructive_ereal.v
2540
theories/ereal.v
2641
theories/reals.v
2742
theories/landau.v
28-
theories/Rstruct.v
29-
theories/Rstruct_topology.v
3043
theories/topology.v
3144
theories/separation_axioms.v
3245
theories/function_spaces.v
3346
theories/cantor.v
34-
theories/prodnormedzmodule.v
3547
theories/normedtype.v
3648
theories/realfun.v
3749
theories/sequences.v
3850
theories/exp.v
3951
theories/trigo.v
40-
theories/nsatz_realtype.v
4152
theories/esum.v
42-
theories/real_interval.v
4353
theories/lebesgue_measure.v
4454
theories/lebesgue_stieltjes_measure.v
4555
theories/forms.v
@@ -50,15 +60,9 @@ theories/lebesgue_integral.v
5060
theories/ftc.v
5161
theories/hoelder.v
5262
theories/probability.v
53-
theories/signed.v
54-
theories/itv.v
5563
theories/convex.v
5664
theories/charge.v
5765
theories/kernel.v
58-
theories/showcase/uniform_bigO.v
5966
theories/showcase/summability.v
60-
theories/altreals/xfinmap.v
61-
theories/altreals/discrete.v
62-
theories/altreals/realseq.v
63-
theories/altreals/realsum.v
64-
theories/altreals/distr.v
67+
analysis_stdlib/Rstruct_topology.v
68+
analysis_stdlib/showcase/uniform_bigO.v

analysis_stdlib/Make

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-Q . mathcomp.analysis_stdlib
2+
3+
-arg -w -arg -parsing
4+
-arg -w -arg +undeclared-scope
5+
-arg -w -arg +non-primitive-record
6+
-arg -w -arg -ambiguous-paths
7+
-arg -w -arg -redundant-canonical-projection
8+
-arg -w -arg -projection-no-head-constant
9+
10+
Rstruct_topology.v
11+
showcase/uniform_bigO.v

analysis_stdlib/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- Makefile -*-
2+
3+
# setting variables
4+
COQPROJECT?=Make
5+
6+
# Main Makefile
7+
include ../Makefile.common

reals/Make

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
-Q . mathcomp.reals
2+
3+
-arg -w -arg -parsing
4+
-arg -w -arg +undeclared-scope
5+
-arg -w -arg +non-primitive-record
6+
-arg -w -arg -ambiguous-paths
7+
-arg -w -arg -redundant-canonical-projection
8+
-arg -w -arg -projection-no-head-constant
9+
10+
constructive_ereal.v
11+
reals.v
12+
real_interval.v
13+
signed.v
14+
itv.v
15+
prodnormedzmodule.v
16+
nsatz_realtype.v
17+
all_reals.v
18+
altreals/xfinmap.v
19+
altreals/discrete.v
20+
altreals/realseq.v
21+
altreals/realsum.v
22+
altreals/distr.v

reals/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- Makefile -*-
2+
3+
# setting variables
4+
COQPROJECT?=Make
5+
6+
# Main Makefile
7+
include ../Makefile.common

reals/all_reals.v

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
From mathcomp Require Export signed.
2+
From mathcomp Require Export itv.
3+
From mathcomp Require Export constructive_ereal.
4+
From mathcomp Require Export reals.
5+
From mathcomp Require Export real_interval.
6+
From mathcomp Require Export prodnormedzmodule.
7+
From mathcomp Require Export nsatz_realtype.

0 commit comments

Comments
 (0)