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 coq/coq#19801 (replacing ZArith_base, Zeq_bool) #94

Merged
merged 1 commit into from
Jan 7, 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
4 changes: 3 additions & 1 deletion BigQ/QMake.v
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ Module Make (NN:NType)(ZZ:ZType)(Import NZ:NType_ZType NN ZZ) <: QType.

Theorem spec_eq_bool: forall x y, eq_bool x y = Qeq_bool [x] [y].
Proof.
intros. unfold eq_bool. rewrite spec_compare. reflexivity.
unfold eq_bool; intros.
apply eq_true_iff_eq; rewrite Qeq_bool_iff, spec_compare, Qeq_alt.
case Qcompare; intuition congruence.
Qed.

(** [check_int] : is a reduced fraction [n/d] in fact a integer ? *)
Expand Down
2 changes: 1 addition & 1 deletion BigZ/BigZ.v
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
From Stdlib Require Import ZProperties ZDivFloor Ring Lia.
Require Export BigN.
Require Import ZSig ZSigZAxioms ZMake.
Import Zpow_def Zdiv.
Import BinNat Zpow_def Zdiv.

(** * [BigZ] : arbitrary large efficient integers.

Expand Down
Loading