aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/ZArith
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2015-12-29 13:27:36 -0500
committerGravatar Jason Gross <jgross@mit.edu>2015-12-29 13:27:36 -0500
commit5b4e3ace20eb2ab569d172a1f358f26f451d361c (patch)
tree6ed71e7b603ea8a24cd14ed4673fbcaad57302c3 /theories/ZArith
parentb2eaecf0e748e3c286e1ef337f72cee6d3475162 (diff)
Move compatibility notations to their proper files
Diffstat (limited to 'theories/ZArith')
-rw-r--r--theories/ZArith/Int.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/theories/ZArith/Int.v b/theories/ZArith/Int.v
index d210792f9..b78891c71 100644
--- a/theories/ZArith/Int.v
+++ b/theories/ZArith/Int.v
@@ -451,4 +451,8 @@ Module Z_as_Int <: Int.
Lemma i2z_ltb n p : ltb n p = Z.ltb (i2z n) (i2z p).
Proof. reflexivity. Qed.
+ (** Compatibility notations for Coq v8.4 *)
+ Notation plus := Coq.ZArith.Int.Z_as_Int.add (compat "8.4").
+ Notation minus := Coq.ZArith.Int.Z_as_Int.sub (compat "8.4").
+ Notation mult := Coq.ZArith.Int.Z_as_Int.mul (compat "8.4").
End Z_as_Int.