diff options
| -rw-r--r-- | theories/ZArith/Znumtheory.v | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/theories/ZArith/Znumtheory.v b/theories/ZArith/Znumtheory.v index 4371707dcb..6eb1a70939 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*) |
