Skip to content

Commit a75b14f

Browse files
authored
Merge pull request #214 from coq-community/coq_19801
Adapt to rocq-prover/rocq#19801
2 parents 736118d + 5aca257 commit a75b14f

31 files changed

+121
-104
lines changed

metric2/Compact.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1818
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1919
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2020
*)
21+
From Coq Require Import ZArith.
2122
Require Import CoRN.model.totalorder.QposMinMax.
2223
Require Import CoRN.metric2.Limit.
2324
Require Export CoRN.metric2.FinEnum.

metric2/FinEnum.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1818
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1919
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2020
*)
21+
From Coq Require Import ZArith.
2122
Require Import CoRN.model.totalorder.QposMinMax.
2223
Require Export CoRN.metric2.Hausdorff.
2324
Require Import CoRN.logic.Classic.

metric2/Limit.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1919
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2020
*)
2121

22+
From Coq Require Import ZArith.
2223
Require Import CoRN.algebra.RSetoid.
2324
Require Import CoRN.model.totalorder.QposMinMax.
2425
From Coq Require Import QArith.

model/structures/QnonNeg.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
(* This module is designed to *not* be Import'ed, only Require'd. *)
22

3+
From Coq Require Import ZArith.
34
Require Import CoRN.model.totalorder.QposMinMax.
45
From Coq Require Import Program.
56
Require Import CoRN.model.structures.QposInf.

reals/fast/CRAlternatingSum.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2121

2222
From Coq Require Import ArithRing.
2323
From Coq Require Import Bool.
24+
From Coq Require Import ZArith.
2425
From Coq Require Import Qpower Qabs.
2526
Require Import CoRN.algebra.RSetoid.
2627
Require Import CoRN.metric2.Metric.

reals/fast/CRGeometricSum.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1818
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1919
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2020
*)
21+
From Coq Require Import ZArith.
2122
Require Import CoRN.metric2.Metric.
2223
Require Import CoRN.metric2.UniformContinuity.
2324
Require Import CoRN.reals.fast.CRAlternatingSum.
@@ -1119,4 +1120,3 @@ Proof.
11191120
intros. destruct (Qle_total a b).
11201121
apply H, q. symmetry. apply H, q.
11211122
Qed.
1122-

reals/fast/CRpower.v

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1919
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2020
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2121
*)
22+
From Coq Require Import ZArith.
2223
Require Import CoRN.algebra.RSetoid.
2324
Require Import CoRN.metric2.Metric.
2425
Require Import CoRN.metric2.ProductMetric.
@@ -27,7 +28,7 @@ From Coq Require Import Qpower.
2728
From Coq Require Import Qabs.
2829
Require Import CoRN.model.metric2.Qmetric.
2930
Require Import CoRN.model.totalorder.QMinMax.
30-
Require Import CoRN.model.totalorder.QposMinMax.
31+
Require Import CoRN.model.totalorder.QposMinMax.
3132
Require Import MathClasses.interfaces.canonical_names.
3233
Require Import MathClasses.interfaces.additional_operations.
3334

@@ -581,4 +582,4 @@ Proof.
581582
rewrite Nnat.nat_of_Nplus.
582583
simpl.
583584
rewrite CRpower_N_correct. reflexivity.
584-
Qed.
585+
Qed.

reals/fast/CRstreams.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2020
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2121
*)
2222

23+
From Coq Require Import ZArith.
2324
Require Import CoRN.algebra.RSetoid.
2425
Require Import CoRN.model.totalorder.QposMinMax.
25-
Require Import CoRN.model.metric2.Qmetric.
26+
Require Import CoRN.model.metric2.Qmetric.
2627
Require Import CoRN.metric2.Limit.
2728
From Coq Require Import Qabs.
2829
From Coq Require Import Arith.
@@ -817,4 +818,3 @@ Proof.
817818
destruct q. unfold Qopp; simpl.
818819
rewrite Z.opp_involutive. reflexivity.
819820
Qed.
820-

reals/fast/CRsum.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1818
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1919
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2020
*)
21+
From Coq Require Import ZArith.
2122
Require Import CoRN.metric2.Metric.
2223
Require Import CoRN.metric2.UniformContinuity.
2324
Require Import CoRN.model.totalorder.QposMinMax.

reals/fast/Compress.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1919
CONNECTION WITH THE PROOF OR THE USE OR OTHER DEALINGS IN THE PROOF.
2020
*)
2121

22+
From Coq Require Import ZArith.
2223
Require Import CoRN.algebra.RSetoid.
2324
Require Import CoRN.metric2.Metric.
2425
Require Import CoRN.metric2.UniformContinuity.

0 commit comments

Comments
 (0)