Skip to content

Commit 17a7e11

Browse files
committed
Add a coq-mathcomp-reals package
1 parent 7a82053 commit 17a7e11

29 files changed

Lines changed: 107 additions & 38 deletions

_CoqProject

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
-Q classical mathcomp.classical
2+
-Q reals mathcomp.reals
3+
-Q reals_stdlib mathcomp.reals_stdlib
4+
-Q altreals mathcomp.altreals
25
-Q theories mathcomp.analysis
6+
-Q analysis_stdlib mathcomp.analysis_stdlib
37

48
-arg -w -arg -parsing
59
-arg -w -arg +undeclared-scope
@@ -20,26 +24,33 @@ classical/fsbigop.v
2024
classical/set_interval.v
2125
classical/classical_orders.v
2226
classical/filter.v
27+
reals/constructive_ereal.v
28+
reals/reals.v
29+
reals/real_interval.v
30+
reals/signed.v
31+
reals/itv.v
32+
reals/prodnormedzmodule.v
33+
reals/nsatz_realtype.v
34+
reals/all_reals.v
35+
altreals/xfinmap.v
36+
altreals/discrete.v
37+
altreals/realseq.v
38+
altreals/realsum.v
39+
altreals/distr.v
40+
reals_stdlib/Rstruct.v
2341
theories/all_analysis.v
24-
theories/constructive_ereal.v
2542
theories/ereal.v
26-
theories/reals.v
2743
theories/landau.v
28-
theories/Rstruct.v
29-
theories/Rstruct_topology.v
3044
theories/topology.v
3145
theories/separation_axioms.v
3246
theories/function_spaces.v
3347
theories/cantor.v
34-
theories/prodnormedzmodule.v
3548
theories/normedtype.v
3649
theories/realfun.v
3750
theories/sequences.v
3851
theories/exp.v
3952
theories/trigo.v
40-
theories/nsatz_realtype.v
4153
theories/esum.v
42-
theories/real_interval.v
4354
theories/lebesgue_measure.v
4455
theories/lebesgue_stieltjes_measure.v
4556
theories/forms.v
@@ -50,15 +61,9 @@ theories/lebesgue_integral.v
5061
theories/ftc.v
5162
theories/hoelder.v
5263
theories/probability.v
53-
theories/signed.v
54-
theories/itv.v
5564
theories/convex.v
5665
theories/charge.v
5766
theories/kernel.v
58-
theories/showcase/uniform_bigO.v
5967
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
68+
analysis_stdlib/Rstruct_topology.v
69+
analysis_stdlib/showcase/uniform_bigO.v

altreals/Make

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-Q . mathcomp.altreals
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+
altreals/xfinmap.v
11+
altreals/discrete.v
12+
altreals/realseq.v
13+
altreals/realsum.v
14+
altreals/distr.v

altreals/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

0 commit comments

Comments
 (0)