aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Notations.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-06-11 15:24:15 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-06-11 15:24:15 -0400
commit165bc0e8b8f1f62eea3d9dafab14425050f1f57a (patch)
treea24487662c0fcbf146876198656ce21491e8b3f2 /src/Util/Notations.v
parentff21d439d88f3342c7ca03bbac0ffe735e972162 (diff)
Reserve some more notations
Diffstat (limited to 'src/Util/Notations.v')
-rw-r--r--src/Util/Notations.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Util/Notations.v b/src/Util/Notations.v
index 05ece8234..d96bb7d3b 100644
--- a/src/Util/Notations.v
+++ b/src/Util/Notations.v
@@ -63,6 +63,13 @@ 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).
+(* Put these at level 71 so they don't conflict with the infix notations at level 70 *)
+Reserved Notation "<" (at level 71).
+Reserved Notation ">" (at level 71).
+Reserved Notation "<=" (at level 71).
+Reserved Notation ">=" (at level 71).
+Reserved Notation "≤" (at level 71).
+Reserved Notation "≥" (at level 71).
Reserved Notation "a !== b" (at level 70, no associativity).
Reserved Notation "a ≢ b" (at level 70, no associativity).
Reserved Notation "$$ v" (at level 40).
@@ -108,3 +115,6 @@ Reserved Notation "x ++" (at level 60, format "x ++").
Reserved Notation "x --" (at level 60, format "x --").
Reserved Notation "++ x" (at level 60, format "++ x").
Reserved Notation "-- x" (at level 60, format "-- x").
+Reserved Notation "~> R" (at level 70).
+Reserved Notation "A ~> R" (at level 99).
+Reserved Notation "'return' x" (at level 70, format "'return' x").