aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Init/Notations.v
blob: 9fe617136ad7cc75e5a778207c88b83bd95a7481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
(***********************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team    *)
(* <O___,, *        INRIA-Rocquencourt  &  LRI-CNRS-Orsay              *)
(*   \VV/  *************************************************************)
(*    //   *      This file is distributed under the terms of the      *)
(*         *       GNU Lesser General Public License Version 2.1       *)
(***********************************************************************)

(*i $Id$ i*)

(** These are the notations whose level and associativity is imposed by Coq *)

(** Notations for logical connectives *)

Uninterpreted Notation "x /\ y" (at level 6, right associativity).
Uninterpreted Notation "x \/ y" (at level 7, right associativity).

Uninterpreted Notation "x <-> y" (at level 8, right associativity).

Uninterpreted Notation "~ x" (at level 5, right associativity)
  V8only (at level 55, right associativity).

(** Notations for equality and inequalities *)

Uninterpreted Notation "x = y  :> T" 
  (at level 5, y at next level, no associativity).
Uninterpreted Notation "x = y"
  (at level 5, no associativity).

Uninterpreted Notation "x <> y  :> T" 
  (at level 5, y at next level, no associativity).
Uninterpreted Notation "x <> y"
  (at level 5, no associativity).

Uninterpreted Notation "x <= y" (at level 5, no associativity).
Uninterpreted Notation "x < y" (at level 5, no associativity).
Uninterpreted Notation "x >= y" (at level 5, no associativity).
Uninterpreted Notation "x > y" (at level 5, no associativity).

(** Arithmetical notations (also used for type constructors) *)

Uninterpreted Notation "x * y" (at level 3, right associativity)
  V8only (at level 30, left associativity).
Uninterpreted Notation "x / y" (at level 3, left associativity).
Uninterpreted Notation "x + y" (at level 4, left associativity).
Uninterpreted Notation "x - y" (at level 4, left associativity).
Uninterpreted Notation "- x" (at level 0) V8only (at level 40).

(** Notations for pairs *)

Uninterpreted Notation "( x , y )" (at level 0)
  V8only "x , y" (at level 150, left associativity).

(** Notations for sum-types *)

(* Home-made factorization at level 4 to parse B+{x:A|P} without parentheses *)

Uninterpreted Notation "B + { x : A | P }"
  (at level 4, left associativity, only parsing)
  V8only (at level 40, x at level 80, left associativity, only parsing).

Uninterpreted Notation "B + { x : A | P & Q }"
  (at level 4, left associativity, only parsing)
  V8only (at level 40, x at level 80, left associativity, only parsing).

Uninterpreted Notation "B + { x : A & P }"
  (at level 4, left associativity, only parsing)
  V8only (at level 40, x at level 80, left associativity, only parsing).

Uninterpreted Notation "B + { x : A & P & Q }"
  (at level 4, left associativity, only parsing)
  V8only (at level 40, x at level 80, left associativity, only parsing).

(* At level 1 to factor with {x:A|P} etc *)

Uninterpreted Notation "{ A } + { B }" (at level 1)
  V8only (at level 10, A at level 80).

Uninterpreted Notation "A + { B }" (at level 4, left associativity)
  V8only (at level 40, B at level 80, left associativity).

(** Notations for sigma-types or subsets *)

Uninterpreted Notation "{ x : A  |  P }" (at level 1)
  V8only (at level 10, x at level 80).
Uninterpreted Notation "{ x : A  |  P  &  Q }" (at level 1)
  V8only (at level 10, x at level 80).

Uninterpreted Notation "{ x : A  &  P }" (at level 1)
  V8only (at level 10, x at level 80).
Uninterpreted Notation "{ x : A  &  P  &  Q }" (at level 1)
  V8only (at level 10, x at level 80).