Skip to content

Commit d93b3ce

Browse files
committed
Use From systematically
1 parent d64e9df commit d93b3ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+89
-90
lines changed

Makefile.common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ doc: __always__ Makefile.coq
117117
# cd _build_doc && grep -v vio: .Makefile.coq.d > depend
118118
# cd _build_doc && cat depend | $(MATHCOMP)etc/buildlibgraph $(COQFILES) > htmldoc/depend.js
119119
cd _build_doc && $(COQBIN)coqdoc -t "MathComp Analysis" \
120-
-g --utf8 -R classical mathcomp.classical -R theories mathcomp.analysis \
120+
-g --utf8 -Q classical mathcomp.classical -Q theories mathcomp.analysis \
121121
--parse-comments \
122122
--multi-index $(COQFILES) -d htmldoc
123123
. $(MATHCOMP)etc/utils/builddoc_lib.sh; \

_CoqProject

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
-R classical mathcomp.classical
2-
-R theories mathcomp.analysis
1+
-Q classical mathcomp.classical
2+
-Q theories mathcomp.analysis
33

44
-arg -w -arg -parsing
55
-arg -w -arg +undeclared-scope

classical/Make

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-R . mathcomp.classical
1+
-Q . mathcomp.classical
22

33
-arg -w -arg -parsing
44
-arg -w -arg +undeclared-scope

classical/wochoice.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(* mathcomp analysis (c) 2017 Inria and AIST. License: CeCILL-C. *)
22
From mathcomp Require Import ssreflect ssrfun ssrbool eqtype ssrnat seq.
3-
Require Import boolp contra.
3+
From mathcomp Require Import boolp contra.
44

55
(**md**************************************************************************)
66
(* # Well-ordered choice *)

theories/Make

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-R . mathcomp.analysis
1+
-Q . mathcomp.analysis
22

33
-arg -w -arg -parsing
44
-arg -w -arg +undeclared-scope

theories/Rstruct.v

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ liability. See the COPYING file for more details.
2525
(* # Compatibility with the real numbers of Coq *)
2626
(******************************************************************************)
2727

28-
Require Import Rdefinitions Raxioms RIneq Rbasic_fun Zwf.
29-
Require Import Epsilon FunctionalExtensionality Ranalysis1 Rsqrt_def.
30-
Require Import Rtrigo1 Reals.
28+
From Coq Require Import Rdefinitions Raxioms RIneq Rbasic_fun Zwf.
29+
From Coq Require Import Epsilon FunctionalExtensionality Ranalysis1 Rsqrt_def.
30+
From Coq Require Import Rtrigo1 Reals.
3131
From mathcomp Require Import all_ssreflect ssralg poly mxpoly ssrnum.
3232
From mathcomp Require Import archimedean.
3333
From HB Require Import structures.
@@ -364,7 +364,7 @@ End ssreal_struct.
364364

365365
Local Open Scope ring_scope.
366366
From mathcomp Require Import boolp classical_sets.
367-
Require Import reals.
367+
From mathcomp Require Import reals.
368368

369369
Section ssreal_struct_contd.
370370
Implicit Type E : set R.
@@ -424,7 +424,7 @@ Implicit Types (x y : R) (m n : nat).
424424

425425
(* equational lemmas about exp, sin and cos for mathcomp compat *)
426426

427-
(* Require Import realsum. *)
427+
(* From mathcomp Require Import realsum. *)
428428

429429
(* :TODO: One day, do this *)
430430
(* Notation "\Sum_ i E" := (psum (fun i => E)) *)
@@ -697,7 +697,7 @@ End bigmaxr.
697697

698698
End ssreal_struct_contd.
699699

700-
Require Import signed topology.
700+
From mathcomp Require Import signed topology.
701701

702702
Section analysis_struct.
703703

theories/altreals/dedekind.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
(* -------------------------------------------------------------------- *)
1010
From mathcomp Require Import all_ssreflect all_algebra.
11-
(* ------- *) Require Import Setoid.
11+
From Coq Require Import Setoid.
1212

1313
(* -------------------------------------------------------------------- *)
1414
Set Implicit Arguments.

theories/altreals/discrete.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
From HB Require Import structures.
88
From mathcomp Require Import all_ssreflect all_algebra.
99
From mathcomp.classical Require Import boolp.
10-
Require Import xfinmap reals.
11-
(* ------- *) Require (*--*) Setoid.
10+
From mathcomp Require Import xfinmap reals.
11+
From Coq Require Setoid.
1212

1313
(* -------------------------------------------------------------------- *)
1414
Set Implicit Arguments.

theories/altreals/distr.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
(* -------------------------------------------------------------------- *)
77
From mathcomp Require Import all_ssreflect all_algebra.
88
From mathcomp.classical Require Import boolp classical_sets mathcomp_extra.
9-
Require Import xfinmap ereal reals discrete.
10-
Require Import topology realseq realsum.
9+
From mathcomp Require Import xfinmap ereal reals discrete.
10+
From mathcomp Require Import topology realseq realsum.
1111

1212
Set Implicit Arguments.
1313
Unset Strict Implicit.

theories/altreals/realseq.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
(* -------------------------------------------------------------------- *)
77
From mathcomp Require Import all_ssreflect all_algebra.
8-
Require Import mathcomp.bigenough.bigenough.
8+
From mathcomp Require Import bigenough.
99
From mathcomp.classical Require Import boolp classical_sets functions.
1010
From mathcomp.classical Require Import mathcomp_extra.
11-
Require Import xfinmap ereal reals discrete topology.
11+
From mathcomp Require Import xfinmap ereal reals discrete topology.
1212

1313
Set Implicit Arguments.
1414
Unset Strict Implicit.

0 commit comments

Comments
 (0)