Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to https://github.com/math-comp/math-comp/pull/1343 #68

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions theories/cauchyreals.v
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
From Coq Require Setoid.
From mathcomp Require Import ssreflect ssrfun ssrbool eqtype ssrnat seq choice.
From mathcomp Require Import fintype bigop binomial order perm ssralg poly.
From mathcomp Require Import polydiv ssrnum ssrint rat matrix mxpoly polyXY.
Expand Down Expand Up @@ -561,7 +562,7 @@
Proof. by case: x. Qed.

Definition cauchymod :=
nosimpl (fun (x : creal) => let: CReal _ m := x in projT1 m).

Check warning on line 565 in theories/cauchyreals.v

View workflow job for this annotation

GitHub Actions / build (mathcomp/mathcomp:2.3.0-coq-8.20)

Notation nosimpl is deprecated since mathcomp 2.3.0.

Check warning on line 565 in theories/cauchyreals.v

View workflow job for this annotation

GitHub Actions / build (mathcomp/mathcomp:2.3.0-coq-8.19)

Notation nosimpl is deprecated since mathcomp 2.3.0.

Lemma cauchymodP (x : creal) eps i j : 0 < eps ->
(cauchymod x eps <= i)%N -> (cauchymod x eps <= j)%N -> `|x i - x j| < eps.
Expand Down Expand Up @@ -884,7 +885,7 @@
Qed.

Definition ubound (x : creal) :=
nosimpl (let: exist2 b _ _ := ubound_subproof x in b).

Check warning on line 888 in theories/cauchyreals.v

View workflow job for this annotation

GitHub Actions / build (mathcomp/mathcomp:2.3.0-coq-8.20)

Notation nosimpl is deprecated since mathcomp 2.3.0.

Check warning on line 888 in theories/cauchyreals.v

View workflow job for this annotation

GitHub Actions / build (mathcomp/mathcomp:2.3.0-coq-8.19)

Notation nosimpl is deprecated since mathcomp 2.3.0.

Lemma uboundP (x : creal) i : `|x i| <= ubound x.
Proof. by rewrite /ubound; case: ubound_subproof. Qed.
Expand Down
1 change: 1 addition & 0 deletions theories/ordered_qelim.v
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
From Coq Require Import Setoid.
From HB Require Import structures.
From mathcomp Require Import ssreflect ssrfun ssrbool eqtype ssrnat seq div.
From mathcomp Require Import choice fintype bigop finset order fingroup.
Expand Down
1 change: 1 addition & 0 deletions theories/qe_rcf.v
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
From Coq Require Import Setoid.
From mathcomp Require Import ssreflect ssrfun ssrbool eqtype ssrnat seq path.
From mathcomp Require Import div choice fintype finfun bigop order ssralg zmodp.
From mathcomp Require Import poly polydiv ssrnum ssrint interval matrix polyXY.
Expand Down
1 change: 1 addition & 0 deletions theories/qe_rcf_th.v
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
From Coq Require Import Setoid.
From mathcomp Require Import all_ssreflect all_algebra.
From mathcomp Require Import polyorder polyrcf mxtens.

Expand Down
Loading