aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/ZArith
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-06-27 14:22:32 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-06-27 14:22:32 +0000
commitdd866fe3894d3d7542b45fb881aa2280378b2ae4 (patch)
tree41e600cb1e88e2ce3c09848b174ee76b5ac5226c /theories/ZArith
parentad0c122b1665fedde52f51ecdebb9d04a12831a6 (diff)
Znumtheory: a correct version of a compatibility Zdivide_intro
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14240 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/ZArith')
-rw-r--r--theories/ZArith/Znumtheory.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/theories/ZArith/Znumtheory.v b/theories/ZArith/Znumtheory.v
index 4371707dc..6eb1a7093 100644
--- a/theories/ZArith/Znumtheory.v
+++ b/theories/ZArith/Znumtheory.v
@@ -39,7 +39,10 @@ Notation Zggcd_opp := Z.ggcd_opp (only parsing).
a generic existential predicate. *)
Notation Zdivide := Z.divide (only parsing).
-Notation Zdivide_intro := ex_intro (only parsing).
+
+(** Its former constructor is now a pseudo-constructor. *)
+
+Definition Zdivide_intro a b q (H:b=q*a) : Z.divide a b := ex_intro _ q H.
(** Results concerning divisibility*)