]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_notation/doc/samples.ma
snapshot
[helm.git] / helm / ocaml / cic_notation / doc / samples.ma
1
2 notation
3   "\langle a , b \rangle"
4 for
5   @{ 'pair $a $b }.
6 print \langle 1, \langle 2, 3 \rangle \rangle.
7 print 'pair 1 ('pair 2 ('pair 3 4)).
8
9 notation
10   "a :: b"
11 for
12   @{ 'cons $a $b }.
13 print 1 :: 2 :: 'ugo.
14
15 notation
16   "[ hovbox (list0 a sep ; ) ]"
17 for ${
18   fold right
19     @'nil
20   rec acc
21     @{ 'cons $a $acc }
22 }.
23 print [1;2;3;4].
24
25 notation
26   "[ list1 a sep ; | b ]"
27 for ${
28   if @{ 'cons $_ $_ } then
29     fold right
30       if @'nil then
31         fail
32       else if @{ 'cons $_ $_ } then
33         fail
34       else
35         b
36     rec acc
37       @{ 'cons $a $acc }
38   else
39     fail
40 }.
41 print 'cons 1 ('cons 2 ('cons 3 'ugo)).
42 print 'cons 1 ('cons 2 ('cons 3 'nil)).
43 print [1;2;3;4].
44 print [1;2;3;4|5].
45
46 notation "a + b" left associative for @{ 'plus $a $b }.
47 print 1 + 2 + 3.
48 print 1 + (2 + 3).
49
50 notation
51   "'if' a 'then' b 'else' c"
52 for
53   @{ 'ifthenelse $a $b $c }.
54
55 TODO collezionare le keyword e aggiungerle al lexer nonche' ricordarsele per quando si rimuove la notazione.
56
57 notation
58   "a \vee b"
59 for
60   @{ if $a > $b then $a else $b }
61
62 notation
63   "'fun' ident x \to a"
64   right associative at precedence ...
65 for
66   @{ 'lambda ${ident x} $a }
67
68 NOTES
69
70 @a e' un'abbreviazione per @{term a}
71 "x" e' un'abbreviazione per @{keyword x}
72 @_ e' un'abbreviazione per @{anonymous}
73
74 \x simbolo della sintassi concreta
75 'x simbolo della sintassi astratta
76
77 \lbrace \rbrace per le parentesi graffe al livello 1
78
79 OLD SAMPLES
80
81 # sample mappings level 1 <--> level 2
82
83 notation \[ \TERM a ++ \OPT \NUM i \] for 'assign \TERM a ('plus \TERM a \DEFAULT \[\NUM i\] \[1\]).
84 print 1 ++ 2.
85
86 notation \[ + \LIST0 \NUM a \] for \FOLD right \[ 'zero \] \LAMBDA acc \[ 'plus \NUM a \TERM acc \].
87 print + 1 2 3 4.
88
89 notation \[ [ \HOVBOX\[ \LIST0 \TERM a \SEP ; \] ] \] for \FOLD right \[ 'nil \] \LAMBDA acc \[ 'cons \TERM a \TERM acc \].
90 print [].
91 print [1;2;3;4].
92
93 notation \[ [ \LIST0 \[ \TERM a ; \TERM b \] \SEP ; ] \] for \FOLD right \[ 'nil \] \LAMBDA acc \[ 'cons \TERM a ( 'cons \TERM b \TERM acc) \] .
94 print [].
95 print [1;2].
96 print [1;2;3;4].
97
98 notation \[ | \LIST0 \[ \TERM a \OPT \[ , \TERM b \] \] \SEP ; | \] for \FOLD right \[ 'nil \] \LAMBDA acc \[ 'cons \DEFAULT \[ \TERM a \] \[ ('pair \TERM a \TERM b) \] \TERM acc \] .  
99
100 notation \[ | \LIST0 \[ \OPT \[ \NUM i \] \] \SEP ; | \] for \FOLD right \[ 'nil \] \LAMBDA acc \[ 'cons \DEFAULT \[ 'Some \NUM i \] \[ 'None \] \TERM acc \] .
101
102 # sample mappings level 2 <--> level 3
103
104 interpretation 'plus x y = (cic:/Coq/Init/Peano/plus.con x y).
105 interpretation 'mult x y = (cic:/Coq/Init/Peano/mult.con x y).
106 render cic:/Coq/Arith/Mult/mult_plus_distr_r.con.
107
108 notation \[ \TERM a \OVER \TERM b : \TERM c \SQRT \TERM d \] for 'megacoso \TERM a \TERM b \TERM c \TERM d.
109 interpretation 'megacoso x y z w = (cic:/Coq/Init/Logic/eq.ind#xpointer(1/1) cic:/Coq/Init/Datatypes/nat.ind#xpointer(1/1) (cic:/Coq/Init/Peano/plus.con x y) (cic:/Coq/Init/Peano/plus.con z w)).
110 render cic:/Coq/Arith/Plus/plus_comm.con.
111
112 # full samples
113
114 notation \[ \TERM a + \TERM b \] for 'plus \TERM a \TERM b.
115 print 1 + 2.
116 interpretation 'plus x y = (cic:/Coq/Init/Peano/plus.con x y).
117 render cic:/Coq/Arith/Plus/plus_comm.con.
118
119 notation \[ \TERM a + \TERM b \] left associative with precedence 50 for 'plus \TERM a \TERM b.
120 notation \[ \TERM a * \TERM b \] left associative with precedence 60 for 'mult \TERM a \TERM b.
121 interpretation 'plus x y = (cic:/Coq/Init/Peano/plus.con x y).
122 interpretation 'mult x y = (cic:/Coq/Init/Peano/mult.con x y).
123 render cic:/Coq/Arith/Mult/mult_plus_distr_r.con.
124
125 notation \[ \LIST \NUM a \] for \FOLD left \[ 'a \] \LAMBDA acc \[ 'b \NUM a \].
126