演算子の優先度
https://coq.inria.fr/library/Coq.Init.Notations.html より:
Reserved Notation "x -> y" (at level 99, right associativity, y at level 200). Reserved Notation "x <-> y" (at level 95, no associativity). Reserved Notation "x ∧\ y" (at level 80, right associativity). Reserved Notation "x ∨ y" (at level 85, right associativity). Reserved Notation "~ x" (at level 75, right associativity). Reserved Notation "x = y" (at level 70, no associativity). Reserved Notation "x + y" (at level 50, left associativity). Reserved Notation "x * y" (at level 40, left associativity). Reserved Notation "- x" (at level 35, right associativity). Reserved Notation "x ^ y" (at level 30, right associativity). Reserved Notation "x || y" (at level 50, left associativity). Reserved Notation "x && y" (at level 40, left associativity).