author | blanchet |
Fri, 01 Aug 2014 16:07:33 +0200 | |
changeset 57757 | a30a3d5aaec2 |
parent 57735 | 056a55b44ec7 |
child 58843 | 521cea5fa777 |
permissions | -rw-r--r-- |
48380 | 1 |
(* Title: HOL/Tools/Sledgehammer/sledgehammer_mash.ML |
48248 | 2 |
Author: Jasmin Blanchette, TU Muenchen |
57009 | 3 |
Author: Cezary Kaliszyk, University of Innsbruck |
48248 | 4 |
|
5 |
Sledgehammer's machine-learning-based relevance filter (MaSh). |
|
6 |
*) |
|
7 |
||
48381 | 8 |
signature SLEDGEHAMMER_MASH = |
48248 | 9 |
sig |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
10 |
type stature = ATP_Problem_Generate.stature |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
11 |
type raw_fact = Sledgehammer_Fact.raw_fact |
48296
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
12 |
type fact = Sledgehammer_Fact.fact |
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
13 |
type fact_override = Sledgehammer_Fact.fact_override |
55201 | 14 |
type params = Sledgehammer_Prover.params |
15 |
type prover_result = Sledgehammer_Prover.prover_result |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
16 |
|
48308 | 17 |
val trace : bool Config.T |
57150
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
18 |
val duplicates : bool Config.T |
51008 | 19 |
val MePoN : string |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
20 |
val MaShN : string |
51008 | 21 |
val MeShN : string |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
22 |
val mepoN : string |
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
23 |
val mashN : string |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
24 |
val meshN : string |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
25 |
val unlearnN : string |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
26 |
val learn_isarN : string |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
27 |
val learn_proverN : string |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
28 |
val relearn_isarN : string |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
29 |
val relearn_proverN : string |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
30 |
val fact_filters : string list |
50826 | 31 |
val encode_str : string -> string |
32 |
val encode_strs : string list -> string |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
33 |
val decode_str : string -> string |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
34 |
val decode_strs : string -> string list |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
35 |
|
57532 | 36 |
datatype mash_algorithm = |
57458 | 37 |
MaSh_NB |
57459 | 38 |
| MaSh_kNN |
39 |
| MaSh_NB_kNN |
|
57458 | 40 |
| MaSh_NB_Ext |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
41 |
| MaSh_kNN_Ext |
57106 | 42 |
|
57120 | 43 |
val is_mash_enabled : unit -> bool |
57532 | 44 |
val the_mash_algorithm : unit -> mash_algorithm |
57557 | 45 |
val str_of_mash_algorithm : mash_algorithm -> string |
57120 | 46 |
|
57459 | 47 |
val mesh_facts : ('a * 'a -> bool) -> int -> (real * (('a * real) list * 'a list)) list -> 'a list |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
48 |
val nickname_of_thm : thm -> string |
57006 | 49 |
val find_suggested_facts : Proof.context -> ('b * thm) list -> string list -> ('b * thm) list |
51135 | 50 |
val crude_thm_ord : thm * thm -> order |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
51 |
val thm_less : thm * thm -> bool |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
52 |
val goal_of_thm : theory -> thm -> thm |
57006 | 53 |
val run_prover_for_mash : Proof.context -> params -> string -> string -> fact list -> thm -> |
54 |
prover_result |
|
57406 | 55 |
val features_of : Proof.context -> theory -> stature -> term list -> string list |
51177 | 56 |
val trim_dependencies : string list -> string list option |
57306
ff10067b2248
optimized traversal of proof terms by skipping bad apples (e.g. full_exhaustive_int'.pinduct)
blanchet
parents:
57305
diff
changeset
|
57 |
val isar_dependencies_of : string Symtab.table * string Symtab.table -> thm -> string list option |
57006 | 58 |
val prover_dependencies_of : Proof.context -> params -> string -> int -> raw_fact list -> |
59 |
string Symtab.table * string Symtab.table -> thm -> bool * string list |
|
60 |
val attach_parents_to_facts : ('a * thm) list -> ('a * thm) list -> |
|
61 |
(string list * ('a * thm)) list |
|
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
62 |
val num_extra_feature_facts : int |
53141
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
63 |
val extra_feature_factor : real |
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
64 |
val weight_facts_smoothly : 'a list -> ('a * real) list |
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
65 |
val weight_facts_steeply : 'a list -> ('a * real) list |
57432 | 66 |
val find_mash_suggestions : Proof.context -> int -> string list -> ('a * thm) list -> |
67 |
('a * thm) list -> ('a * thm) list -> ('a * thm) list * ('a * thm) list |
|
57407
140e16bc2a40
use right theory name for theorems in evaluation driver
blanchet
parents:
57406
diff
changeset
|
68 |
val mash_suggested_facts : Proof.context -> theory -> params -> int -> term list -> term -> |
140e16bc2a40
use right theory name for theorems in evaluation driver
blanchet
parents:
57406
diff
changeset
|
69 |
raw_fact list -> fact list * fact list |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
70 |
|
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
71 |
val mash_unlearn : unit -> unit |
54503 | 72 |
val mash_learn_proof : Proof.context -> params -> term -> ('a * thm) list -> thm list -> unit |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
73 |
val mash_learn_facts : Proof.context -> params -> string -> int -> bool -> Time.time -> |
57120 | 74 |
raw_fact list -> string |
57006 | 75 |
val mash_learn : Proof.context -> params -> fact_override -> thm list -> bool -> unit |
57432 | 76 |
val mash_can_suggest_facts : Proof.context -> bool |
53819
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
77 |
|
57108
dc0b4f50e288
more generous max number of suggestions, for more safety
blanchet
parents:
57107
diff
changeset
|
78 |
val generous_max_suggestions : int -> int |
50814 | 79 |
val mepo_weight : real |
80 |
val mash_weight : real |
|
57006 | 81 |
val relevant_facts : Proof.context -> params -> string -> int -> fact_override -> term list -> |
82 |
term -> raw_fact list -> (string * fact list) list |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
83 |
val kill_learners : unit -> unit |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
84 |
val running_learners : unit -> unit |
48248 | 85 |
end; |
86 |
||
48381 | 87 |
structure Sledgehammer_MaSh : SLEDGEHAMMER_MASH = |
48248 | 88 |
struct |
48249 | 89 |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
90 |
open ATP_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
91 |
open ATP_Problem_Generate |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
92 |
open Sledgehammer_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
93 |
open Sledgehammer_Fact |
55201 | 94 |
open Sledgehammer_Prover |
55202
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
blanchet
parents:
55201
diff
changeset
|
95 |
open Sledgehammer_Prover_Minimize |
48381 | 96 |
open Sledgehammer_MePo |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
97 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
98 |
val trace = Attrib.setup_config_bool @{binding sledgehammer_mash_trace} (K false) |
57150
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
99 |
val duplicates = Attrib.setup_config_bool @{binding sledgehammer_fact_duplicates} (K false) |
51032
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
100 |
|
48308 | 101 |
fun trace_msg ctxt msg = if Config.get ctxt trace then tracing (msg ()) else () |
102 |
||
57150
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
103 |
fun gen_eq_thm ctxt = if Config.get ctxt duplicates then Thm.eq_thm_strict else Thm.eq_thm_prop |
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
104 |
|
51008 | 105 |
val MePoN = "MePo" |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
106 |
val MaShN = "MaSh" |
51008 | 107 |
val MeShN = "MeSh" |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
108 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
109 |
val mepoN = "mepo" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
110 |
val mashN = "mash" |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
111 |
val meshN = "mesh" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
112 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
113 |
val fact_filters = [meshN, mepoN, mashN] |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
114 |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
115 |
val unlearnN = "unlearn" |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
116 |
val learn_isarN = "learn_isar" |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
117 |
val learn_proverN = "learn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
118 |
val relearn_isarN = "relearn_isar" |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
119 |
val relearn_proverN = "relearn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
120 |
|
57368 | 121 |
fun map_array_at ary f i = Array.update (ary, i, f (Array.sub (ary, i))) |
122 |
||
57371 | 123 |
type xtab = int * int Symtab.table |
124 |
||
125 |
val empty_xtab = (0, Symtab.empty) |
|
126 |
||
127 |
fun add_to_xtab key (next, tab) = (next + 1, Symtab.update_new (key, next) tab) |
|
128 |
fun maybe_add_to_xtab key = perhaps (try (add_to_xtab key)) |
|
129 |
||
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
130 |
fun state_file () = Path.expand (Path.explode "$ISABELLE_HOME_USER/mash_state") |
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
131 |
val remove_state_file = try File.rm o state_file |
48330 | 132 |
|
57532 | 133 |
datatype mash_algorithm = |
57458 | 134 |
MaSh_NB |
57459 | 135 |
| MaSh_kNN |
136 |
| MaSh_NB_kNN |
|
57458 | 137 |
| MaSh_NB_Ext |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
138 |
| MaSh_kNN_Ext |
57278 | 139 |
|
57554 | 140 |
(* TODO: eliminate "MASH" environment variable after Isabelle2014 release *) |
57532 | 141 |
fun mash_algorithm () = |
57089 | 142 |
let val flag1 = Options.default_string @{system_option MaSh} in |
57028 | 143 |
(case if flag1 <> "none" (* default *) then flag1 else getenv "MASH" of |
57462 | 144 |
"yes" => SOME MaSh_NB_kNN |
145 |
| "sml" => SOME MaSh_NB_kNN |
|
57458 | 146 |
| "nb" => SOME MaSh_NB |
57459 | 147 |
| "knn" => SOME MaSh_kNN |
148 |
| "nb_knn" => SOME MaSh_NB_kNN |
|
57458 | 149 |
| "nb_ext" => SOME MaSh_NB_Ext |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
150 |
| "knn_ext" => SOME MaSh_kNN_Ext |
57554 | 151 |
| "" => NONE |
57532 | 152 |
| algorithm => (warning ("Unknown MaSh algorithm: " ^ quote algorithm ^ "."); NONE)) |
57028 | 153 |
end |
57018 | 154 |
|
57532 | 155 |
val is_mash_enabled = is_some o mash_algorithm |
156 |
val the_mash_algorithm = the_default MaSh_NB_kNN o mash_algorithm |
|
57018 | 157 |
|
57557 | 158 |
fun str_of_mash_algorithm MaSh_NB = "nb" |
159 |
| str_of_mash_algorithm MaSh_kNN = "knn" |
|
160 |
| str_of_mash_algorithm MaSh_NB_kNN = "nb_knn" |
|
161 |
| str_of_mash_algorithm MaSh_NB_Ext = "nb_ext" |
|
162 |
| str_of_mash_algorithm MaSh_kNN_Ext = "knn_ext" |
|
163 |
||
57459 | 164 |
fun scaled_avg [] = 0 |
165 |
| scaled_avg xs = Real.ceil (100000000.0 * fold (curry (op +)) xs 0.0) div length xs |
|
166 |
||
167 |
fun avg [] = 0.0 |
|
168 |
| avg xs = fold (curry (op +)) xs 0.0 / Real.fromInt (length xs) |
|
169 |
||
170 |
fun normalize_scores _ [] = [] |
|
171 |
| normalize_scores max_facts xs = |
|
172 |
map (apsnd (curry Real.* (1.0 / avg (map snd (take max_facts xs))))) xs |
|
173 |
||
174 |
fun mesh_facts fact_eq max_facts [(_, (sels, unks))] = |
|
175 |
distinct fact_eq (map fst (take max_facts sels) @ take (max_facts - length sels) unks) |
|
176 |
| mesh_facts fact_eq max_facts mess = |
|
177 |
let |
|
178 |
val mess = mess |> map (apsnd (apfst (normalize_scores max_facts))) |
|
179 |
||
180 |
fun score_in fact (global_weight, (sels, unks)) = |
|
181 |
let val score_at = try (nth sels) #> Option.map (fn (_, score) => global_weight * score) in |
|
182 |
(case find_index (curry fact_eq fact o fst) sels of |
|
183 |
~1 => if member fact_eq unks fact then NONE else SOME 0.0 |
|
184 |
| rank => score_at rank) |
|
185 |
end |
|
186 |
||
187 |
fun weight_of fact = mess |> map_filter (score_in fact) |> scaled_avg |
|
188 |
in |
|
189 |
fold (union fact_eq o map fst o take max_facts o fst o snd) mess [] |
|
57460 | 190 |
|> map (`weight_of) |> sort (int_ord o pairself fst o swap) |
57459 | 191 |
|> map snd |> take max_facts |
192 |
end |
|
193 |
||
194 |
fun smooth_weight_of_fact rank = Math.pow (1.3, 15.5 - 0.2 * Real.fromInt rank) + 15.0 (* FUDGE *) |
|
195 |
fun steep_weight_of_fact rank = Math.pow (0.62, log2 (Real.fromInt (rank + 1))) (* FUDGE *) |
|
196 |
||
197 |
fun weight_facts_smoothly facts = facts ~~ map smooth_weight_of_fact (0 upto length facts - 1) |
|
198 |
fun weight_facts_steeply facts = facts ~~ map steep_weight_of_fact (0 upto length facts - 1) |
|
199 |
||
57660 | 200 |
fun sort_array_suffix cmp needed a = |
57009 | 201 |
let |
57406 | 202 |
exception BOTTOM of int |
203 |
||
57460 | 204 |
val al = Array.length a |
205 |
||
57009 | 206 |
fun maxson l i = |
57017 | 207 |
let val i31 = i + i + i + 1 in |
57009 | 208 |
if i31 + 2 < l then |
57017 | 209 |
let val x = Unsynchronized.ref i31 in |
210 |
if cmp (Array.sub (a, i31), Array.sub (a, i31 + 1)) = LESS then x := i31 + 1 else (); |
|
211 |
if cmp (Array.sub (a, !x), Array.sub (a, i31 + 2)) = LESS then x := i31 + 2 else (); |
|
57009 | 212 |
!x |
213 |
end |
|
214 |
else |
|
215 |
if i31 + 1 < l andalso cmp (Array.sub (a, i31), Array.sub (a, i31 + 1)) = LESS |
|
216 |
then i31 + 1 else if i31 < l then i31 else raise BOTTOM i |
|
217 |
end |
|
218 |
||
219 |
fun trickledown l i e = |
|
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
220 |
let val j = maxson l i in |
57009 | 221 |
if cmp (Array.sub (a, j), e) = GREATER then |
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
222 |
(Array.update (a, i, Array.sub (a, j)); trickledown l j e) |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
223 |
else |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
224 |
Array.update (a, i, e) |
57009 | 225 |
end |
226 |
||
227 |
fun trickle l i e = trickledown l i e handle BOTTOM i => Array.update (a, i, e) |
|
228 |
||
229 |
fun bubbledown l i = |
|
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
230 |
let val j = maxson l i in |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
231 |
Array.update (a, i, Array.sub (a, j)); |
57009 | 232 |
bubbledown l j |
233 |
end |
|
234 |
||
235 |
fun bubble l i = bubbledown l i handle BOTTOM i => i |
|
236 |
||
237 |
fun trickleup i e = |
|
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
238 |
let val father = (i - 1) div 3 in |
57009 | 239 |
if cmp (Array.sub (a, father), e) = LESS then |
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
240 |
(Array.update (a, i, Array.sub (a, father)); |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
241 |
if father > 0 then trickleup father e else Array.update (a, 0, e)) |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
242 |
else |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
243 |
Array.update (a, i, e) |
57009 | 244 |
end |
245 |
||
57355 | 246 |
fun for i = if i < 0 then () else (trickle al i (Array.sub (a, i)); for (i - 1)) |
57009 | 247 |
|
248 |
fun for2 i = |
|
57660 | 249 |
if i < Integer.max 2 (al - needed) then |
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
250 |
() |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
251 |
else |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
252 |
let val e = Array.sub (a, i) in |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
253 |
Array.update (a, i, Array.sub (a, 0)); |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
254 |
trickleup (bubble i 0) e; |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
255 |
for2 (i - 1) |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
256 |
end |
57009 | 257 |
in |
57355 | 258 |
for (((al + 1) div 3) - 1); |
259 |
for2 (al - 1); |
|
260 |
if al > 1 then |
|
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
261 |
let val e = Array.sub (a, 1) in |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
262 |
Array.update (a, 1, Array.sub (a, 0)); |
57009 | 263 |
Array.update (a, 0, e) |
264 |
end |
|
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
265 |
else |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
266 |
() |
57009 | 267 |
end |
268 |
||
57660 | 269 |
fun rev_sort_list_prefix cmp needed xs = |
57460 | 270 |
let val ary = Array.fromList xs in |
57660 | 271 |
sort_array_suffix cmp needed ary; |
272 |
Array.foldl (op ::) [] ary |
|
57460 | 273 |
end |
274 |
||
275 |
||
276 |
(*** Isabelle-agnostic machine learning ***) |
|
277 |
||
278 |
structure MaSh = |
|
279 |
struct |
|
280 |
||
57574 | 281 |
fun select_visible_facts (big_number : real) recommends = |
57364 | 282 |
List.app (fn at => |
283 |
let val (j, ov) = Array.sub (recommends, at) in |
|
57371 | 284 |
Array.update (recommends, at, (j, big_number + ov)) |
57364 | 285 |
end) |
286 |
||
57374 | 287 |
fun wider_array_of_vector init vec = |
288 |
let val ary = Array.array init in |
|
289 |
Array.copyVec {src = vec, dst = ary, di = 0}; |
|
290 |
ary |
|
291 |
end |
|
292 |
||
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
293 |
val nb_def_prior_weight = 1000 (* FUDGE *) |
57095 | 294 |
|
57374 | 295 |
fun learn_facts (tfreq0, sfreq0, dffreq0) num_facts0 num_facts num_feats depss featss = |
57354 | 296 |
let |
57374 | 297 |
val tfreq = wider_array_of_vector (num_facts, 0) tfreq0 |
298 |
val sfreq = wider_array_of_vector (num_facts, Inttab.empty) sfreq0 |
|
299 |
val dffreq = wider_array_of_vector (num_feats, 0) dffreq0 |
|
300 |
||
301 |
fun learn_one th feats deps = |
|
57354 | 302 |
let |
57355 | 303 |
fun add_th weight t = |
304 |
let |
|
305 |
val im = Array.sub (sfreq, t) |
|
57374 | 306 |
fun fold_fn s = Inttab.map_default (s, 0) (Integer.add weight) |
57355 | 307 |
in |
57368 | 308 |
map_array_at tfreq (Integer.add weight) t; |
57355 | 309 |
Array.update (sfreq, t, fold fold_fn feats im) |
310 |
end |
|
311 |
||
57368 | 312 |
val add_sym = map_array_at dffreq (Integer.add 1) |
57354 | 313 |
in |
57355 | 314 |
add_th nb_def_prior_weight th; |
315 |
List.app (add_th 1) deps; |
|
316 |
List.app add_sym feats |
|
57354 | 317 |
end |
318 |
||
57102 | 319 |
fun for i = |
57383 | 320 |
if i = num_facts then () |
321 |
else (learn_one i (Vector.sub (featss, i)) (Vector.sub (depss, i)); for (i + 1)) |
|
57102 | 322 |
in |
57383 | 323 |
for num_facts0; |
57374 | 324 |
(Array.vector tfreq, Array.vector sfreq, Array.vector dffreq) |
57102 | 325 |
end |
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
326 |
|
57376 | 327 |
fun naive_bayes (tfreq, sfreq, dffreq) num_facts max_suggs visible_facts goal_feats = |
57278 | 328 |
let |
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
329 |
val tau = 0.2 (* FUDGE *) |
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
330 |
val pos_weight = 5.0 (* FUDGE *) |
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
331 |
val def_val = ~18.0 (* FUDGE *) |
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
332 |
val init_val = 30.0 (* FUDGE *) |
57124 | 333 |
|
57366 | 334 |
val ln_afreq = Math.ln (Real.fromInt num_facts) |
57374 | 335 |
val idf = Vector.map (fn i => ln_afreq - Math.ln (Real.fromInt i)) dffreq |
57366 | 336 |
|
57359 | 337 |
fun tfidf feat = Vector.sub (idf, feat) |
57102 | 338 |
|
339 |
fun log_posterior i = |
|
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
340 |
let |
57374 | 341 |
val tfreq = Real.fromInt (Vector.sub (tfreq, i)) |
57097 | 342 |
|
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
343 |
fun add_feat (f, fw0) (res, sfh) = |
57102 | 344 |
(case Inttab.lookup sfh f of |
345 |
SOME sf => |
|
57401
02f56126b4e4
reintroduced 'extra features' but with lower weight than before (to account for tfidf)
blanchet
parents:
57387
diff
changeset
|
346 |
(res + fw0 * tfidf f * Math.ln (pos_weight * Real.fromInt sf / tfreq), |
57102 | 347 |
Inttab.delete f sfh) |
57409 | 348 |
| NONE => (res + fw0 * tfidf f * def_val, sfh)) |
57097 | 349 |
|
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
350 |
val (res, sfh) = fold add_feat goal_feats (init_val * Math.ln tfreq, Vector.sub (sfreq, i)) |
57097 | 351 |
|
57409 | 352 |
fun fold_sfh (f, sf) sow = |
353 |
sow + tfidf f * Math.ln (1.0 + (1.0 - Real.fromInt sf) / tfreq) |
|
57097 | 354 |
|
57102 | 355 |
val sum_of_weights = Inttab.fold fold_sfh sfh 0.0 |
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
356 |
in |
57278 | 357 |
res + tau * sum_of_weights |
57097 | 358 |
end |
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
359 |
|
57356 | 360 |
val posterior = Array.tabulate (num_facts, (fn j => (j, log_posterior j))) |
57102 | 361 |
|
57364 | 362 |
fun ret at acc = |
363 |
if at = num_facts then acc else ret (at + 1) (Array.sub (posterior, at) :: acc) |
|
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
364 |
in |
57371 | 365 |
select_visible_facts 100000.0 posterior visible_facts; |
57660 | 366 |
sort_array_suffix (Real.compare o pairself snd) max_suggs posterior; |
57364 | 367 |
ret (Integer.max 0 (num_facts - max_suggs)) [] |
57029
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
368 |
end |
75cc30d2b83f
added naive Bayes ML implementation, due to Cezary Kaliszyk (like k-NN)
blanchet
parents:
57028
diff
changeset
|
369 |
|
57546 | 370 |
val initial_number_of_nearest_neighbors = 1 |
57458 | 371 |
|
57459 | 372 |
fun k_nearest_neighbors dffreq num_facts num_feats depss featss max_suggs visible_facts goal_feats = |
57458 | 373 |
let |
374 |
exception EXIT of unit |
|
375 |
||
376 |
val ln_afreq = Math.ln (Real.fromInt num_facts) |
|
377 |
fun tfidf feat = ln_afreq - Math.ln (Real.fromInt (Vector.sub (dffreq, feat))) |
|
378 |
||
379 |
val overlaps_sqr = Array.tabulate (num_facts, rpair 0.0) |
|
380 |
||
57459 | 381 |
val feat_facts = Array.array (num_feats, []) |
382 |
val _ = Vector.foldl (fn (feats, fact) => |
|
383 |
(List.app (map_array_at feat_facts (cons fact)) feats; fact + 1)) 0 featss |
|
384 |
||
57458 | 385 |
fun do_feat (s, sw0) = |
386 |
let |
|
387 |
val sw = sw0 * tfidf s |
|
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
388 |
val w6 = Math.pow (sw, 6.0) |
57458 | 389 |
|
390 |
fun inc_overlap j = |
|
391 |
let val (_, ov) = Array.sub (overlaps_sqr, j) in |
|
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
392 |
Array.update (overlaps_sqr, j, (j, w6 + ov)) |
57458 | 393 |
end |
394 |
in |
|
395 |
List.app inc_overlap (Array.sub (feat_facts, s)) |
|
396 |
end |
|
397 |
||
398 |
val _ = List.app do_feat goal_feats |
|
57660 | 399 |
val _ = sort_array_suffix (Real.compare o pairself snd) num_facts overlaps_sqr |
57458 | 400 |
val no_recommends = Unsynchronized.ref 0 |
401 |
val recommends = Array.tabulate (num_facts, rpair 0.0) |
|
402 |
val age = Unsynchronized.ref 500000000.0 |
|
403 |
||
404 |
fun inc_recommend v j = |
|
405 |
let val (_, ov) = Array.sub (recommends, j) in |
|
406 |
if ov <= 0.0 then |
|
407 |
(no_recommends := !no_recommends + 1; Array.update (recommends, j, (j, !age + ov))) |
|
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
408 |
else Array.update (recommends, j, (j, v + ov)) |
57458 | 409 |
end |
410 |
||
411 |
val k = Unsynchronized.ref 0 |
|
412 |
fun do_k k = |
|
413 |
if k >= num_facts then |
|
414 |
raise EXIT () |
|
415 |
else |
|
416 |
let |
|
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
417 |
val deps_factor = 2.7 (* FUDGE *) |
57458 | 418 |
val (j, o2) = Array.sub (overlaps_sqr, num_facts - k - 1) |
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
419 |
val _ = inc_recommend o2 j |
57458 | 420 |
val ds = Vector.sub (depss, j) |
421 |
val l = Real.fromInt (length ds) |
|
422 |
in |
|
57531
4d9895d39b59
improvements to the machine learning algos (due to Cezary K.)
blanchet
parents:
57462
diff
changeset
|
423 |
List.app (inc_recommend (deps_factor * o2 / l)) ds |
57458 | 424 |
end |
425 |
||
426 |
fun while1 () = |
|
57546 | 427 |
if !k = initial_number_of_nearest_neighbors then () else (do_k (!k); k := !k + 1; while1 ()) |
57458 | 428 |
handle EXIT () => () |
429 |
||
430 |
fun while2 () = |
|
431 |
if !no_recommends >= max_suggs then () |
|
432 |
else (do_k (!k); k := !k + 1; age := !age - 10000.0; while2 ()) |
|
433 |
handle EXIT () => () |
|
434 |
||
435 |
fun ret acc at = |
|
436 |
if at = num_facts then acc else ret (Array.sub (recommends, at) :: acc) (at + 1) |
|
437 |
in |
|
438 |
while1 (); |
|
439 |
while2 (); |
|
440 |
select_visible_facts 1000000000.0 recommends visible_facts; |
|
57660 | 441 |
sort_array_suffix (Real.compare o pairself snd) max_suggs recommends; |
57458 | 442 |
ret [] (Integer.max 0 (num_facts - max_suggs)) |
443 |
end |
|
444 |
||
57125
2f620ef839ee
added another way of invoking Python code, for experiments
blanchet
parents:
57124
diff
changeset
|
445 |
(* experimental *) |
57376 | 446 |
fun external_tool tool max_suggs learns goal_feats = |
57291 | 447 |
let |
57297 | 448 |
val ser = string_of_int (serial ()) (* poor person's attempt at thread-safety *) |
449 |
val ocs = TextIO.openOut ("adv_syms" ^ ser) |
|
450 |
val ocd = TextIO.openOut ("adv_deps" ^ ser) |
|
451 |
val ocq = TextIO.openOut ("adv_seq" ^ ser) |
|
452 |
val occ = TextIO.openOut ("adv_conj" ^ ser) |
|
57296 | 453 |
|
57291 | 454 |
fun os oc s = TextIO.output (oc, s) |
57296 | 455 |
|
57297 | 456 |
fun ol _ _ _ [] = () |
457 |
| ol _ f _ [e] = f e |
|
57291 | 458 |
| ol oc f sep (h :: t) = (f h; os oc sep; ol oc f sep t) |
57296 | 459 |
|
57294
ef9d4e1ceb00
use strings to communicate with external process, to ease debugging
blanchet
parents:
57291
diff
changeset
|
460 |
fun do_learn (name, feats, deps) = |
57357 | 461 |
(os ocs name; os ocs ":"; ol ocs (os ocs o quote) ", " feats; os ocs "\n"; |
57297 | 462 |
os ocd name; os ocd ":"; ol ocd (os ocd) " " deps; os ocd "\n"; os ocq name; os ocq "\n") |
57296 | 463 |
|
57291 | 464 |
fun forkexec no = |
465 |
let |
|
466 |
val cmd = |
|
57297 | 467 |
"~/misc/" ^ tool ^ " adv_syms" ^ ser ^ " adv_deps" ^ ser ^ " " ^ string_of_int no ^ |
468 |
" adv_seq" ^ ser ^ " < adv_conj" ^ ser |
|
57291 | 469 |
in |
470 |
fst (Isabelle_System.bash_output cmd) |
|
471 |
|> space_explode " " |
|
57294
ef9d4e1ceb00
use strings to communicate with external process, to ease debugging
blanchet
parents:
57291
diff
changeset
|
472 |
|> filter_out (curry (op =) "") |
57291 | 473 |
end |
474 |
in |
|
57401
02f56126b4e4
reintroduced 'extra features' but with lower weight than before (to account for tfidf)
blanchet
parents:
57387
diff
changeset
|
475 |
(List.app do_learn learns; ol occ (os occ o quote) ", " (map fst goal_feats); |
57297 | 476 |
TextIO.closeOut ocs; TextIO.closeOut ocd; TextIO.closeOut ocq; TextIO.closeOut occ; |
57294
ef9d4e1ceb00
use strings to communicate with external process, to ease debugging
blanchet
parents:
57291
diff
changeset
|
477 |
forkexec max_suggs) |
57291 | 478 |
end |
479 |
||
57561 | 480 |
fun k_nearest_neighbors_ext max_suggs = |
481 |
external_tool ("newknn/knn" ^ " " ^ string_of_int initial_number_of_nearest_neighbors) max_suggs |
|
482 |
fun naive_bayes_ext max_suggs = external_tool "predict/nbayes" max_suggs |
|
57374 | 483 |
|
57532 | 484 |
fun query_external ctxt algorithm max_suggs learns goal_feats = |
57432 | 485 |
(trace_msg ctxt (fn () => "MaSh query external " ^ commas (map fst goal_feats)); |
57532 | 486 |
(case algorithm of |
57458 | 487 |
MaSh_NB_Ext => naive_bayes_ext max_suggs learns goal_feats |
488 |
| MaSh_kNN_Ext => k_nearest_neighbors_ext max_suggs learns goal_feats)) |
|
57371 | 489 |
|
57532 | 490 |
fun query_internal ctxt algorithm num_facts num_feats (fact_names, featss, depss) |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
491 |
(freqs as (_, _, dffreq)) visible_facts max_suggs goal_feats int_goal_feats = |
57459 | 492 |
let |
493 |
fun nb () = |
|
494 |
naive_bayes freqs num_facts max_suggs visible_facts int_goal_feats |
|
495 |
|> map fst |
|
496 |
fun knn () = |
|
497 |
k_nearest_neighbors dffreq num_facts num_feats depss featss max_suggs visible_facts |
|
498 |
int_goal_feats |
|
499 |
|> map fst |
|
500 |
in |
|
501 |
(trace_msg ctxt (fn () => "MaSh query internal " ^ commas (map fst goal_feats) ^ " from {" ^ |
|
502 |
elide_string 1000 (space_implode " " (Vector.foldr (op ::) [] fact_names)) ^ "}"); |
|
57532 | 503 |
(case algorithm of |
57459 | 504 |
MaSh_NB => nb () |
505 |
| MaSh_kNN => knn () |
|
506 |
| MaSh_NB_kNN => |
|
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
507 |
mesh_facts (op =) max_suggs |
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
508 |
[(0.5 (* FUDGE *), (weight_facts_steeply (nb ()), [])), |
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
509 |
(0.5 (* FUDGE *), (weight_facts_steeply (knn ()), []))]) |
57459 | 510 |
|> map (curry Vector.sub fact_names)) |
511 |
end |
|
57007 | 512 |
|
513 |
end; |
|
514 |
||
515 |
||
57432 | 516 |
(*** Persistent, stringly-typed state ***) |
517 |
||
518 |
fun meta_char c = |
|
519 |
if Char.isAlphaNum c orelse c = #"_" orelse c = #"." orelse c = #"(" orelse c = #")" orelse |
|
520 |
c = #"," then |
|
521 |
String.str c |
|
522 |
else |
|
523 |
(* fixed width, in case more digits follow *) |
|
524 |
"%" ^ stringN_of_int 3 (Char.ord c) |
|
525 |
||
526 |
fun unmeta_chars accum [] = String.implode (rev accum) |
|
527 |
| unmeta_chars accum (#"%" :: d1 :: d2 :: d3 :: cs) = |
|
528 |
(case Int.fromString (String.implode [d1, d2, d3]) of |
|
529 |
SOME n => unmeta_chars (Char.chr n :: accum) cs |
|
530 |
| NONE => "" (* error *)) |
|
531 |
| unmeta_chars _ (#"%" :: _) = "" (* error *) |
|
532 |
| unmeta_chars accum (c :: cs) = unmeta_chars (c :: accum) cs |
|
533 |
||
534 |
val encode_str = String.translate meta_char |
|
535 |
val decode_str = String.explode #> unmeta_chars [] |
|
536 |
||
537 |
val encode_strs = map encode_str #> space_implode " " |
|
57461 | 538 |
val decode_strs = space_explode " " #> map decode_str |
50311 | 539 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
540 |
datatype proof_kind = Isar_Proof | Automatic_Proof | Isar_Proof_wegen_Prover_Flop |
50311 | 541 |
|
542 |
fun str_of_proof_kind Isar_Proof = "i" |
|
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
543 |
| str_of_proof_kind Automatic_Proof = "a" |
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
544 |
| str_of_proof_kind Isar_Proof_wegen_Prover_Flop = "x" |
50311 | 545 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
546 |
fun proof_kind_of_str "a" = Automatic_Proof |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
547 |
| proof_kind_of_str "x" = Isar_Proof_wegen_Prover_Flop |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
548 |
| proof_kind_of_str _ (* "i" *) = Isar_Proof |
50311 | 549 |
|
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
550 |
fun add_edge_to name parent = |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
551 |
Graph.default_node (parent, (Isar_Proof, [], [])) |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
552 |
#> Graph.add_edge (parent, name) |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
553 |
|
57661 | 554 |
fun add_node kind name parents feats deps (accum as (access_G, (fact_xtab, feat_xtab), learns)) = |
555 |
let val fact_xtab' = add_to_xtab name fact_xtab in |
|
556 |
((Graph.new_node (name, (kind, feats, deps)) access_G |
|
557 |
handle Graph.DUP _ => Graph.map_node name (K (kind, feats, deps)) access_G) |
|
558 |
|> fold (add_edge_to name) parents, |
|
559 |
(fact_xtab', fold maybe_add_to_xtab feats feat_xtab), |
|
560 |
(name, feats, deps) :: learns) |
|
561 |
end |
|
562 |
handle Symtab.DUP _ => accum (* robustness (in case the state file violates the invariant) *) |
|
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
563 |
|
50311 | 564 |
fun try_graph ctxt when def f = |
565 |
f () |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
566 |
handle |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
567 |
Graph.CYCLES (cycle :: _) => |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
568 |
(trace_msg ctxt (fn () => "Cycle involving " ^ commas cycle ^ " when " ^ when); def) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
569 |
| Graph.DUP name => |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
570 |
(trace_msg ctxt (fn () => "Duplicate fact " ^ quote name ^ " when " ^ when); def) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
571 |
| Graph.UNDEF name => |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
572 |
(trace_msg ctxt (fn () => "Unknown fact " ^ quote name ^ " when " ^ when); def) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
573 |
| exn => |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
574 |
if Exn.is_interrupt exn then |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
575 |
reraise exn |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
576 |
else |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
577 |
(trace_msg ctxt (fn () => "Internal error when " ^ when ^ ":\n" ^ Runtime.exn_message exn); |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
578 |
def) |
50311 | 579 |
|
580 |
fun graph_info G = |
|
581 |
string_of_int (length (Graph.keys G)) ^ " node(s), " ^ |
|
57006 | 582 |
string_of_int (fold (Integer.add o length o snd) (Graph.dest G) 0) ^ " edge(s), " ^ |
50311 | 583 |
string_of_int (length (Graph.maximals G)) ^ " maximal" |
584 |
||
57545 | 585 |
type ffds = string vector * int list vector * int list vector |
586 |
type freqs = int vector * int Inttab.table vector * int vector |
|
587 |
||
53095 | 588 |
type mash_state = |
57358 | 589 |
{access_G : (proof_kind * string list * string list) Graph.T, |
57374 | 590 |
xtabs : xtab * xtab, |
57545 | 591 |
ffds : ffds, |
592 |
freqs : freqs, |
|
57365 | 593 |
dirty_facts : string list option} |
50311 | 594 |
|
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
595 |
val empty_xtabs = (empty_xtab, empty_xtab) |
57545 | 596 |
val empty_ffds = (Vector.fromList [], Vector.fromList [], Vector.fromList []) : ffds |
597 |
val empty_freqs = (Vector.fromList [], Vector.fromList [], Vector.fromList []) : freqs |
|
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
598 |
|
57371 | 599 |
val empty_state = |
600 |
{access_G = Graph.empty, |
|
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
601 |
xtabs = empty_xtabs, |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
602 |
ffds = empty_ffds, |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
603 |
freqs = empty_freqs, |
57371 | 604 |
dirty_facts = SOME []} : mash_state |
605 |
||
57545 | 606 |
fun recompute_ffds_freqs_from_learns (learns : (string * string list * string list) list) |
607 |
((num_facts, fact_tab), (num_feats, feat_tab)) num_facts0 (fact_names0, featss0, depss0) freqs0 = |
|
57379 | 608 |
let |
57380 | 609 |
val fact_names = Vector.concat [fact_names0, Vector.fromList (map #1 learns)] |
610 |
val featss = Vector.concat [featss0, |
|
611 |
Vector.fromList (map (map_filter (Symtab.lookup feat_tab) o #2) learns)] |
|
612 |
val depss = Vector.concat [depss0, |
|
613 |
Vector.fromList (map (map_filter (Symtab.lookup fact_tab) o #3) learns)] |
|
57379 | 614 |
in |
615 |
((fact_names, featss, depss), |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
616 |
MaSh.learn_facts freqs0 num_facts0 num_facts num_feats depss featss) |
57379 | 617 |
end |
618 |
||
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
619 |
fun reorder_learns (num_facts, fact_tab) learns = |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
620 |
let val ary = Array.array (num_facts, ("", [], [])) in |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
621 |
List.app (fn learn as (fact, _, _) => |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
622 |
Array.update (ary, the (Symtab.lookup fact_tab fact), learn)) |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
623 |
learns; |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
624 |
Array.foldr (op ::) [] ary |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
625 |
end |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
626 |
|
57380 | 627 |
fun recompute_ffds_freqs_from_access_G access_G (xtabs as (fact_xtab, _)) = |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
628 |
let |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
629 |
val learns = |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
630 |
Graph.schedule (fn _ => fn (fact, (_, feats, deps)) => (fact, feats, deps)) access_G |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
631 |
|> reorder_learns fact_xtab |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
632 |
in |
57380 | 633 |
recompute_ffds_freqs_from_learns learns xtabs 0 empty_ffds empty_freqs |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
634 |
end |
50311 | 635 |
|
636 |
local |
|
637 |
||
57358 | 638 |
val version = "*** MaSh version 20140625 ***" |
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
639 |
|
53095 | 640 |
exception FILE_VERSION_TOO_NEW of unit |
50311 | 641 |
|
642 |
fun extract_node line = |
|
55286 | 643 |
(case space_explode ":" line of |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
644 |
[head, tail] => |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
645 |
(case (space_explode " " head, map (unprefix " ") (space_explode ";" tail)) of |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
646 |
([kind, name], [parents, feats, deps]) => |
57358 | 647 |
SOME (proof_kind_of_str kind, decode_str name, decode_strs parents, decode_strs feats, |
57010 | 648 |
decode_strs deps) |
55286 | 649 |
| _ => NONE) |
650 |
| _ => NONE) |
|
50311 | 651 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
652 |
fun load_state ctxt (time_state as (memory_time, _)) = |
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
653 |
let val path = state_file () in |
57386 | 654 |
(case try OS.FileSys.modTime (Path.implode path) of |
57076
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
655 |
NONE => time_state |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
656 |
| SOME disk_time => |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
657 |
if Time.>= (memory_time, disk_time) then |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
658 |
time_state |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
659 |
else |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
660 |
(disk_time, |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
661 |
(case try File.read_lines path of |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
662 |
SOME (version' :: node_lines) => |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
663 |
let |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
664 |
fun extract_line_and_add_node line = |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
665 |
(case extract_node line of |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
666 |
NONE => I (* should not happen *) |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
667 |
| SOME (kind, name, parents, feats, deps) => add_node kind name parents feats deps) |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
668 |
|
57379 | 669 |
val empty_G_etc = (Graph.empty, empty_xtabs, []) |
670 |
||
671 |
val (access_G, xtabs, rev_learns) = |
|
57076
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
672 |
(case string_ord (version', version) of |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
673 |
EQUAL => |
57379 | 674 |
try_graph ctxt "loading state" empty_G_etc |
675 |
(fn () => fold extract_line_and_add_node node_lines empty_G_etc) |
|
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
676 |
| LESS => (remove_state_file (); empty_G_etc) (* cannot parse old file *) |
57076
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
677 |
| GREATER => raise FILE_VERSION_TOO_NEW ()) |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
678 |
|
57380 | 679 |
val (ffds, freqs) = |
680 |
recompute_ffds_freqs_from_learns (rev rev_learns) xtabs 0 empty_ffds empty_freqs |
|
57076
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
681 |
in |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
682 |
trace_msg ctxt (fn () => "Loaded fact graph (" ^ graph_info access_G ^ ")"); |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
683 |
{access_G = access_G, xtabs = xtabs, ffds = ffds, freqs = freqs, dirty_facts = SOME []} |
57076
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
684 |
end |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
685 |
| _ => empty_state))) |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
686 |
end |
50311 | 687 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
688 |
fun str_of_entry (kind, name, parents, feats, deps) = |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
689 |
str_of_proof_kind kind ^ " " ^ encode_str name ^ ": " ^ encode_strs parents ^ "; " ^ |
57358 | 690 |
encode_strs feats ^ "; " ^ encode_strs deps ^ "\n" |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
691 |
|
57365 | 692 |
fun save_state _ (time_state as (_, {dirty_facts = SOME [], ...})) = time_state |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
693 |
| save_state ctxt (memory_time, {access_G, xtabs, ffds, freqs, dirty_facts}) = |
50311 | 694 |
let |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
695 |
fun append_entry (name, ((kind, feats, deps), (parents, _))) = |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
696 |
cons (kind, name, Graph.Keys.dest parents, feats, deps) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
697 |
|
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
698 |
val path = state_file () |
57365 | 699 |
val dirty_facts' = |
57076
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
700 |
(case try OS.FileSys.modTime (Path.implode path) of |
3d4b172d2209
automatically reload state file when it changes on disk
blanchet
parents:
57062
diff
changeset
|
701 |
NONE => NONE |
57662
cffd1d6ae1e5
don't needlessly regenerate entire file when the time stamps are equal
blanchet
parents:
57661
diff
changeset
|
702 |
| SOME disk_time => if Time.<= (disk_time, memory_time) then dirty_facts else NONE) |
50311 | 703 |
val (banner, entries) = |
57365 | 704 |
(case dirty_facts' of |
55286 | 705 |
SOME names => (NONE, fold (append_entry o Graph.get_entry access_G) names []) |
706 |
| NONE => (SOME (version ^ "\n"), Graph.fold append_entry access_G [])) |
|
50311 | 707 |
in |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
708 |
(case banner of SOME s => File.write path s | NONE => (); |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
709 |
entries |> chunk_list 500 |> List.app (File.append path o implode o map str_of_entry)) |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
710 |
handle IO.Io _ => (); |
50311 | 711 |
trace_msg ctxt (fn () => |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
712 |
"Saved fact graph (" ^ graph_info access_G ^ |
57365 | 713 |
(case dirty_facts of |
714 |
SOME dirty_facts => "; " ^ string_of_int (length dirty_facts) ^ " dirty fact(s)" |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
715 |
| _ => "") ^ ")"); |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
716 |
(Time.now (), |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
717 |
{access_G = access_G, xtabs = xtabs, ffds = ffds, freqs = freqs, dirty_facts = SOME []}) |
50311 | 718 |
end |
719 |
||
57365 | 720 |
val global_state = Synchronized.var "Sledgehammer_MaSh.global_state" (Time.zeroTime, empty_state) |
50311 | 721 |
|
722 |
in |
|
723 |
||
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
724 |
fun map_state ctxt f = |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
725 |
Synchronized.change global_state (load_state ctxt ##> f #> save_state ctxt) |
53095 | 726 |
handle FILE_VERSION_TOO_NEW () => () |
50311 | 727 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
728 |
fun peek_state ctxt = |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
729 |
Synchronized.change_result global_state (perhaps (try (load_state ctxt)) #> `snd) |
50311 | 730 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
731 |
fun clear_state () = |
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
732 |
Synchronized.change global_state (fn _ => (remove_state_file (); (Time.zeroTime, empty_state))) |
50311 | 733 |
|
734 |
end |
|
735 |
||
736 |
||
737 |
(*** Isabelle helpers ***) |
|
738 |
||
50722 | 739 |
val local_prefix = "local" ^ Long_Name.separator |
48378 | 740 |
|
50722 | 741 |
fun elided_backquote_thm threshold th = |
57006 | 742 |
elide_string threshold (backquote_thm (Proof_Context.init_global (Thm.theory_of_thm th)) th) |
48378 | 743 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
744 |
val thy_name_of_thm = Context.theory_name o Thm.theory_of_thm |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
745 |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
746 |
fun nickname_of_thm th = |
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
747 |
if Thm.has_name_hint th then |
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
748 |
let val hint = Thm.get_name_hint th in |
50722 | 749 |
(* There must be a better way to detect local facts. *) |
55286 | 750 |
(case try (unprefix local_prefix) hint of |
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
751 |
SOME suf => |
55286 | 752 |
thy_name_of_thm th ^ Long_Name.separator ^ suf ^ Long_Name.separator ^ |
753 |
elided_backquote_thm 50 th |
|
754 |
| NONE => hint) |
|
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
755 |
end |
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
756 |
else |
50722 | 757 |
elided_backquote_thm 200 th |
48378 | 758 |
|
51134 | 759 |
fun find_suggested_facts ctxt facts = |
48330 | 760 |
let |
51134 | 761 |
fun add (fact as (_, th)) = Symtab.default (nickname_of_thm th, fact) |
762 |
val tab = fold add facts Symtab.empty |
|
763 |
fun lookup nick = |
|
764 |
Symtab.lookup tab nick |
|
57006 | 765 |
|> tap (fn NONE => trace_msg ctxt (fn () => "Cannot find " ^ quote nick) | _ => ()) |
51134 | 766 |
in map_filter lookup end |
48311 | 767 |
|
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
768 |
fun free_feature_of s = "f" ^ s |
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
769 |
fun thy_feature_of s = "y" ^ s |
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
770 |
fun type_feature_of s = "t" ^ s |
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
771 |
fun class_feature_of s = "s" ^ s |
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
772 |
val local_feature = "local" |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
773 |
|
51135 | 774 |
fun crude_theory_ord p = |
50722 | 775 |
if Theory.subthy p then |
776 |
if Theory.eq_thy p then EQUAL else LESS |
|
48324 | 777 |
else if Theory.subthy (swap p) then |
778 |
GREATER |
|
55286 | 779 |
else |
780 |
(case int_ord (pairself (length o Theory.ancestors_of) p) of |
|
781 |
EQUAL => string_ord (pairself Context.theory_name p) |
|
782 |
| order => order) |
|
48324 | 783 |
|
51135 | 784 |
fun crude_thm_ord p = |
55286 | 785 |
(case crude_theory_ord (pairself theory_of_thm p) of |
50359
da395f0e7dea
tweaked order of theorems to avoid forward dependencies (MaSh)
blanchet
parents:
50357
diff
changeset
|
786 |
EQUAL => |
57039 | 787 |
(* The hack below is necessary because of odd dependencies that are not reflected in the theory |
788 |
comparison. *) |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
789 |
let val q = pairself nickname_of_thm p in |
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
790 |
(* Hack to put "xxx_def" before "xxxI" and "xxxE" *) |
55286 | 791 |
(case bool_ord (pairself (String.isSuffix "_def") (swap q)) of |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
792 |
EQUAL => string_ord q |
55286 | 793 |
| ord => ord) |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
794 |
end |
55286 | 795 |
| ord => ord) |
48324 | 796 |
|
51136 | 797 |
val thm_less_eq = Theory.subthy o pairself theory_of_thm |
798 |
fun thm_less p = thm_less_eq p andalso not (thm_less_eq (swap p)) |
|
799 |
||
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
800 |
val freezeT = Type.legacy_freeze_type |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
801 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
802 |
fun freeze (t $ u) = freeze t $ freeze u |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
803 |
| freeze (Abs (s, T, t)) = Abs (s, freezeT T, freeze t) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
804 |
| freeze (Var ((s, _), T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
805 |
| freeze (Const (s, T)) = Const (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
806 |
| freeze (Free (s, T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
807 |
| freeze t = t |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
808 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
809 |
fun goal_of_thm thy = prop_of #> freeze #> cterm_of thy #> Goal.init |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
810 |
|
54141
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
811 |
fun run_prover_for_mash ctxt params prover goal_name facts goal = |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
812 |
let |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
813 |
val problem = |
54141
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
814 |
{comment = "Goal: " ^ goal_name, state = Proof.init ctxt, goal = goal, subgoal = 1, |
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
815 |
subgoal_count = 1, factss = [("", facts)]} |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
816 |
in |
57735
056a55b44ec7
eliminated Sledgehammer's "min" subcommand (and lots of complications in the code)
blanchet
parents:
57662
diff
changeset
|
817 |
get_minimizing_prover ctxt MaSh (K ()) prover params problem |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
818 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
819 |
|
48326 | 820 |
val bad_types = [@{type_name prop}, @{type_name bool}, @{type_name fun}] |
821 |
||
53086
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
822 |
val pat_tvar_prefix = "_" |
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
823 |
val pat_var_prefix = "_" |
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
824 |
|
53089 | 825 |
(* try "Long_Name.base_name" for shorter names *) |
57055
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
blanchet
parents:
57052
diff
changeset
|
826 |
fun massage_long_name s = s |
53083
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
827 |
|
57006 | 828 |
val crude_str_of_sort = space_implode ":" o map massage_long_name o subtract (op =) @{sort type} |
53086
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
829 |
|
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
830 |
fun crude_str_of_typ (Type (s, [])) = massage_long_name s |
57006 | 831 |
| crude_str_of_typ (Type (s, Ts)) = massage_long_name s ^ implode (map crude_str_of_typ Ts) |
53083
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
832 |
| crude_str_of_typ (TFree (_, S)) = crude_str_of_sort S |
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
833 |
| crude_str_of_typ (TVar (_, S)) = crude_str_of_sort S |
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
834 |
|
53128 | 835 |
fun maybe_singleton_str _ "" = [] |
836 |
| maybe_singleton_str pref s = [pref ^ s] |
|
837 |
||
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
838 |
val max_pat_breadth = 10 (* FUDGE *) |
50585 | 839 |
|
57406 | 840 |
fun term_features_of ctxt thy_name term_max_depth type_max_depth ts = |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
841 |
let |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
842 |
val thy = Proof_Context.theory_of ctxt |
53082 | 843 |
|
50393 | 844 |
val fixes = map snd (Variable.dest_fixes ctxt) |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
845 |
val classes = Sign.classes_of thy |
53082 | 846 |
|
48304 | 847 |
fun add_classes @{sort type} = I |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
848 |
| add_classes S = |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
849 |
fold (`(Sorts.super_classes classes) |
57006 | 850 |
#> swap #> op :: |
851 |
#> subtract (op =) @{sort type} #> map massage_long_name |
|
852 |
#> map class_feature_of |
|
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
853 |
#> union (op =)) S |
53082 | 854 |
|
855 |
fun pattify_type 0 _ = [] |
|
856 |
| pattify_type _ (Type (s, [])) = |
|
53086
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
857 |
if member (op =) bad_types s then [] else [massage_long_name s] |
53082 | 858 |
| pattify_type depth (Type (s, U :: Ts)) = |
859 |
let |
|
860 |
val T = Type (s, Ts) |
|
57055
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
blanchet
parents:
57052
diff
changeset
|
861 |
val ps = take max_pat_breadth (pattify_type depth T) |
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
blanchet
parents:
57052
diff
changeset
|
862 |
val qs = take max_pat_breadth ("" :: pattify_type (depth - 1) U) |
57006 | 863 |
in |
864 |
map_product (fn p => fn "" => p | q => p ^ "(" ^ q ^ ")") ps qs |
|
865 |
end |
|
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
866 |
| pattify_type _ (TFree (_, S)) = maybe_singleton_str pat_tvar_prefix (crude_str_of_sort S) |
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
867 |
| pattify_type _ (TVar (_, S)) = maybe_singleton_str pat_tvar_prefix (crude_str_of_sort S) |
57006 | 868 |
|
53082 | 869 |
fun add_type_pat depth T = |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
870 |
union (op =) (map type_feature_of (pattify_type depth T)) |
57006 | 871 |
|
53082 | 872 |
fun add_type_pats 0 _ = I |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
873 |
| add_type_pats depth t = add_type_pat depth t #> add_type_pats (depth - 1) t |
57006 | 874 |
|
53083
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
875 |
fun add_type T = |
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
876 |
add_type_pats type_max_depth T |
53156 | 877 |
#> fold_atyps_sorts (add_classes o snd) T |
57006 | 878 |
|
53084 | 879 |
fun add_subtypes (T as Type (_, Ts)) = add_type T #> fold add_subtypes Ts |
880 |
| add_subtypes T = add_type T |
|
53082 | 881 |
|
57055
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
blanchet
parents:
57052
diff
changeset
|
882 |
fun pattify_term _ 0 _ = [] |
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
blanchet
parents:
57052
diff
changeset
|
883 |
| pattify_term _ _ (Const (s, _)) = |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
884 |
if is_widely_irrelevant_const s then [] else [massage_long_name s] |
54089
b13f6731f873
use same relevance filter for ATP and SMT solvers -- attempting to filter out certain ground instances of polymorphic symbols like + and 0 has unexpected side-effects that lead to incompletenesses (relevant facts not being selected)
blanchet
parents:
54085
diff
changeset
|
885 |
| pattify_term _ _ (Free (s, T)) = |
53128 | 886 |
maybe_singleton_str pat_var_prefix (crude_str_of_typ T) |
53090
1426c97311f2
treat frees as both consts and vars, for more hits
blanchet
parents:
53089
diff
changeset
|
887 |
|> (if member (op =) fixes s then |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
888 |
cons (free_feature_of (massage_long_name (thy_name ^ Long_Name.separator ^ s))) |
53090
1426c97311f2
treat frees as both consts and vars, for more hits
blanchet
parents:
53089
diff
changeset
|
889 |
else |
1426c97311f2
treat frees as both consts and vars, for more hits
blanchet
parents:
53089
diff
changeset
|
890 |
I) |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
891 |
| pattify_term _ _ (Var (_, T)) = maybe_singleton_str pat_var_prefix (crude_str_of_typ T) |
54089
b13f6731f873
use same relevance filter for ATP and SMT solvers -- attempting to filter out certain ground instances of polymorphic symbols like + and 0 has unexpected side-effects that lead to incompletenesses (relevant facts not being selected)
blanchet
parents:
54085
diff
changeset
|
892 |
| pattify_term Ts _ (Bound j) = |
54695 | 893 |
maybe_singleton_str pat_var_prefix (crude_str_of_typ (nth Ts j)) |
54089
b13f6731f873
use same relevance filter for ATP and SMT solvers -- attempting to filter out certain ground instances of polymorphic symbols like + and 0 has unexpected side-effects that lead to incompletenesses (relevant facts not being selected)
blanchet
parents:
54085
diff
changeset
|
894 |
| pattify_term Ts depth (t $ u) = |
50339
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
895 |
let |
57055
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
blanchet
parents:
57052
diff
changeset
|
896 |
val ps = take max_pat_breadth (pattify_term Ts depth t) |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
897 |
val qs = take max_pat_breadth ("" :: pattify_term Ts (depth - 1) u) |
53130 | 898 |
in |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
899 |
map_product (fn p => fn "" => p | q => p ^ "(" ^ q ^ ")") ps qs |
53130 | 900 |
end |
54089
b13f6731f873
use same relevance filter for ATP and SMT solvers -- attempting to filter out certain ground instances of polymorphic symbols like + and 0 has unexpected side-effects that lead to incompletenesses (relevant facts not being selected)
blanchet
parents:
54085
diff
changeset
|
901 |
| pattify_term _ _ _ = [] |
57006 | 902 |
|
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
903 |
fun add_term_pat Ts = union (op =) oo pattify_term Ts |
57006 | 904 |
|
53130 | 905 |
fun add_term_pats _ 0 _ = I |
57055
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
blanchet
parents:
57052
diff
changeset
|
906 |
| add_term_pats Ts depth t = add_term_pat Ts depth t #> add_term_pats Ts (depth - 1) t |
57006 | 907 |
|
53130 | 908 |
fun add_term Ts = add_term_pats Ts term_max_depth |
57006 | 909 |
|
53085 | 910 |
fun add_subterms Ts t = |
55286 | 911 |
(case strip_comb t of |
54089
b13f6731f873
use same relevance filter for ATP and SMT solvers -- attempting to filter out certain ground instances of polymorphic symbols like + and 0 has unexpected side-effects that lead to incompletenesses (relevant facts not being selected)
blanchet
parents:
54085
diff
changeset
|
912 |
(Const (s, T), args) => |
b13f6731f873
use same relevance filter for ATP and SMT solvers -- attempting to filter out certain ground instances of polymorphic symbols like + and 0 has unexpected side-effects that lead to incompletenesses (relevant facts not being selected)
blanchet
parents:
54085
diff
changeset
|
913 |
(not (is_widely_irrelevant_const s) ? add_term Ts t) |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
914 |
#> add_subtypes T #> fold (add_subterms Ts) args |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
915 |
| (head, args) => |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
916 |
(case head of |
53130 | 917 |
Free (_, T) => add_term Ts t #> add_subtypes T |
53084 | 918 |
| Var (_, T) => add_subtypes T |
53085 | 919 |
| Abs (_, T, body) => add_subtypes T #> add_subterms (T :: Ts) body |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
920 |
| _ => I) |
55286 | 921 |
#> fold (add_subterms Ts) args) |
57006 | 922 |
in |
923 |
fold (add_subterms []) ts [] |
|
924 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
925 |
|
53085 | 926 |
val term_max_depth = 2 |
53155 | 927 |
val type_max_depth = 1 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
928 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
929 |
(* TODO: Generate type classes for types? *) |
57406 | 930 |
fun features_of ctxt thy (scope, _) ts = |
50393 | 931 |
let val thy_name = Context.theory_name thy in |
932 |
thy_feature_of thy_name :: |
|
57406 | 933 |
term_features_of ctxt thy_name term_max_depth type_max_depth ts |
50393 | 934 |
|> scope <> Global ? cons local_feature |
935 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
936 |
|
57006 | 937 |
(* Too many dependencies is a sign that a decision procedure is at work. There is not much to learn |
938 |
from such proofs. *) |
|
50434
960a3429615c
more MaSh tweaking -- in particular, export the same facts in "MaSh_Export" as are later tried in "MaSh_Eval"
blanchet
parents:
50412
diff
changeset
|
939 |
val max_dependencies = 20 |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
940 |
|
54125
420b876ff1e2
if slicing is disabled, don't enforce last slice's "max_facts", but rather the maximum "max_facts"
blanchet
parents:
54123
diff
changeset
|
941 |
val prover_default_max_facts = 25 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
942 |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
943 |
(* "type_definition_xxx" facts are characterized by their use of "CollectI". *) |
50755 | 944 |
val typedef_dep = nickname_of_thm @{thm CollectI} |
57006 | 945 |
(* Mysterious parts of the class machinery create lots of proofs that refer exclusively to |
946 |
"someI_ex" (and to some internal constructions). *) |
|
50755 | 947 |
val class_some_dep = nickname_of_thm @{thm someI_ex} |
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
948 |
|
50828 | 949 |
val fundef_ths = |
57006 | 950 |
@{thms fundef_ex1_existence fundef_ex1_uniqueness fundef_ex1_iff fundef_default_value} |
50828 | 951 |
|> map nickname_of_thm |
952 |
||
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
953 |
(* "Rep_xxx_inject", "Abs_xxx_inverse", etc., are derived using these facts. *) |
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
954 |
val typedef_ths = |
57006 | 955 |
@{thms type_definition.Abs_inverse type_definition.Rep_inverse type_definition.Rep |
956 |
type_definition.Rep_inject type_definition.Abs_inject type_definition.Rep_cases |
|
957 |
type_definition.Abs_cases type_definition.Rep_induct type_definition.Abs_induct |
|
958 |
type_definition.Rep_range type_definition.Abs_image} |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
959 |
|> map nickname_of_thm |
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
960 |
|
48441 | 961 |
fun is_size_def [dep] th = |
55642
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
blanchet
parents:
55286
diff
changeset
|
962 |
(case first_field ".rec" dep of |
57006 | 963 |
SOME (pref, _) => |
964 |
(case first_field ".size" (nickname_of_thm th) of |
|
965 |
SOME (pref', _) => pref = pref' |
|
966 |
| NONE => false) |
|
967 |
| NONE => false) |
|
48441 | 968 |
| is_size_def _ _ = false |
969 |
||
51177 | 970 |
fun trim_dependencies deps = |
50755 | 971 |
if length deps > max_dependencies then NONE else SOME deps |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
972 |
|
50755 | 973 |
fun isar_dependencies_of name_tabs th = |
57306
ff10067b2248
optimized traversal of proof terms by skipping bad apples (e.g. full_exhaustive_int'.pinduct)
blanchet
parents:
57305
diff
changeset
|
974 |
thms_in_proof max_dependencies (SOME name_tabs) th |
ff10067b2248
optimized traversal of proof terms by skipping bad apples (e.g. full_exhaustive_int'.pinduct)
blanchet
parents:
57305
diff
changeset
|
975 |
|> Option.map (fn deps => |
57006 | 976 |
if deps = [typedef_dep] orelse deps = [class_some_dep] orelse |
57757 | 977 |
exists (member (op =) fundef_ths) deps orelse exists (member (op =) typedef_ths) deps orelse |
978 |
is_size_def deps th then |
|
50755 | 979 |
[] |
980 |
else |
|
57306
ff10067b2248
optimized traversal of proof terms by skipping bad apples (e.g. full_exhaustive_int'.pinduct)
blanchet
parents:
57305
diff
changeset
|
981 |
deps) |
48404 | 982 |
|
57006 | 983 |
fun prover_dependencies_of ctxt (params as {verbose, max_facts, ...}) prover auto_level facts |
984 |
name_tabs th = |
|
55286 | 985 |
(case isar_dependencies_of name_tabs th of |
57306
ff10067b2248
optimized traversal of proof terms by skipping bad apples (e.g. full_exhaustive_int'.pinduct)
blanchet
parents:
57305
diff
changeset
|
986 |
SOME [] => (false, []) |
ff10067b2248
optimized traversal of proof terms by skipping bad apples (e.g. full_exhaustive_int'.pinduct)
blanchet
parents:
57305
diff
changeset
|
987 |
| isar_deps0 => |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
988 |
let |
57306
ff10067b2248
optimized traversal of proof terms by skipping bad apples (e.g. full_exhaustive_int'.pinduct)
blanchet
parents:
57305
diff
changeset
|
989 |
val isar_deps = these isar_deps0 |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
990 |
val thy = Proof_Context.theory_of ctxt |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
991 |
val goal = goal_of_thm thy th |
54141
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
992 |
val name = nickname_of_thm th |
52196
2281f33e8da6
redid rac7830871177 to avoid duplicate fixed variable (e.g. lemma "P (a::nat)" proof - have "!!a::int. Q a" sledgehammer [e])
blanchet
parents:
52125
diff
changeset
|
993 |
val (_, hyp_ts, concl_t) = ATP_Util.strip_subgoal goal 1 ctxt |
51136 | 994 |
val facts = facts |> filter (fn (_, th') => thm_less (th', th)) |
57006 | 995 |
|
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
996 |
fun nickify ((_, stature), th) = ((nickname_of_thm th, stature), th) |
57006 | 997 |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
998 |
fun is_dep dep (_, th) = nickname_of_thm th = dep |
57006 | 999 |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1000 |
fun add_isar_dep facts dep accum = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1001 |
if exists (is_dep dep) accum then |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1002 |
accum |
55286 | 1003 |
else |
1004 |
(case find_first (is_dep dep) facts of |
|
1005 |
SOME ((_, status), th) => accum @ [(("", status), th)] |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1006 |
| NONE => accum (* should not happen *)) |
57006 | 1007 |
|
54123
271a8377656f
remove overloading of "max_facts" -- it already controls the number of facts passed to ATPs for 'learn_prover'
blanchet
parents:
54115
diff
changeset
|
1008 |
val mepo_facts = |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
1009 |
facts |
54095 | 1010 |
|> mepo_suggested_facts ctxt params (max_facts |> the_default prover_default_max_facts) NONE |
1011 |
hyp_ts concl_t |
|
54123
271a8377656f
remove overloading of "max_facts" -- it already controls the number of facts passed to ATPs for 'learn_prover'
blanchet
parents:
54115
diff
changeset
|
1012 |
val facts = |
271a8377656f
remove overloading of "max_facts" -- it already controls the number of facts passed to ATPs for 'learn_prover'
blanchet
parents:
54115
diff
changeset
|
1013 |
mepo_facts |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
1014 |
|> fold (add_isar_dep facts) isar_deps |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1015 |
|> map nickify |
54123
271a8377656f
remove overloading of "max_facts" -- it already controls the number of facts passed to ATPs for 'learn_prover'
blanchet
parents:
54115
diff
changeset
|
1016 |
val num_isar_deps = length isar_deps |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1017 |
in |
48404 | 1018 |
if verbose andalso auto_level = 0 then |
57017 | 1019 |
Output.urgent_message ("MaSh: " ^ quote prover ^ " on " ^ quote name ^ " with " ^ |
1020 |
string_of_int num_isar_deps ^ " + " ^ string_of_int (length facts - num_isar_deps) ^ |
|
1021 |
" facts.") |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1022 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1023 |
(); |
55286 | 1024 |
(case run_prover_for_mash ctxt params prover name facts goal of |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1025 |
{outcome = NONE, used_facts, ...} => |
48404 | 1026 |
(if verbose andalso auto_level = 0 then |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1027 |
let val num_facts = length used_facts in |
57017 | 1028 |
Output.urgent_message ("Found proof with " ^ string_of_int num_facts ^ " fact" ^ |
1029 |
plural_s num_facts ^ ".") |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1030 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1031 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1032 |
(); |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
1033 |
(true, map fst used_facts)) |
55286 | 1034 |
| _ => (false, isar_deps)) |
1035 |
end) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1036 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1037 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1038 |
(*** High-level communication with MaSh ***) |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1039 |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1040 |
(* In the following functions, chunks are risers w.r.t. "thm_less_eq". *) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1041 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1042 |
fun chunks_and_parents_for chunks th = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1043 |
let |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1044 |
fun insert_parent new parents = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1045 |
let val parents = parents |> filter_out (fn p => thm_less_eq (p, new)) in |
57096
e4074b91b2a6
always remove duplicates in meshing + use weights for Naive Bayes
blanchet
parents:
57095
diff
changeset
|
1046 |
parents |> forall (fn p => not (thm_less_eq (new, p))) parents ? cons new |
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1047 |
end |
57006 | 1048 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1049 |
fun rechunk seen (rest as th' :: ths) = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1050 |
if thm_less_eq (th', th) then (rev seen, rest) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1051 |
else rechunk (th' :: seen) ths |
57006 | 1052 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1053 |
fun do_chunk [] accum = accum |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1054 |
| do_chunk (chunk as hd_chunk :: _) (chunks, parents) = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1055 |
if thm_less_eq (hd_chunk, th) then |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1056 |
(chunk :: chunks, insert_parent hd_chunk parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1057 |
else if thm_less_eq (List.last chunk, th) then |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1058 |
let val (front, back as hd_back :: _) = rechunk [] chunk in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1059 |
(front :: back :: chunks, insert_parent hd_back parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1060 |
end |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1061 |
else |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1062 |
(chunk :: chunks, parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1063 |
in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1064 |
fold_rev do_chunk chunks ([], []) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1065 |
|>> cons [] |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1066 |
||> map nickname_of_thm |
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1067 |
end |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1068 |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1069 |
fun attach_parents_to_facts _ [] = [] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1070 |
| attach_parents_to_facts old_facts (facts as (_, th) :: _) = |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1071 |
let |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1072 |
fun do_facts _ [] = [] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1073 |
| do_facts (_, parents) [fact] = [(parents, fact)] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1074 |
| do_facts (chunks, parents) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1075 |
((fact as (_, th)) :: (facts as (_, th') :: _)) = |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1076 |
let |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1077 |
val chunks = app_hd (cons th) chunks |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1078 |
val chunks_and_parents' = |
57370 | 1079 |
if thm_less_eq (th, th') andalso thy_name_of_thm th = thy_name_of_thm th' then |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1080 |
(chunks, [nickname_of_thm th]) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1081 |
else |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1082 |
chunks_and_parents_for chunks th' |
57006 | 1083 |
in |
1084 |
(parents, fact) :: do_facts chunks_and_parents' facts |
|
1085 |
end |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1086 |
in |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1087 |
old_facts @ facts |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1088 |
|> do_facts (chunks_and_parents_for [[]] th) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1089 |
|> drop (length old_facts) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1090 |
end |
51177 | 1091 |
|
53095 | 1092 |
fun maximal_wrt_graph G keys = |
1093 |
let |
|
1094 |
val tab = Symtab.empty |> fold (fn name => Symtab.default (name, ())) keys |
|
57006 | 1095 |
|
57012 | 1096 |
fun insert_new seen name = not (Symtab.defined seen name) ? insert (op =) name |
57006 | 1097 |
|
53095 | 1098 |
fun num_keys keys = Graph.Keys.fold (K (Integer.add 1)) keys 0 |
57006 | 1099 |
|
53095 | 1100 |
fun find_maxes _ (maxs, []) = map snd maxs |
1101 |
| find_maxes seen (maxs, new :: news) = |
|
57012 | 1102 |
find_maxes (seen |> num_keys (Graph.imm_succs G new) > 1 ? Symtab.default (new, ())) |
1103 |
(if Symtab.defined tab new then |
|
1104 |
let |
|
1105 |
val newp = Graph.all_preds G [new] |
|
1106 |
fun is_ancestor x yp = member (op =) yp x |
|
1107 |
val maxs = maxs |> filter (fn (_, max) => not (is_ancestor max newp)) |
|
1108 |
in |
|
1109 |
if exists (is_ancestor new o fst) maxs then (maxs, news) |
|
1110 |
else ((newp, new) :: filter_out (fn (_, max) => is_ancestor max newp) maxs, news) |
|
1111 |
end |
|
1112 |
else |
|
1113 |
(maxs, Graph.Keys.fold (insert_new seen) (Graph.imm_preds G new) news)) |
|
57006 | 1114 |
in |
1115 |
find_maxes Symtab.empty ([], Graph.maximals G) |
|
1116 |
end |
|
53095 | 1117 |
|
57460 | 1118 |
fun maximal_wrt_access_graph _ [] = [] |
1119 |
| maximal_wrt_access_graph access_G ((fact as (_, th)) :: facts) = |
|
1120 |
let val thy = theory_of_thm th in |
|
1121 |
fact :: filter_out (fn (_, th') => Theory.subthy (theory_of_thm th', thy)) facts |
|
1122 |
|> map (nickname_of_thm o snd) |
|
1123 |
|> maximal_wrt_graph access_G |
|
1124 |
end |
|
53095 | 1125 |
|
1126 |
fun is_fact_in_graph access_G = can (Graph.get_node access_G) o nickname_of_thm |
|
1127 |
||
53197 | 1128 |
val chained_feature_factor = 0.5 (* FUDGE *) |
57405
1f49da059947
reintroduced 'extra features' + only print message in verbose mode
blanchet
parents:
57404
diff
changeset
|
1129 |
val extra_feature_factor = 0.1 (* FUDGE *) |
1f49da059947
reintroduced 'extra features' + only print message in verbose mode
blanchet
parents:
57404
diff
changeset
|
1130 |
val num_extra_feature_facts = 10 (* FUDGE *) |
53095 | 1131 |
|
57660 | 1132 |
val max_proximity_facts = 100 (* FUDGE *) |
53095 | 1133 |
|
54060 | 1134 |
fun find_mash_suggestions ctxt max_facts suggs facts chained raw_unknown = |
1135 |
let |
|
1136 |
val inter_fact = inter (eq_snd Thm.eq_thm_prop) |
|
1137 |
val raw_mash = find_suggested_facts ctxt facts suggs |
|
1138 |
val proximate = take max_proximity_facts facts |
|
1139 |
val unknown_chained = inter_fact raw_unknown chained |
|
1140 |
val unknown_proximate = inter_fact raw_unknown proximate |
|
1141 |
val mess = |
|
1142 |
[(0.9 (* FUDGE *), (map (rpair 1.0) unknown_chained, [])), |
|
1143 |
(0.4 (* FUDGE *), (weight_facts_smoothly unknown_proximate, [])), |
|
1144 |
(0.1 (* FUDGE *), (weight_facts_steeply raw_mash, raw_unknown))] |
|
57007 | 1145 |
val unknown = raw_unknown |
1146 |
|> fold (subtract (eq_snd Thm.eq_thm_prop)) [unknown_chained, unknown_proximate] |
|
57006 | 1147 |
in |
57150
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
1148 |
(mesh_facts (eq_snd (gen_eq_thm ctxt)) max_facts mess, unknown) |
57006 | 1149 |
end |
53095 | 1150 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1151 |
fun mash_suggested_facts ctxt thy ({debug, ...} : params) max_suggs hyp_ts concl_t facts = |
53095 | 1152 |
let |
53559
3858246c7c8f
when pouring in extra features into the goal, only consider facts from the current theory -- the bottom 10 facts of the last import might be completely unrelated
blanchet
parents:
53558
diff
changeset
|
1153 |
val thy_name = Context.theory_name thy |
57532 | 1154 |
val algorithm = the_mash_algorithm () |
57052
ea5912e3b008
until naive Bayes supports weights, don't incorporate 'extra' low-weight features
blanchet
parents:
57039
diff
changeset
|
1155 |
|
57460 | 1156 |
val facts = facts |
1157 |
|> rev_sort_list_prefix (crude_thm_ord o pairself snd) |
|
1158 |
(Int.max (num_extra_feature_facts, max_proximity_facts)) |
|
1159 |
||
1160 |
val chained = filter (fn ((_, (scope, _)), _) => scope = Chained) facts |
|
54085 | 1161 |
|
53559
3858246c7c8f
when pouring in extra features into the goal, only consider facts from the current theory -- the bottom 10 facts of the last import might be completely unrelated
blanchet
parents:
53558
diff
changeset
|
1162 |
fun fact_has_right_theory (_, th) = |
3858246c7c8f
when pouring in extra features into the goal, only consider facts from the current theory -- the bottom 10 facts of the last import might be completely unrelated
blanchet
parents:
53558
diff
changeset
|
1163 |
thy_name = Context.theory_name (theory_of_thm th) |
56995 | 1164 |
|
53141
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
1165 |
fun chained_or_extra_features_of factor (((_, stature), th), weight) = |
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
1166 |
[prop_of th] |
57406 | 1167 |
|> features_of ctxt (theory_of_thm th) stature |
57404
a68ae60c1504
got rid of hard-coded weights, now that we have TFIDF
blanchet
parents:
57403
diff
changeset
|
1168 |
|> map (rpair (weight * factor)) |
54085 | 1169 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1170 |
val {access_G, xtabs = ((num_facts, fact_tab), (num_feats, feat_tab)), ffds, freqs, ...} = |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1171 |
peek_state ctxt |
57017 | 1172 |
|
57460 | 1173 |
val goal_feats0 = features_of ctxt thy (Local, General) (concl_t :: hyp_ts) |
1174 |
val chained_feats = chained |
|
1175 |
|> map (rpair 1.0) |
|
1176 |
|> map (chained_or_extra_features_of chained_feature_factor) |
|
1177 |
|> rpair [] |-> fold (union (eq_fst (op =))) |
|
1178 |
val extra_feats = facts |
|
1179 |
|> take (Int.max (0, num_extra_feature_facts - length chained)) |
|
1180 |
|> filter fact_has_right_theory |
|
1181 |
|> weight_facts_steeply |
|
1182 |
|> map (chained_or_extra_features_of extra_feature_factor) |
|
1183 |
|> rpair [] |-> fold (union (eq_fst (op =))) |
|
1184 |
||
1185 |
val goal_feats = |
|
1186 |
fold (union (eq_fst (op =))) [chained_feats, extra_feats] (map (rpair 1.0) goal_feats0) |
|
1187 |
|> debug ? sort (Real.compare o swap o pairself snd) |
|
1188 |
||
1189 |
val parents = maximal_wrt_access_graph access_G facts |
|
1190 |
val visible_facts = map_filter (Symtab.lookup fact_tab) (Graph.all_preds access_G parents) |
|
1191 |
||
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1192 |
val suggs = |
57532 | 1193 |
if algorithm = MaSh_NB_Ext orelse algorithm = MaSh_kNN_Ext then |
57460 | 1194 |
let |
1195 |
val learns = |
|
1196 |
Graph.schedule (fn _ => fn (fact, (_, feats, deps)) => (fact, feats, deps)) access_G |
|
1197 |
in |
|
57532 | 1198 |
MaSh.query_external ctxt algorithm max_suggs learns goal_feats |
57460 | 1199 |
end |
1200 |
else |
|
1201 |
let |
|
1202 |
val int_goal_feats = |
|
1203 |
map_filter (fn (s, w) => Option.map (rpair w) (Symtab.lookup feat_tab s)) goal_feats |
|
1204 |
in |
|
57532 | 1205 |
MaSh.query_internal ctxt algorithm num_facts num_feats ffds freqs visible_facts max_suggs |
57460 | 1206 |
goal_feats int_goal_feats |
1207 |
end |
|
57017 | 1208 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1209 |
val unknown = filter_out (is_fact_in_graph access_G o snd) facts |
53095 | 1210 |
in |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1211 |
find_mash_suggestions ctxt max_suggs suggs facts chained unknown |
53095 | 1212 |
|> pairself (map fact_of_raw_fact) |
1213 |
end |
|
1214 |
||
57552
1072599c43f6
no need for 'mash' subdirectory after removal of Python program
blanchet
parents:
57546
diff
changeset
|
1215 |
fun mash_unlearn () = (clear_state (); Output.urgent_message "Reset MaSh.") |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1216 |
|
57661 | 1217 |
fun learn_wrt_access_graph ctxt (name, parents, feats, deps) |
1218 |
(accum as (access_G, (fact_xtab, feat_xtab))) = |
|
53095 | 1219 |
let |
57371 | 1220 |
fun maybe_learn_from from (accum as (parents, access_G)) = |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1221 |
try_graph ctxt "updating graph" accum (fn () => |
57371 | 1222 |
(from :: parents, Graph.add_edge_acyclic (from, name) access_G)) |
1223 |
||
1224 |
val access_G = access_G |> Graph.default_node (name, (Isar_Proof, feats, deps)) |
|
1225 |
val (parents, access_G) = ([], access_G) |> fold maybe_learn_from parents |
|
1226 |
val (deps, _) = ([], access_G) |> fold maybe_learn_from deps |
|
1227 |
||
57661 | 1228 |
val fact_xtab = add_to_xtab name fact_xtab |
57371 | 1229 |
val feat_xtab = fold maybe_add_to_xtab feats feat_xtab |
57006 | 1230 |
in |
57661 | 1231 |
(SOME (name, parents, feats, deps), (access_G, (fact_xtab, feat_xtab))) |
57006 | 1232 |
end |
57661 | 1233 |
handle Symtab.DUP _ => (NONE, accum) (* facts sometimes have the same name, confusingly *) |
53095 | 1234 |
|
57381 | 1235 |
fun relearn_wrt_access_graph ctxt (name, deps) access_G = |
53095 | 1236 |
let |
57371 | 1237 |
fun maybe_relearn_from from (accum as (parents, access_G)) = |
53095 | 1238 |
try_graph ctxt "updating graph" accum (fn () => |
57371 | 1239 |
(from :: parents, Graph.add_edge_acyclic (from, name) access_G)) |
1240 |
val access_G = |
|
1241 |
access_G |> Graph.map_node name (fn (_, feats, _) => (Automatic_Proof, feats, deps)) |
|
1242 |
val (deps, _) = ([], access_G) |> fold maybe_relearn_from deps |
|
57006 | 1243 |
in |
57381 | 1244 |
((name, deps), access_G) |
57006 | 1245 |
end |
53095 | 1246 |
|
1247 |
fun flop_wrt_access_graph name = |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1248 |
Graph.map_node name (fn (_, feats, deps) => (Isar_Proof_wegen_Prover_Flop, feats, deps)) |
53095 | 1249 |
|
57273
01b68f625550
automatically learn MaSh facts also in 'blocking' mode
blanchet
parents:
57150
diff
changeset
|
1250 |
val learn_timeout_slack = 20.0 |
53095 | 1251 |
|
1252 |
fun launch_thread timeout task = |
|
1253 |
let |
|
1254 |
val hard_timeout = time_mult learn_timeout_slack timeout |
|
1255 |
val birth_time = Time.now () |
|
1256 |
val death_time = Time.+ (birth_time, hard_timeout) |
|
1257 |
val desc = ("Machine learner for Sledgehammer", "") |
|
57006 | 1258 |
in |
1259 |
Async_Manager.thread MaShN birth_time death_time desc task |
|
1260 |
end |
|
53095 | 1261 |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1262 |
fun learned_proof_name () = |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1263 |
Date.fmt ".%Y%m%d.%H%M%S." (Date.fromTimeLocal (Time.now ())) ^ serial_string () |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1264 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1265 |
fun mash_learn_proof ctxt ({timeout, ...} : params) t facts used_ths = |
57387
2b6fe2a48352
reintroduced MaSh hints, this time as persistent creatures
blanchet
parents:
57386
diff
changeset
|
1266 |
if not (null used_ths) andalso is_mash_enabled () then |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1267 |
launch_thread timeout (fn () => |
57006 | 1268 |
let |
1269 |
val thy = Proof_Context.theory_of ctxt |
|
57406 | 1270 |
val feats = features_of ctxt thy (Local, General) [t] |
57460 | 1271 |
val facts = rev_sort_list_prefix (crude_thm_ord o pairself snd) 1 facts |
57006 | 1272 |
in |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1273 |
map_state ctxt |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1274 |
(fn {access_G, xtabs as ((num_facts0, _), _), ffds, freqs, dirty_facts} => |
57371 | 1275 |
let |
1276 |
val parents = maximal_wrt_access_graph access_G facts |
|
1277 |
val deps = used_ths |
|
1278 |
|> filter (is_fact_in_graph access_G) |
|
1279 |
|> map nickname_of_thm |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1280 |
|
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1281 |
val name = learned_proof_name () |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1282 |
val (access_G', xtabs', rev_learns) = |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1283 |
add_node Automatic_Proof name parents feats deps (access_G, xtabs, []) |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1284 |
|
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1285 |
val (ffds', freqs') = |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1286 |
recompute_ffds_freqs_from_learns (rev rev_learns) xtabs' num_facts0 ffds freqs |
57371 | 1287 |
in |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1288 |
{access_G = access_G', xtabs = xtabs', ffds = ffds', freqs = freqs', |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1289 |
dirty_facts = Option.map (cons name) dirty_facts} |
57371 | 1290 |
end); |
57006 | 1291 |
(true, "") |
1292 |
end) |
|
53819
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
1293 |
else |
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
1294 |
() |
53095 | 1295 |
|
57353 | 1296 |
fun sendback sub = Active.sendback_markup [Markup.padding_command] (sledgehammerN ^ " " ^ sub) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1297 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1298 |
val commit_timeout = seconds 30.0 |
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
1299 |
|
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
1300 |
(* The timeout is understood in a very relaxed fashion. *) |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1301 |
fun mash_learn_facts ctxt (params as {debug, verbose, ...}) prover auto_level run_prover |
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1302 |
learn_timeout facts = |
48304 | 1303 |
let |
48318 | 1304 |
val timer = Timer.startRealTimer () |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1305 |
fun next_commit_time () = Time.+ (Timer.checkRealTimer timer, commit_timeout) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1306 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1307 |
val {access_G, ...} = peek_state ctxt |
53095 | 1308 |
val is_in_access_G = is_fact_in_graph access_G o snd |
51177 | 1309 |
val no_new_facts = forall is_in_access_G facts |
48308 | 1310 |
in |
51177 | 1311 |
if no_new_facts andalso not run_prover then |
48404 | 1312 |
if auto_level < 2 then |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1313 |
"No new " ^ (if run_prover then "automatic" else "Isar") ^ " proofs to learn." ^ |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
1314 |
(if auto_level = 0 andalso not run_prover then |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1315 |
"\n\nHint: Try " ^ sendback learn_proverN ^ " to learn from an automatic prover." |
48404 | 1316 |
else |
1317 |
"") |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1318 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1319 |
"" |
48308 | 1320 |
else |
48304 | 1321 |
let |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
1322 |
val name_tabs = build_name_tables nickname_of_thm facts |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1323 |
|
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
1324 |
fun deps_of status th = |
57017 | 1325 |
if status = Non_Rec_Def orelse status = Rec_Def then |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
1326 |
SOME [] |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
1327 |
else if run_prover then |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1328 |
prover_dependencies_of ctxt params prover auto_level facts name_tabs th |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1329 |
|> (fn (false, _) => NONE | (true, deps) => trim_dependencies deps) |
48404 | 1330 |
else |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
1331 |
isar_dependencies_of name_tabs th |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1332 |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1333 |
fun do_commit [] [] [] state = state |
57382 | 1334 |
| do_commit learns relearns flops |
1335 |
{access_G, xtabs as ((num_facts0, _), _), ffds, freqs, dirty_facts} = |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1336 |
let |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
1337 |
val was_empty = Graph.is_empty access_G |
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
1338 |
|
57658 | 1339 |
val (learns, (access_G', xtabs')) = |
57381 | 1340 |
fold_map (learn_wrt_access_graph ctxt) learns (access_G, xtabs) |
57661 | 1341 |
|>> map_filter I |
57658 | 1342 |
val (relearns, access_G'') = |
1343 |
fold_map (relearn_wrt_access_graph ctxt) relearns access_G' |
|
57371 | 1344 |
|
57658 | 1345 |
val access_G''' = access_G'' |> fold flop_wrt_access_graph flops |
1346 |
val dirty_facts' = |
|
57365 | 1347 |
(case (was_empty, dirty_facts) of |
57062
eb6777796782
avoid slow inspection of proof terms now that dependencies are stored in 'state'
blanchet
parents:
57061
diff
changeset
|
1348 |
(false, SOME names) => SOME (map #1 learns @ map #1 relearns @ names) |
55286 | 1349 |
| _ => NONE) |
57378
fe96689f393b
recompute learning data at learning time, not query time
blanchet
parents:
57377
diff
changeset
|
1350 |
|
57382 | 1351 |
val (ffds', freqs') = |
1352 |
if null relearns then |
|
1353 |
recompute_ffds_freqs_from_learns |
|
57658 | 1354 |
(map (fn (name, _, feats, deps) => (name, feats, deps)) learns) xtabs' num_facts0 |
57382 | 1355 |
ffds freqs |
1356 |
else |
|
57658 | 1357 |
recompute_ffds_freqs_from_access_G access_G''' xtabs' |
48404 | 1358 |
in |
57658 | 1359 |
{access_G = access_G''', xtabs = xtabs', ffds = ffds', freqs = freqs', |
1360 |
dirty_facts = dirty_facts'} |
|
48404 | 1361 |
end |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1362 |
|
50631 | 1363 |
fun commit last learns relearns flops = |
57017 | 1364 |
(if debug andalso auto_level = 0 then Output.urgent_message "Committing..." else (); |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1365 |
map_state ctxt (do_commit (rev learns) relearns flops); |
48404 | 1366 |
if not last andalso auto_level = 0 then |
50631 | 1367 |
let val num_proofs = length learns + length relearns in |
57017 | 1368 |
Output.urgent_message ("Learned " ^ string_of_int num_proofs ^ " " ^ |
1369 |
(if run_prover then "automatic" else "Isar") ^ " proof" ^ |
|
1370 |
plural_s num_proofs ^ " in the last " ^ string_of_time commit_timeout ^ ".") |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1371 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1372 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1373 |
()) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1374 |
|
51177 | 1375 |
fun learn_new_fact _ (accum as (_, (_, _, true))) = accum |
1376 |
| learn_new_fact (parents, ((_, stature as (_, status)), th)) |
|
57385 | 1377 |
(learns, (num_nontrivial, next_commit, _)) = |
48318 | 1378 |
let |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1379 |
val name = nickname_of_thm th |
57406 | 1380 |
val feats = features_of ctxt (theory_of_thm th) stature [prop_of th] |
57757 | 1381 |
val deps = these (deps_of status th) |
57385 | 1382 |
val num_nontrivial = num_nontrivial |> not (null deps) ? Integer.add 1 |
50631 | 1383 |
val learns = (name, parents, feats, deps) :: learns |
1384 |
val (learns, next_commit) = |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1385 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
50631 | 1386 |
(commit false learns [] []; ([], next_commit_time ())) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1387 |
else |
50631 | 1388 |
(learns, next_commit) |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1389 |
val timed_out = Time.> (Timer.checkRealTimer timer, learn_timeout) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1390 |
in |
57385 | 1391 |
(learns, (num_nontrivial, next_commit, timed_out)) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1392 |
end |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1393 |
|
57385 | 1394 |
val (num_new_facts, num_nontrivial) = |
51177 | 1395 |
if no_new_facts then |
57385 | 1396 |
(0, 0) |
48404 | 1397 |
else |
1398 |
let |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1399 |
val new_facts = facts |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1400 |
|> sort (crude_thm_ord o pairself snd) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1401 |
|> attach_parents_to_facts [] |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1402 |
|> filter_out (is_in_access_G o snd) |
57385 | 1403 |
val (learns, (num_nontrivial, _, _)) = |
51177 | 1404 |
([], (0, next_commit_time (), false)) |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1405 |
|> fold learn_new_fact new_facts |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1406 |
in |
57385 | 1407 |
commit true learns [] []; (length new_facts, num_nontrivial) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1408 |
end |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1409 |
|
48404 | 1410 |
fun relearn_old_fact _ (accum as (_, (_, _, true))) = accum |
57385 | 1411 |
| relearn_old_fact ((_, (_, status)), th) |
1412 |
((relearns, flops), (num_nontrivial, next_commit, _)) = |
|
48404 | 1413 |
let |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1414 |
val name = nickname_of_thm th |
57385 | 1415 |
val (num_nontrivial, relearns, flops) = |
55286 | 1416 |
(case deps_of status th of |
57385 | 1417 |
SOME deps => (num_nontrivial + 1, (name, deps) :: relearns, flops) |
1418 |
| NONE => (num_nontrivial, relearns, name :: flops)) |
|
50631 | 1419 |
val (relearns, flops, next_commit) = |
48404 | 1420 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1421 |
(commit false [] relearns flops; ([], [], next_commit_time ())) |
48404 | 1422 |
else |
50631 | 1423 |
(relearns, flops, next_commit) |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1424 |
val timed_out = Time.> (Timer.checkRealTimer timer, learn_timeout) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1425 |
in |
57385 | 1426 |
((relearns, flops), (num_nontrivial, next_commit, timed_out)) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1427 |
end |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1428 |
|
57385 | 1429 |
val num_nontrivial = |
51177 | 1430 |
if not run_prover then |
57385 | 1431 |
num_nontrivial |
48404 | 1432 |
else |
1433 |
let |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
1434 |
val max_isar = 1000 * max_dependencies |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1435 |
|
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1436 |
fun priority_of th = |
57062
eb6777796782
avoid slow inspection of proof terms now that dependencies are stored in 'state'
blanchet
parents:
57061
diff
changeset
|
1437 |
random_range 0 max_isar + |
eb6777796782
avoid slow inspection of proof terms now that dependencies are stored in 'state'
blanchet
parents:
57061
diff
changeset
|
1438 |
(case try (Graph.get_node access_G) (nickname_of_thm th) of |
eb6777796782
avoid slow inspection of proof terms now that dependencies are stored in 'state'
blanchet
parents:
57061
diff
changeset
|
1439 |
SOME (Isar_Proof, _, deps) => ~100 * length deps |
eb6777796782
avoid slow inspection of proof terms now that dependencies are stored in 'state'
blanchet
parents:
57061
diff
changeset
|
1440 |
| SOME (Automatic_Proof, _, _) => 2 * max_isar |
eb6777796782
avoid slow inspection of proof terms now that dependencies are stored in 'state'
blanchet
parents:
57061
diff
changeset
|
1441 |
| SOME (Isar_Proof_wegen_Prover_Flop, _, _) => max_isar |
eb6777796782
avoid slow inspection of proof terms now that dependencies are stored in 'state'
blanchet
parents:
57061
diff
changeset
|
1442 |
| NONE => 0) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1443 |
|
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1444 |
val old_facts = facts |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1445 |
|> filter is_in_access_G |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1446 |
|> map (`(priority_of o snd)) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1447 |
|> sort (int_ord o pairself fst) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1448 |
|> map snd |
57385 | 1449 |
val ((relearns, flops), (num_nontrivial, _, _)) = |
1450 |
(([], []), (num_nontrivial, next_commit_time (), false)) |
|
48404 | 1451 |
|> fold relearn_old_fact old_facts |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1452 |
in |
57385 | 1453 |
commit true [] relearns flops; num_nontrivial |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1454 |
end |
48318 | 1455 |
in |
48404 | 1456 |
if verbose orelse auto_level < 2 then |
57385 | 1457 |
"Learned " ^ string_of_int num_new_facts ^ " fact" ^ plural_s num_new_facts ^ " and " ^ |
1458 |
string_of_int num_nontrivial ^ " nontrivial " ^ |
|
1459 |
(if run_prover then "automatic and " else "") ^ "Isar proof" ^ plural_s num_nontrivial ^ |
|
57006 | 1460 |
(if verbose then " in " ^ string_of_time (Timer.checkRealTimer timer) else "") ^ "." |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1461 |
else |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1462 |
"" |
48318 | 1463 |
end |
48308 | 1464 |
end |
48304 | 1465 |
|
54123
271a8377656f
remove overloading of "max_facts" -- it already controls the number of facts passed to ATPs for 'learn_prover'
blanchet
parents:
54115
diff
changeset
|
1466 |
fun mash_learn ctxt (params as {provers, timeout, ...}) fact_override chained run_prover = |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1467 |
let |
48396 | 1468 |
val css = Sledgehammer_Fact.clasimpset_rule_table_of ctxt |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
1469 |
val ctxt = ctxt |> Config.put instantiate_inducts false |
57006 | 1470 |
val facts = nearly_all_facts ctxt false fact_override Symtab.empty css chained [] @{prop True} |
54115
2b7e063c7abc
improved duplicate detection in "build_name_tables" by ensuring that the earliest occurrence of a duplicate (if it exists) gets picked as the canonical instance
blanchet
parents:
54100
diff
changeset
|
1471 |
|> sort (crude_thm_ord o pairself snd o swap) |
48404 | 1472 |
val num_facts = length facts |
1473 |
val prover = hd provers |
|
57006 | 1474 |
|
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
1475 |
fun learn auto_level run_prover = |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1476 |
mash_learn_facts ctxt params prover auto_level run_prover one_year facts |
48404 | 1477 |
|> Output.urgent_message |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1478 |
in |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
1479 |
if run_prover then |
57017 | 1480 |
(Output.urgent_message ("MaShing through " ^ string_of_int num_facts ^ " fact" ^ |
1481 |
plural_s num_facts ^ " for automatic proofs (" ^ quote prover ^ " timeout: " ^ |
|
1482 |
string_of_time timeout ^ ").\n\nCollecting Isar proofs first..."); |
|
50340
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1483 |
learn 1 false; |
57017 | 1484 |
Output.urgent_message "Now collecting automatic proofs. This may take several hours. You \ |
1485 |
\can safely stop the learning process at any point."; |
|
50340
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1486 |
learn 0 true) |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1487 |
else |
57006 | 1488 |
(Output.urgent_message ("MaShing through " ^ string_of_int num_facts ^ " fact" ^ |
1489 |
plural_s num_facts ^ " for Isar proofs..."); |
|
50340
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1490 |
learn 0 false) |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1491 |
end |
48249 | 1492 |
|
57555
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1493 |
fun mash_can_suggest_facts ctxt = not (Graph.is_empty (#access_G (peek_state ctxt))) |
50311 | 1494 |
|
57274
0acfdb151e52
more generous formula -- there are lots of duplicates out there
blanchet
parents:
57273
diff
changeset
|
1495 |
(* Generate more suggestions than requested, because some might be thrown out later for various |
0acfdb151e52
more generous formula -- there are lots of duplicates out there
blanchet
parents:
57273
diff
changeset
|
1496 |
reasons (e.g., duplicates). *) |
0acfdb151e52
more generous formula -- there are lots of duplicates out there
blanchet
parents:
57273
diff
changeset
|
1497 |
fun generous_max_suggestions max_facts = 3 * max_facts div 2 + 25 |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1498 |
|
50814 | 1499 |
val mepo_weight = 0.5 |
1500 |
val mash_weight = 0.5 |
|
1501 |
||
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1502 |
val max_facts_to_learn_before_query = 100 |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1503 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1504 |
(* The threshold should be large enough so that MaSh does not get activated for Auto Sledgehammer |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1505 |
and Try. *) |
48318 | 1506 |
val min_secs_for_learning = 15 |
1507 |
||
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1508 |
fun relevant_facts ctxt (params as {verbose, learn, fact_filter, timeout, ...}) prover |
57405
1f49da059947
reintroduced 'extra features' + only print message in verbose mode
blanchet
parents:
57404
diff
changeset
|
1509 |
max_facts ({add, only, ...} : fact_override) hyp_ts concl_t facts = |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1510 |
if not (subset (op =) (the_list fact_filter, fact_filters)) then |
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1511 |
error ("Unknown fact filter: " ^ quote (the fact_filter) ^ ".") |
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1512 |
else if only then |
57150
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
1513 |
[("", map fact_of_raw_fact facts)] |
48321 | 1514 |
else if max_facts <= 0 orelse null facts then |
51010 | 1515 |
[("", [])] |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1516 |
else |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1517 |
let |
57407
140e16bc2a40
use right theory name for theorems in evaluation driver
blanchet
parents:
57406
diff
changeset
|
1518 |
val thy = Proof_Context.theory_of ctxt |
140e16bc2a40
use right theory name for theorems in evaluation driver
blanchet
parents:
57406
diff
changeset
|
1519 |
|
57555
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1520 |
fun maybe_launch_thread exact min_num_facts_to_learn = |
57273
01b68f625550
automatically learn MaSh facts also in 'blocking' mode
blanchet
parents:
57150
diff
changeset
|
1521 |
if not (Async_Manager.has_running_threads MaShN) andalso |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1522 |
Time.toSeconds timeout >= min_secs_for_learning then |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1523 |
let val timeout = time_mult learn_timeout_slack timeout in |
57405
1f49da059947
reintroduced 'extra features' + only print message in verbose mode
blanchet
parents:
57404
diff
changeset
|
1524 |
(if verbose then |
57555
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1525 |
Output.urgent_message ("Started MaShing through " ^ |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1526 |
(if exact then "" else "at least ") ^ string_of_int min_num_facts_to_learn ^ |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1527 |
" fact" ^ plural_s min_num_facts_to_learn ^ " in the background.") |
57405
1f49da059947
reintroduced 'extra features' + only print message in verbose mode
blanchet
parents:
57404
diff
changeset
|
1528 |
else |
1f49da059947
reintroduced 'extra features' + only print message in verbose mode
blanchet
parents:
57404
diff
changeset
|
1529 |
()); |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1530 |
launch_thread timeout |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1531 |
(fn () => (true, mash_learn_facts ctxt params prover 2 false timeout facts)) |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1532 |
end |
48318 | 1533 |
else |
1534 |
() |
|
57018 | 1535 |
|
57555
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1536 |
fun please_learn () = |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1537 |
let |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1538 |
val {access_G, xtabs = ((num_facts0, _), _), ...} = peek_state ctxt |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1539 |
val is_in_access_G = is_fact_in_graph access_G o snd |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1540 |
val min_num_facts_to_learn = length facts - num_facts0 |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1541 |
in |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1542 |
if min_num_facts_to_learn <= max_facts_to_learn_before_query then |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1543 |
(case length (filter_out is_in_access_G facts) of |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1544 |
0 => () |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1545 |
| num_facts_to_learn => |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1546 |
if num_facts_to_learn <= max_facts_to_learn_before_query then |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1547 |
mash_learn_facts ctxt params prover 2 false timeout facts |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1548 |
|> (fn "" => () | s => Output.urgent_message (MaShN ^ ": " ^ s)) |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1549 |
else |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1550 |
maybe_launch_thread true num_facts_to_learn) |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1551 |
else |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1552 |
maybe_launch_thread false min_num_facts_to_learn |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1553 |
end |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1554 |
|
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1555 |
val mash_enabled = is_mash_enabled () |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1556 |
val _ = |
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1557 |
if learn andalso mash_enabled andalso fact_filter <> SOME mepoN then please_learn () else () |
57018 | 1558 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1559 |
val effective_fact_filter = |
55286 | 1560 |
(case fact_filter of |
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1561 |
SOME ff => ff |
57555
f60d70566525
also learn when 'fact_filter =' is set explicitly
blanchet
parents:
57554
diff
changeset
|
1562 |
| NONE => if mash_enabled andalso mash_can_suggest_facts ctxt then meshN else mepoN) |
54143
18def1c73c79
make sure add: doesn't add duplicates, and works for [no_atp] facts
blanchet
parents:
54141
diff
changeset
|
1563 |
|
18def1c73c79
make sure add: doesn't add duplicates, and works for [no_atp] facts
blanchet
parents:
54141
diff
changeset
|
1564 |
val unique_facts = drop_duplicate_facts facts |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1565 |
val add_ths = Attrib.eval_thms ctxt add |
54143
18def1c73c79
make sure add: doesn't add duplicates, and works for [no_atp] facts
blanchet
parents:
54141
diff
changeset
|
1566 |
|
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
1567 |
fun in_add (_, th) = member Thm.eq_thm_prop add_ths th |
57018 | 1568 |
|
51003
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1569 |
fun add_and_take accepts = |
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1570 |
(case add_ths of |
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1571 |
[] => accepts |
57150
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
1572 |
| _ => |
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
1573 |
(unique_facts |> filter in_add |> map fact_of_raw_fact) @ (accepts |> filter_out in_add)) |
48293 | 1574 |
|> take max_facts |
57018 | 1575 |
|
48406 | 1576 |
fun mepo () = |
54143
18def1c73c79
make sure add: doesn't add duplicates, and works for [no_atp] facts
blanchet
parents:
54141
diff
changeset
|
1577 |
(mepo_suggested_facts ctxt params max_facts NONE hyp_ts concl_t unique_facts |
54091 | 1578 |
|> weight_facts_steeply, []) |
57018 | 1579 |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1580 |
fun mash () = |
57407
140e16bc2a40
use right theory name for theorems in evaluation driver
blanchet
parents:
57406
diff
changeset
|
1581 |
mash_suggested_facts ctxt thy params (generous_max_suggestions max_facts) hyp_ts concl_t |
140e16bc2a40
use right theory name for theorems in evaluation driver
blanchet
parents:
57406
diff
changeset
|
1582 |
facts |
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1583 |
|>> weight_facts_steeply |
57018 | 1584 |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1585 |
val mess = |
51003
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1586 |
(* the order is important for the "case" expression below *) |
54091 | 1587 |
[] |> effective_fact_filter <> mepoN ? cons (mash_weight, mash) |
1588 |
|> effective_fact_filter <> mashN ? cons (mepo_weight, mepo) |
|
1589 |
|> Par_List.map (apsnd (fn f => f ())) |
|
57150
f591096a9c94
add option to keep duplicates, for more precise evaluation of relevance filters
blanchet
parents:
57133
diff
changeset
|
1590 |
val mesh = mesh_facts (eq_snd (gen_eq_thm ctxt)) max_facts mess |> add_and_take |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1591 |
in |
55286 | 1592 |
(case (fact_filter, mess) of |
51024
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1593 |
(NONE, [(_, (mepo, _)), (_, (mash, _))]) => |
57658 | 1594 |
[(meshN, mesh), |
1595 |
(mepoN, mepo |> map fst |> add_and_take), |
|
51010 | 1596 |
(mashN, mash |> map fst |> add_and_take)] |
55286 | 1597 |
| _ => [(effective_fact_filter, mesh)]) |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1598 |
end |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1599 |
|
57431
02c408aed5ee
killed Python version of MaSh, now that the SML version works adequately
blanchet
parents:
57409
diff
changeset
|
1600 |
fun kill_learners () = Async_Manager.kill_threads MaShN "learner" |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1601 |
fun running_learners () = Async_Manager.running_threads MaShN "learner" |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1602 |
|
48248 | 1603 |
end; |