author | haftmann |
Fri, 31 Jul 2009 10:49:09 +0200 | |
changeset 32349 | 3f7984175fdd |
parent 32345 | 4da4fa060bb6 |
child 32350 | 5ef633275b15 |
permissions | -rw-r--r-- |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
1 |
(* Title: Tools/code/code_preproc.ML |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
2 |
Author: Florian Haftmann, TU Muenchen |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
3 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
4 |
Preprocessing code equations into a well-sorted system |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
5 |
in a graph with explicit dependencies. |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
6 |
*) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
7 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
8 |
signature CODE_PREPROC = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
9 |
sig |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
10 |
val map_pre: (simpset -> simpset) -> theory -> theory |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
11 |
val map_post: (simpset -> simpset) -> theory -> theory |
32072 | 12 |
val add_unfold: thm -> theory -> theory |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
13 |
val add_functrans: string * (theory -> (thm * bool) list -> (thm * bool) list option) -> theory -> theory |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
14 |
val del_functrans: string -> theory -> theory |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
15 |
val simple_functrans: (theory -> thm list -> thm list option) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
16 |
-> theory -> (thm * bool) list -> (thm * bool) list option |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
17 |
val print_codeproc: theory -> unit |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
18 |
|
30947 | 19 |
type code_algebra |
20 |
type code_graph |
|
21 |
val eqns: code_graph -> string -> (thm * bool) list |
|
22 |
val typ: code_graph -> string -> (string * sort) list * typ |
|
23 |
val all: code_graph -> string list |
|
24 |
val pretty: theory -> code_graph -> Pretty.T |
|
25 |
val obtain: theory -> string list -> term list -> code_algebra * code_graph |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
26 |
val resubst_triv_consts: theory -> term -> term |
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
27 |
val eval_conv: theory |
30947 | 28 |
-> (code_algebra -> code_graph -> (string * sort) list -> term -> cterm -> thm) -> cterm -> thm |
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
29 |
val eval: theory -> ((term -> term) -> 'a -> 'a) |
30947 | 30 |
-> (code_algebra -> code_graph -> (string * sort) list -> term -> 'a) -> term -> 'a |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
31 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
32 |
val setup: theory -> theory |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
33 |
end |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
34 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
35 |
structure Code_Preproc : CODE_PREPROC = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
36 |
struct |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
37 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
38 |
(** preprocessor administration **) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
39 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
40 |
(* theory data *) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
41 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
42 |
datatype thmproc = Thmproc of { |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
43 |
pre: simpset, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
44 |
post: simpset, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
45 |
functrans: (string * (serial * (theory -> (thm * bool) list -> (thm * bool) list option))) list |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
46 |
}; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
47 |
|
31599 | 48 |
fun make_thmproc ((pre, post), functrans) = |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
49 |
Thmproc { pre = pre, post = post, functrans = functrans }; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
50 |
fun map_thmproc f (Thmproc { pre, post, functrans }) = |
31599 | 51 |
make_thmproc (f ((pre, post), functrans)); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
52 |
fun merge_thmproc (Thmproc { pre = pre1, post = post1, functrans = functrans1 }, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
53 |
Thmproc { pre = pre2, post = post2, functrans = functrans2 }) = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
54 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
55 |
val pre = Simplifier.merge_ss (pre1, pre2); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
56 |
val post = Simplifier.merge_ss (post1, post2); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
57 |
val functrans = AList.merge (op =) (eq_fst (op =)) (functrans1, functrans2); |
31599 | 58 |
in make_thmproc ((pre, post), functrans) end; |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
59 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
60 |
structure Code_Preproc_Data = TheoryDataFun |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
61 |
( |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
62 |
type T = thmproc; |
31599 | 63 |
val empty = make_thmproc ((Simplifier.empty_ss, Simplifier.empty_ss), []); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
64 |
fun copy spec = spec; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
65 |
val extend = copy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
66 |
fun merge pp = merge_thmproc; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
67 |
); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
68 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
69 |
fun the_thmproc thy = case Code_Preproc_Data.get thy |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
70 |
of Thmproc x => x; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
71 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
72 |
fun delete_force msg key xs = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
73 |
if AList.defined (op =) xs key then AList.delete (op =) key xs |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
74 |
else error ("No such " ^ msg ^ ": " ^ quote key); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
75 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
76 |
fun map_data f thy = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
77 |
thy |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
78 |
|> Code.purge_data |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
79 |
|> (Code_Preproc_Data.map o map_thmproc) f; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
80 |
|
32072 | 81 |
val map_pre_post = map_data o apfst; |
82 |
val map_pre = map_pre_post o apfst; |
|
83 |
val map_post = map_pre_post o apsnd; |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
84 |
|
32072 | 85 |
val add_unfold = map_pre o MetaSimplifier.add_simp; |
86 |
val del_unfold = map_pre o MetaSimplifier.del_simp; |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
87 |
val add_post = map_post o MetaSimplifier.add_simp; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
88 |
val del_post = map_post o MetaSimplifier.del_simp; |
32072 | 89 |
|
90 |
fun add_unfold_post raw_thm thy = |
|
91 |
let |
|
92 |
val thm = LocalDefs.meta_rewrite_rule (ProofContext.init thy) raw_thm; |
|
93 |
val thm_sym = Thm.symmetric thm; |
|
94 |
in |
|
95 |
thy |> map_pre_post (fn (pre, post) => |
|
96 |
(pre |> MetaSimplifier.add_simp thm, post |> MetaSimplifier.del_simp thm_sym)) |
|
97 |
end; |
|
98 |
||
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
99 |
fun add_functrans (name, f) = (map_data o apsnd) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
100 |
(AList.update (op =) (name, (serial (), f))); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
101 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
102 |
fun del_functrans name = (map_data o apsnd) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
103 |
(delete_force "function transformer" name); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
104 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
105 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
106 |
(* post- and preprocessing *) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
107 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
108 |
fun apply_functrans thy c _ [] = [] |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
109 |
| apply_functrans thy c [] eqns = eqns |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
110 |
| apply_functrans thy c functrans eqns = eqns |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
111 |
|> perhaps (perhaps_loop (perhaps_apply functrans)) |
32349 | 112 |
|> Code.assert_eqns_const thy c |
113 |
(*FIXME in future, the check here should be more accurate wrt. type schemes |
|
114 |
-- perhaps by means of upcoming code certificates with a corresponding |
|
115 |
preprocessor protocol*); |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
116 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
117 |
fun rhs_conv conv thm = Thm.transitive thm ((conv o Thm.rhs_of) thm); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
118 |
|
31957 | 119 |
fun eqn_conv conv = |
120 |
let |
|
121 |
fun lhs_conv ct = if can Thm.dest_comb ct |
|
122 |
then Conv.combination_conv lhs_conv conv ct |
|
123 |
else Conv.all_conv ct; |
|
124 |
in Conv.combination_conv (Conv.arg_conv lhs_conv) conv end; |
|
125 |
||
126 |
val rewrite_eqn = Conv.fconv_rule o eqn_conv o Simplifier.rewrite; |
|
127 |
||
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
128 |
fun term_of_conv thy f = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
129 |
Thm.cterm_of thy |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
130 |
#> f |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
131 |
#> Thm.prop_of |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
132 |
#> Logic.dest_equals |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
133 |
#> snd; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
134 |
|
32345
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
135 |
fun same_arity thy thms = |
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
136 |
let |
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
137 |
val num_args_of = length o snd o strip_comb o fst o Logic.dest_equals; |
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
138 |
val k = fold (curry Int.max o num_args_of o Thm.prop_of) thms 0; |
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
139 |
in map (Code.expand_eta thy k) thms end; |
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
140 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
141 |
fun preprocess thy c eqns = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
142 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
143 |
val pre = (Simplifier.theory_context thy o #pre o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
144 |
val functrans = (map (fn (_, (_, f)) => f thy) o #functrans |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
145 |
o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
146 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
147 |
eqns |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
148 |
|> apply_functrans thy c functrans |
31957 | 149 |
|> (map o apfst) (rewrite_eqn pre) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
150 |
|> (map o apfst) (AxClass.unoverload thy) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
151 |
|> map (Code.assert_eqn thy) |
32345
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
152 |
|> burrow_fst (same_arity thy) |
4da4fa060bb6
cleaned up variable desymbolification and argument expansion
haftmann
parents:
32131
diff
changeset
|
153 |
|> burrow_fst (Code.desymbolize_all_vars thy) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
154 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
155 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
156 |
fun preprocess_conv thy ct = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
157 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
158 |
val pre = (Simplifier.theory_context thy o #pre o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
159 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
160 |
ct |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
161 |
|> Simplifier.rewrite pre |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
162 |
|> rhs_conv (AxClass.unoverload_conv thy) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
163 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
164 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
165 |
fun postprocess_conv thy ct = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
166 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
167 |
val post = (Simplifier.theory_context thy o #post o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
168 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
169 |
ct |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
170 |
|> AxClass.overload_conv thy |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
171 |
|> rhs_conv (Simplifier.rewrite post) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
172 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
173 |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
174 |
fun resubst_triv_consts thy = map_aterms (fn t as Const (c, ty) => Const (Code.resubst_alias thy c, ty) |
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
175 |
| t => t); |
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
176 |
|
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
177 |
fun postprocess_term thy = term_of_conv thy (postprocess_conv thy) #> resubst_triv_consts thy; |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
178 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
179 |
fun print_codeproc thy = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
180 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
181 |
val ctxt = ProofContext.init thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
182 |
val pre = (#pre o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
183 |
val post = (#post o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
184 |
val functrans = (map fst o #functrans o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
185 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
186 |
(Pretty.writeln o Pretty.chunks) [ |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
187 |
Pretty.block [ |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
188 |
Pretty.str "preprocessing simpset:", |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
189 |
Pretty.fbrk, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
190 |
Simplifier.pretty_ss ctxt pre |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
191 |
], |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
192 |
Pretty.block [ |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
193 |
Pretty.str "postprocessing simpset:", |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
194 |
Pretty.fbrk, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
195 |
Simplifier.pretty_ss ctxt post |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
196 |
], |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
197 |
Pretty.block ( |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
198 |
Pretty.str "function transformers:" |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
199 |
:: Pretty.fbrk |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
200 |
:: (Pretty.fbreaks o map Pretty.str) functrans |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
201 |
) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
202 |
] |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
203 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
204 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
205 |
fun simple_functrans f thy eqns = case f thy (map fst eqns) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
206 |
of SOME thms' => SOME (map (rpair (forall snd eqns)) thms') |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
207 |
| NONE => NONE; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
208 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
209 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
210 |
(** sort algebra and code equation graph types **) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
211 |
|
30947 | 212 |
type code_algebra = (sort -> sort) * Sorts.algebra; |
213 |
type code_graph = (((string * sort) list * typ) * (thm * bool) list) Graph.T; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
214 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
215 |
fun eqns eqngr = these o Option.map snd o try (Graph.get_node eqngr); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
216 |
fun typ eqngr = fst o Graph.get_node eqngr; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
217 |
fun all eqngr = Graph.keys eqngr; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
218 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
219 |
fun pretty thy eqngr = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
220 |
AList.make (snd o Graph.get_node eqngr) (Graph.keys eqngr) |
31156 | 221 |
|> (map o apfst) (Code.string_of_const thy) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
222 |
|> sort (string_ord o pairself fst) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
223 |
|> map (fn (s, thms) => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
224 |
(Pretty.block o Pretty.fbreaks) ( |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
225 |
Pretty.str s |
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
32072
diff
changeset
|
226 |
:: map (Display.pretty_thm_global thy o fst) thms |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
227 |
)) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
228 |
|> Pretty.chunks; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
229 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
230 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
231 |
(** the Waisenhaus algorithm **) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
232 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
233 |
(* auxiliary *) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
234 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
235 |
fun is_proper_class thy = can (AxClass.get_info thy); |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
236 |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
237 |
fun complete_proper_sort thy = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
238 |
Sign.complete_sort thy #> filter (is_proper_class thy); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
239 |
|
30029 | 240 |
fun inst_params thy tyco = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
241 |
map (fn (c, _) => AxClass.param_of_inst thy (c, tyco)) |
30029 | 242 |
o maps (#params o AxClass.get_info thy); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
243 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
244 |
fun consts_of thy eqns = [] |> (fold o fold o fold_aterms) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
245 |
(fn Const (c, ty) => insert (op =) (c, Sign.const_typargs thy (c, Logic.unvarifyT ty)) | _ => I) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
246 |
(map (op :: o swap o apfst (snd o strip_comb) o Logic.dest_equals o Thm.plain_prop_of o fst) eqns); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
247 |
|
31957 | 248 |
fun default_typscheme_of thy c = |
249 |
let |
|
31977 | 250 |
val ty = (snd o dest_Const o Term_Subst.zero_var_indexes o curry Const c |
31957 | 251 |
o Type.strip_sorts o Sign.the_const_type thy) c; |
252 |
in case AxClass.class_of_param thy c |
|
253 |
of SOME class => ([(Name.aT, [class])], ty) |
|
254 |
| NONE => Code.typscheme thy (c, ty) |
|
255 |
end; |
|
256 |
||
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
257 |
fun tyscm_rhss_of thy c eqns = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
258 |
let |
31957 | 259 |
val tyscm = case eqns |
260 |
of [] => default_typscheme_of thy c |
|
31156 | 261 |
| ((thm, _) :: _) => Code.typscheme_eqn thy thm; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
262 |
val rhss = consts_of thy eqns; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
263 |
in (tyscm, rhss) end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
264 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
265 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
266 |
(* data structures *) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
267 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
268 |
datatype const = Fun of string | Inst of class * string; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
269 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
270 |
fun const_ord (Fun c1, Fun c2) = fast_string_ord (c1, c2) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
271 |
| const_ord (Inst class_tyco1, Inst class_tyco2) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
272 |
prod_ord fast_string_ord fast_string_ord (class_tyco1, class_tyco2) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
273 |
| const_ord (Fun _, Inst _) = LESS |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
274 |
| const_ord (Inst _, Fun _) = GREATER; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
275 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
276 |
type var = const * int; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
277 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
278 |
structure Vargraph = |
31971
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31962
diff
changeset
|
279 |
Graph(type key = var val ord = prod_ord const_ord int_ord); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
280 |
|
30054 | 281 |
datatype styp = Tyco of string * styp list | Var of var | Free; |
282 |
||
283 |
fun styp_of c_lhs (Type (tyco, tys)) = Tyco (tyco, map (styp_of c_lhs) tys) |
|
284 |
| styp_of c_lhs (TFree (v, _)) = case c_lhs |
|
285 |
of SOME (c, lhs) => Var (Fun c, find_index (fn (v', _) => v = v') lhs) |
|
286 |
| NONE => Free; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
287 |
|
30054 | 288 |
type vardeps_data = ((string * styp list) list * class list) Vargraph.T |
289 |
* (((string * sort) list * (thm * bool) list) Symtab.table |
|
290 |
* (class * string) list); |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
291 |
|
30054 | 292 |
val empty_vardeps_data : vardeps_data = |
293 |
(Vargraph.empty, (Symtab.empty, [])); |
|
294 |
||
30876 | 295 |
|
30054 | 296 |
(* retrieving equations and instances from the background context *) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
297 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
298 |
fun obtain_eqns thy eqngr c = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
299 |
case try (Graph.get_node eqngr) c |
30058 | 300 |
of SOME ((lhs, _), eqns) => ((lhs, []), []) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
301 |
| NONE => let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
302 |
val eqns = Code.these_eqns thy c |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
303 |
|> preprocess thy c; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
304 |
val ((lhs, _), rhss) = tyscm_rhss_of thy c eqns; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
305 |
in ((lhs, rhss), eqns) end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
306 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
307 |
fun obtain_instance thy arities (inst as (class, tyco)) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
308 |
case AList.lookup (op =) arities inst |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
309 |
of SOME classess => (classess, ([], [])) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
310 |
| NONE => let |
30029 | 311 |
val all_classes = complete_proper_sort thy [class]; |
312 |
val superclasses = remove (op =) class all_classes |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
313 |
val classess = map (complete_proper_sort thy) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
314 |
(Sign.arity_sorts thy tyco [class]); |
30029 | 315 |
val inst_params = inst_params thy tyco all_classes; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
316 |
in (classess, (superclasses, inst_params)) end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
317 |
|
30054 | 318 |
|
319 |
(* computing instantiations *) |
|
320 |
||
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
321 |
fun add_classes thy arities eqngr c_k new_classes vardeps_data = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
322 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
323 |
val (styps, old_classes) = Vargraph.get_node (fst vardeps_data) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
324 |
val diff_classes = new_classes |> subtract (op =) old_classes; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
325 |
in if null diff_classes then vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
326 |
else let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
327 |
val c_ks = Vargraph.imm_succs (fst vardeps_data) c_k |> insert (op =) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
328 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
329 |
vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
330 |
|> (apfst o Vargraph.map_node c_k o apsnd) (append diff_classes) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
331 |
|> fold (fn styp => fold (ensure_typmatch_inst thy arities eqngr styp) new_classes) styps |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
332 |
|> fold (fn c_k => add_classes thy arities eqngr c_k diff_classes) c_ks |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
333 |
end end |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
334 |
and add_styp thy arities eqngr c_k tyco_styps vardeps_data = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
335 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
336 |
val (old_styps, classes) = Vargraph.get_node (fst vardeps_data) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
337 |
in if member (op =) old_styps tyco_styps then vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
338 |
else |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
339 |
vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
340 |
|> (apfst o Vargraph.map_node c_k o apfst) (cons tyco_styps) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
341 |
|> fold (ensure_typmatch_inst thy arities eqngr tyco_styps) classes |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
342 |
end |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
343 |
and add_dep thy arities eqngr c_k c_k' vardeps_data = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
344 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
345 |
val (_, classes) = Vargraph.get_node (fst vardeps_data) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
346 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
347 |
vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
348 |
|> add_classes thy arities eqngr c_k' classes |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
349 |
|> apfst (Vargraph.add_edge (c_k, c_k')) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
350 |
end |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
351 |
and ensure_typmatch_inst thy arities eqngr (tyco, styps) class vardeps_data = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
352 |
if can (Sign.arity_sorts thy tyco) [class] |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
353 |
then vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
354 |
|> ensure_inst thy arities eqngr (class, tyco) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
355 |
|> fold_index (fn (k, styp) => |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
356 |
ensure_typmatch thy arities eqngr styp (Inst (class, tyco), k)) styps |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
357 |
else vardeps_data (*permissive!*) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
358 |
and ensure_inst thy arities eqngr (inst as (class, tyco)) (vardeps_data as (_, (_, insts))) = |
30054 | 359 |
if member (op =) insts inst then vardeps_data |
360 |
else let |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
361 |
val (classess, (superclasses, inst_params)) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
362 |
obtain_instance thy arities inst; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
363 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
364 |
vardeps_data |
30054 | 365 |
|> (apsnd o apsnd) (insert (op =) inst) |
30083 | 366 |
|> fold_index (fn (k, _) => |
367 |
apfst (Vargraph.new_node ((Inst (class, tyco), k), ([] ,[])))) classess |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
368 |
|> fold (fn superclass => ensure_inst thy arities eqngr (superclass, tyco)) superclasses |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
369 |
|> fold (ensure_fun thy arities eqngr) inst_params |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
370 |
|> fold_index (fn (k, classes) => |
30075 | 371 |
add_classes thy arities eqngr (Inst (class, tyco), k) classes |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
372 |
#> fold (fn superclass => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
373 |
add_dep thy arities eqngr (Inst (superclass, tyco), k) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
374 |
(Inst (class, tyco), k)) superclasses |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
375 |
#> fold (fn inst_param => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
376 |
add_dep thy arities eqngr (Fun inst_param, k) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
377 |
(Inst (class, tyco), k) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
378 |
) inst_params |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
379 |
) classess |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
380 |
end |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
381 |
and ensure_typmatch thy arities eqngr (Tyco tyco_styps) c_k vardeps_data = |
30054 | 382 |
vardeps_data |
383 |
|> add_styp thy arities eqngr c_k tyco_styps |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
384 |
| ensure_typmatch thy arities eqngr (Var c_k') c_k vardeps_data = |
30054 | 385 |
vardeps_data |
386 |
|> add_dep thy arities eqngr c_k c_k' |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
387 |
| ensure_typmatch thy arities eqngr Free c_k vardeps_data = |
30054 | 388 |
vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
389 |
and ensure_rhs thy arities eqngr (c', styps) vardeps_data = |
30054 | 390 |
vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
391 |
|> ensure_fun thy arities eqngr c' |
30054 | 392 |
|> fold_index (fn (k, styp) => |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
393 |
ensure_typmatch thy arities eqngr styp (Fun c', k)) styps |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
394 |
and ensure_fun thy arities eqngr c (vardeps_data as (_, (eqntab, _))) = |
30054 | 395 |
if Symtab.defined eqntab c then vardeps_data |
396 |
else let |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
397 |
val ((lhs, rhss), eqns) = obtain_eqns thy eqngr c; |
30054 | 398 |
val rhss' = (map o apsnd o map) (styp_of (SOME (c, lhs))) rhss; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
399 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
400 |
vardeps_data |
30054 | 401 |
|> (apsnd o apfst) (Symtab.update_new (c, (lhs, eqns))) |
30083 | 402 |
|> fold_index (fn (k, _) => |
403 |
apfst (Vargraph.new_node ((Fun c, k), ([] ,[])))) lhs |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
404 |
|> fold_index (fn (k, (_, sort)) => |
30083 | 405 |
add_classes thy arities eqngr (Fun c, k) (complete_proper_sort thy sort)) lhs |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
406 |
|> fold (ensure_rhs thy arities eqngr) rhss' |
30054 | 407 |
end; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
408 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
409 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
410 |
(* applying instantiations *) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
411 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
412 |
fun dicts_of thy (proj_sort, algebra) (T, sort) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
413 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
414 |
fun class_relation (x, _) _ = x; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
415 |
fun type_constructor tyco xs class = |
30054 | 416 |
inst_params thy tyco (Sorts.complete_sort algebra [class]) |
417 |
@ (maps o maps) fst xs; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
418 |
fun type_variable (TFree (_, sort)) = map (pair []) (proj_sort sort); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
419 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
420 |
flat (Sorts.of_sort_derivation (Syntax.pp_global thy) algebra |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
421 |
{ class_relation = class_relation, type_constructor = type_constructor, |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
422 |
type_variable = type_variable } (T, proj_sort sort) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
423 |
handle Sorts.CLASS_ERROR _ => [] (*permissive!*)) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
424 |
end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
425 |
|
31957 | 426 |
fun inst_thm thy tvars' thm = |
427 |
let |
|
428 |
val tvars = (Term.add_tvars o Thm.prop_of) thm []; |
|
429 |
val inter_sort = Sorts.inter_sort (Sign.classes_of thy); |
|
430 |
fun mk_inst (tvar as (v, sort)) = case Vartab.lookup tvars' v |
|
431 |
of SOME sort' => SOME (pairself (Thm.ctyp_of thy o TVar) |
|
432 |
(tvar, (v, inter_sort (sort, sort')))) |
|
433 |
| NONE => NONE; |
|
434 |
val insts = map_filter mk_inst tvars; |
|
435 |
in Thm.instantiate (insts, []) thm end; |
|
436 |
||
30054 | 437 |
fun add_arity thy vardeps (class, tyco) = |
30058 | 438 |
AList.default (op =) |
30054 | 439 |
((class, tyco), map (fn k => (snd o Vargraph.get_node vardeps) (Inst (class, tyco), k)) |
440 |
(0 upto Sign.arity_number thy tyco - 1)); |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
441 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
442 |
fun add_eqs thy vardeps (c, (proto_lhs, proto_eqns)) (rhss, eqngr) = |
30058 | 443 |
if can (Graph.get_node eqngr) c then (rhss, eqngr) |
444 |
else let |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
445 |
val lhs = map_index (fn (k, (v, _)) => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
446 |
(v, snd (Vargraph.get_node vardeps (Fun c, k)))) proto_lhs; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
447 |
val inst_tab = Vartab.empty |> fold (fn (v, sort) => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
448 |
Vartab.update ((v, 0), sort)) lhs; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
449 |
val eqns = proto_eqns |
31957 | 450 |
|> (map o apfst) (inst_thm thy inst_tab); |
30054 | 451 |
val (tyscm, rhss') = tyscm_rhss_of thy c eqns; |
452 |
val eqngr' = Graph.new_node (c, (tyscm, eqns)) eqngr; |
|
453 |
in (map (pair c) rhss' @ rhss, eqngr') end; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
454 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
455 |
fun extend_arities_eqngr thy cs ts (arities, eqngr) = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
456 |
let |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
457 |
val cs_rhss = (fold o fold_aterms) (fn Const (c_ty as (c, _)) => |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
458 |
insert (op =) (c, (map (styp_of NONE) o Sign.const_typargs thy) c_ty) | _ => I) ts []; |
30054 | 459 |
val (vardeps, (eqntab, insts)) = empty_vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
460 |
|> fold (ensure_fun thy arities eqngr) cs |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
461 |
|> fold (ensure_rhs thy arities eqngr) cs_rhss; |
30054 | 462 |
val arities' = fold (add_arity thy vardeps) insts arities; |
30064 | 463 |
val pp = Syntax.pp_global thy; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
464 |
val algebra = Sorts.subalgebra pp (is_proper_class thy) |
30064 | 465 |
(AList.lookup (op =) arities') (Sign.classes_of thy); |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
466 |
val (rhss, eqngr') = Symtab.fold (add_eqs thy vardeps) eqntab ([], eqngr); |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
467 |
fun deps_of (c, rhs) = c :: maps (dicts_of thy algebra) |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
468 |
(rhs ~~ (map snd o fst o fst o Graph.get_node eqngr') c); |
30054 | 469 |
val eqngr'' = fold (fn (c, rhs) => fold |
470 |
(curry Graph.add_edge c) (deps_of rhs)) rhss eqngr'; |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
471 |
in (algebra, (arities', eqngr'')) end; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
472 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
473 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
474 |
(** store for preprocessed arities and code equations **) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
475 |
|
31962 | 476 |
structure Wellsorted = Code_Data_Fun |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
477 |
( |
30947 | 478 |
type T = ((string * class) * sort list) list * code_graph; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
479 |
val empty = ([], Graph.empty); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
480 |
fun purge thy cs (arities, eqngr) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
481 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
482 |
val del_cs = ((Graph.all_preds eqngr |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
483 |
o filter (can (Graph.get_node eqngr))) cs); |
30050
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
484 |
val del_arities = del_cs |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
485 |
|> map_filter (AxClass.inst_of_param thy) |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
486 |
|> maps (fn (c, tyco) => |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
487 |
(map (rpair tyco) o Sign.complete_sort thy o the_list |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
488 |
o AxClass.class_of_param thy) c); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
489 |
val arities' = fold (AList.delete (op =)) del_arities arities; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
490 |
val eqngr' = Graph.del_nodes del_cs eqngr; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
491 |
in (arities', eqngr') end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
492 |
); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
493 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
494 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
495 |
(** retrieval and evaluation interfaces **) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
496 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
497 |
fun obtain thy cs ts = apsnd snd |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
498 |
(Wellsorted.change_yield thy (extend_arities_eqngr thy cs ts)); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
499 |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
500 |
fun prepare_sorts_typ prep_sort |
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
501 |
= map_type_tfree (fn (v, sort) => TFree (v, prep_sort sort)); |
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
502 |
|
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
503 |
fun prepare_sorts prep_sort (Const (c, ty)) = |
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
504 |
Const (c, prepare_sorts_typ prep_sort ty) |
30947 | 505 |
| prepare_sorts prep_sort (t1 $ t2) = |
506 |
prepare_sorts prep_sort t1 $ prepare_sorts prep_sort t2 |
|
507 |
| prepare_sorts prep_sort (Abs (v, ty, t)) = |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
508 |
Abs (v, prepare_sorts_typ prep_sort ty, prepare_sorts prep_sort t) |
30947 | 509 |
| prepare_sorts _ (t as Bound _) = t; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
510 |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
511 |
fun gen_eval thy cterm_of conclude_evaluation evaluator proto_ct = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
512 |
let |
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
513 |
val pp = Syntax.pp_global thy; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
514 |
val ct = cterm_of proto_ct; |
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
515 |
val _ = (Sign.no_frees pp o map_types (K dummyT) o Sign.no_vars pp) |
30947 | 516 |
(Thm.term_of ct); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
517 |
val thm = preprocess_conv thy ct; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
518 |
val ct' = Thm.rhs_of thm; |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
519 |
val t' = Thm.term_of ct'; |
30947 | 520 |
val vs = Term.add_tfrees t' []; |
521 |
val consts = fold_aterms |
|
522 |
(fn Const (c, _) => insert (op =) c | _ => I) t' []; |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
523 |
|
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
524 |
val add_triv_classes = curry (Sorts.inter_sort (Sign.classes_of thy)) |
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
525 |
(Code.triv_classes thy); |
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
526 |
val t'' = prepare_sorts add_triv_classes t'; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
527 |
val (algebra', eqngr') = obtain thy consts [t'']; |
30947 | 528 |
in conclude_evaluation (evaluator algebra' eqngr' vs t'' ct') thm end; |
529 |
||
530 |
fun simple_evaluator evaluator algebra eqngr vs t ct = |
|
531 |
evaluator algebra eqngr vs t; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
532 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
533 |
fun eval_conv thy = |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
534 |
let |
30947 | 535 |
fun conclude_evaluation thm2 thm1 = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
536 |
let |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
537 |
val thm3 = postprocess_conv thy (Thm.rhs_of thm2); |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
538 |
in |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
539 |
Thm.transitive thm1 (Thm.transitive thm2 thm3) handle THM _ => |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
540 |
error ("could not construct evaluation proof:\n" |
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
32072
diff
changeset
|
541 |
^ (cat_lines o map (Display.string_of_thm_global thy)) [thm1, thm2, thm3]) |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
542 |
end; |
30947 | 543 |
in gen_eval thy I conclude_evaluation end; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
544 |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
545 |
fun eval thy postproc evaluator = gen_eval thy (Thm.cterm_of thy) |
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
546 |
(K o postproc (postprocess_term thy)) (simple_evaluator evaluator); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
547 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
548 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
549 |
(** setup **) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
550 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
551 |
val setup = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
552 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
553 |
fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I); |
32072 | 554 |
fun add_del_attribute_parser add del = |
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31977
diff
changeset
|
555 |
Attrib.add_del (mk_attribute add) (mk_attribute del); |
32072 | 556 |
fun both f g thm = f thm #> g thm; |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
557 |
in |
32072 | 558 |
Attrib.setup @{binding code_unfold} (add_del_attribute_parser |
559 |
(both Codegen.add_unfold add_unfold) (both Codegen.del_unfold del_unfold)) |
|
560 |
"preprocessing equations for code generators" |
|
561 |
#> Attrib.setup @{binding code_inline} (add_del_attribute_parser add_unfold del_unfold) |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31977
diff
changeset
|
562 |
"preprocessing equations for code generator" |
32072 | 563 |
#> Attrib.setup @{binding code_post} (add_del_attribute_parser add_post del_post) |
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31977
diff
changeset
|
564 |
"postprocessing equations for code generator" |
32072 | 565 |
#> Attrib.setup @{binding code_unfold_post} (Scan.succeed (mk_attribute add_unfold_post)) |
566 |
"pre- and postprocessing equations for code generator" |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
567 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
568 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
569 |
val _ = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
570 |
OuterSyntax.improper_command "print_codeproc" "print code preprocessor setup" |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
571 |
OuterKeyword.diag (Scan.succeed |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
572 |
(Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
573 |
(print_codeproc o Toplevel.theory_of))); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
574 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
575 |
end; (*struct*) |