]> matita.cs.unibo.it Git - helm.git/blob - matita/components/binaries/xoa/engine.ml
the generation of the multiple conjunction is now supported!
[helm.git] / matita / components / binaries / xoa / engine.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 module P = Printf
13 module A = Ast
14
15 let string_iter sep f n =
16    let rec aux = function
17       | n when n < 1 -> ""
18       | 1            -> f 1
19       | n            -> f n ^ sep ^ aux (pred n)
20    in
21    aux n
22
23 let void_iter f n =
24    let rec aux = function
25       | n when n < 1 -> ()
26       | 1            -> f 1
27       | n            -> f n; aux (pred n)
28    in
29    aux n
30
31 let mk_exists ooch noch c v =
32    let description = "multiple existental quantifier" in
33    let prec = "non associative with precedence 20\n" in
34    let name s = P.sprintf "%s%u_%u" s c v in
35    let o_name = name "ex" in
36    let i_name = "'Ex" in
37
38    let set n      = P.sprintf "A%u" (v - n) in
39    let set_list   = string_iter "," set v in   
40    let set_type   = string_iter "→" set v in
41       
42    let ele n      = P.sprintf "x%u" (v - n) in
43    let ele_list   = string_iter "," ele v in
44    let ele_seq    = string_iter " " ele v in
45    
46    let pre n      = P.sprintf "P%u" (c - n) in   
47    let pre_list   = string_iter "," pre c in
48    let pre_seq    = string_iter " " pre c in 
49    let pre_appl n = P.sprintf "%s %s" (pre n) ele_seq in 
50    let pre_type   = string_iter " → " pre_appl c in
51
52    let qm n       = "?" in
53    let qm_set     = string_iter " " qm v in 
54    let qm_pre     = string_iter " " qm c in 
55
56    let id n       = P.sprintf "ident x%u" (v - n) in
57    let id_list    = string_iter " , " id v in 
58
59    let term n     = P.sprintf "term 19 P%u" (c - n) in
60    let term_conj  = string_iter " break & " term c in 
61
62    let abst b n   = let xty = if b then P.sprintf ":$T%u" (v - n) else "" in
63                     P.sprintf "λ${ident x%u}%s" (v - n) xty in
64
65    let abst_clo b = string_iter "." (abst b) v in 
66
67    let full b n   = P.sprintf "(%s.$P%u)" (abst_clo b) (c - n) in 
68    let full_seq b = string_iter " " (full b) c in
69
70    P.fprintf ooch "(* %s (%u, %u) *)\n\n" description c v;
71
72    P.fprintf ooch "inductive %s (%s:Type[0]) (%s:%s→Prop) : Prop ≝\n" 
73       o_name set_list pre_list set_type;
74    P.fprintf ooch "   | %s_intro: ∀%s. %s → %s %s %s\n.\n\n"
75       o_name ele_list pre_type o_name qm_set qm_pre;
76
77    P.fprintf ooch "interpretation \"%s (%u, %u)\" %s %s = (%s %s %s).\n\n"
78       description c v i_name pre_seq o_name qm_set pre_seq;
79
80    P.fprintf noch "(* %s (%u, %u) *)\n\n" description c v;
81
82    P.fprintf noch "notation > \"hvbox(∃∃ %s break . %s)\"\n %s for @{ %s %s }.\n\n"
83       id_list term_conj prec i_name (full_seq false);
84
85    P.fprintf noch "notation < \"hvbox(∃∃ %s break . %s)\"\n %s for @{ %s %s }.\n\n"
86       id_list term_conj prec i_name (full_seq true)
87
88 let mk_or ooch noch c =
89    let description = "multiple disjunction connective" in
90    let prec = "non associative with precedence 30\n" in
91    let name s = P.sprintf "%s%u" s c in
92    let o_name = name "or" in
93    let i_name = "'Or" in
94
95    let pre n      = P.sprintf "P%u" (c - n) in   
96    let pre_list   = string_iter "," pre c in
97    let pre_seq    = string_iter " " pre c in 
98
99    let qm n       = "?" in
100    let qm_pre     = string_iter " " qm c in 
101
102    let term n     = P.sprintf "term 29 P%u" (c - n) in
103    let term_disj  = string_iter " break | " term c in 
104
105    let par n     = P.sprintf "$P%u" (c - n) in 
106    let par_seq   = string_iter " " par c in
107
108    let mk_con n   = P.fprintf ooch "   | %s_intro%u: %s → %s %s\n"
109                        o_name (c - n) (pre n) o_name qm_pre
110    in
111
112    P.fprintf ooch "(* %s (%u) *)\n\n" description c;
113
114    P.fprintf ooch "inductive %s (%s:Prop) : Prop ≝\n" 
115       o_name pre_list;
116    void_iter mk_con c;
117    P.fprintf ooch ".\n\n";
118
119    P.fprintf ooch "interpretation \"%s (%u)\" %s %s = (%s %s).\n\n"
120       description c i_name pre_seq o_name pre_seq;
121
122    P.fprintf noch "(* %s (%u) *)\n\n" description c;
123
124    P.fprintf noch "notation \"hvbox(∨∨ %s)\"\n %s for @{ %s %s }.\n\n"
125       term_disj prec i_name par_seq
126
127 let mk_and ooch noch c =
128    let description = "multiple conjunction connective" in
129    let prec = "non associative with precedence 35\n" in
130    let name s = P.sprintf "%s%u" s c in
131    let o_name = name "and" in
132    let i_name = "'And" in
133
134    let pre n      = P.sprintf "P%u" (c - n) in   
135    let pre_list   = string_iter "," pre c in
136    let pre_type   = string_iter " → " pre c in   
137    let pre_seq    = string_iter " " pre c in 
138
139    let qm n       = "?" in
140    let qm_pre     = string_iter " " qm c in 
141
142    let term n     = P.sprintf "term 34 P%u" (c - n) in
143    let term_conj  = string_iter " break & " term c in 
144
145    let par n     = P.sprintf "$P%u" (c - n) in 
146    let par_seq   = string_iter " " par c in
147
148    P.fprintf ooch "(* %s (%u) *)\n\n" description c;
149
150    P.fprintf ooch "inductive %s (%s:Prop) : Prop ≝\n" 
151       o_name pre_list;
152    P.fprintf ooch "   | %s_intro: %s → %s %s\n.\n\n"
153       o_name pre_type o_name qm_pre;
154
155    P.fprintf ooch "interpretation \"%s (%u)\" %s %s = (%s %s).\n\n"
156       description c i_name pre_seq o_name pre_seq;
157
158    P.fprintf noch "(* %s (%u) *)\n\n" description c;
159
160    P.fprintf noch "notation \"hvbox(∧∧ %s)\"\n %s for @{ %s %s }.\n\n"
161       term_conj prec i_name par_seq
162
163 let generate ooch noch = function
164    | A.Exists (c, v) ->
165       if c > 0 && v > 0 then mk_exists ooch noch c v
166    | A.Or c          ->
167       if c > 1 then mk_or ooch noch c
168    | A.And c         ->
169       if c > 1 then mk_and ooch noch c