aboutsummaryrefslogtreecommitdiff
path: root/src/Util
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2019-03-05 15:31:02 -0500
committerGravatar Jason Gross <jgross@mit.edu>2019-03-05 15:31:02 -0500
commit11bfcbf909a4dad45de3853df53b94af81217055 (patch)
tree988caf32058f93f3038cb8511307aa85a0c9b4ef /src/Util
parentf0bfe4784aea55d5e6614c843a25da44329d5807 (diff)
Add reserved notations for \in
Diffstat (limited to 'src/Util')
-rw-r--r--src/Util/Notations.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Util/Notations.v b/src/Util/Notations.v
index cdcca8473..9549e0ba6 100644
--- a/src/Util/Notations.v
+++ b/src/Util/Notations.v
@@ -32,6 +32,15 @@ Reserved Infix "=ₙ?" (at level 70, no associativity).
Reserved Infix "=ℤ?" (at level 70, no associativity).
Reserved Infix "=ᶻ?" (at level 70, no associativity).
Reserved Infix "=ⁿ?" (at level 70, no associativity).
+(* to match with ssreflect *)
+Reserved Notation "x \in A"
+ (at level 70, format "'[hv' x '/ ' \in A ']'", no associativity).
+Reserved Notation "x \notin A"
+ (at level 70, format "'[hv' x '/ ' \notin A ']'", no associativity).
+Reserved Notation "x ∈ A"
+ (at level 70, format "'[hv' x '/ ' ∈ A ']'", no associativity).
+Reserved Notation "x ∉ A"
+ (at level 70, format "'[hv' x '/ ' ∉ A ']'", no associativity).
Reserved Notation "x +' y" (at level 50, left associativity).
Reserved Notation "x -' y" (at level 50, left associativity).
Reserved Notation "x *' y" (at level 40, left associativity).