author | blanchet |
Tue, 20 May 2014 09:38:39 +0200 | |
changeset 57013 | ed95456499e6 |
parent 57012 | 43fd82a537a3 |
child 57014 | b7999893ffcc |
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 |
57007 | 18 |
val sml : 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 |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
35 |
val encode_unweighted_features : string list list -> string |
54695 | 36 |
val encode_features : (string list * real) list -> string |
50965 | 37 |
val extract_suggestions : string -> string * string list |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
38 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
39 |
val mash_unlearn : Proof.context -> params -> unit |
53819
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
40 |
val is_mash_enabled : unit -> bool |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
41 |
val nickname_of_thm : thm -> string |
57006 | 42 |
val find_suggested_facts : Proof.context -> ('b * thm) list -> string list -> ('b * thm) list |
43 |
val mesh_facts : ('a * 'a -> bool) -> int -> (real * (('a * real) list * 'a list)) list -> 'a list |
|
51135 | 44 |
val crude_thm_ord : thm * thm -> order |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
45 |
val thm_less : thm * thm -> bool |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
46 |
val goal_of_thm : theory -> thm -> thm |
57006 | 47 |
val run_prover_for_mash : Proof.context -> params -> string -> string -> fact list -> thm -> |
48 |
prover_result |
|
49 |
val features_of : Proof.context -> theory -> int -> int Symtab.table -> stature -> bool -> |
|
50 |
term list -> (string list * real) list |
|
51177 | 51 |
val trim_dependencies : string list -> string list option |
57006 | 52 |
val isar_dependencies_of : string Symtab.table * string Symtab.table -> thm -> string list |
53 |
val prover_dependencies_of : Proof.context -> params -> string -> int -> raw_fact list -> |
|
54 |
string Symtab.table * string Symtab.table -> thm -> bool * string list |
|
55 |
val attach_parents_to_facts : ('a * thm) list -> ('a * thm) list -> |
|
56 |
(string list * ('a * thm)) list |
|
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
57 |
val num_extra_feature_facts : int |
53141
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
58 |
val extra_feature_factor : real |
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
59 |
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
|
60 |
val weight_facts_steeply : 'a list -> ('a * real) list |
57006 | 61 |
val find_mash_suggestions : Proof.context -> int -> string list -> ('b * thm) list -> |
62 |
('b * thm) list -> ('b * thm) list -> ('b * thm) list * ('b * thm) list |
|
53127 | 63 |
val add_const_counts : term -> int Symtab.table -> int Symtab.table |
57006 | 64 |
val mash_suggested_facts : Proof.context -> params -> int -> term list -> term -> raw_fact list -> |
65 |
fact list * fact list |
|
54503 | 66 |
val mash_learn_proof : Proof.context -> params -> term -> ('a * thm) list -> thm list -> unit |
57006 | 67 |
val mash_learn : Proof.context -> params -> fact_override -> thm list -> bool -> unit |
53819
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
68 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
69 |
val mash_can_suggest_facts : Proof.context -> bool -> bool |
50412 | 70 |
val generous_max_facts : int -> int |
50814 | 71 |
val mepo_weight : real |
72 |
val mash_weight : real |
|
57006 | 73 |
val relevant_facts : Proof.context -> params -> string -> int -> fact_override -> term list -> |
74 |
term -> raw_fact list -> (string * fact list) list |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
75 |
val kill_learners : Proof.context -> params -> unit |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
76 |
val running_learners : unit -> unit |
48248 | 77 |
end; |
78 |
||
48381 | 79 |
structure Sledgehammer_MaSh : SLEDGEHAMMER_MASH = |
48248 | 80 |
struct |
48249 | 81 |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
82 |
open ATP_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
83 |
open ATP_Problem_Generate |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
84 |
open Sledgehammer_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
85 |
open Sledgehammer_Fact |
55201 | 86 |
open Sledgehammer_Prover |
55202
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
blanchet
parents:
55201
diff
changeset
|
87 |
open Sledgehammer_Prover_Minimize |
48381 | 88 |
open Sledgehammer_MePo |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
89 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
90 |
val trace = Attrib.setup_config_bool @{binding sledgehammer_mash_trace} (K false) |
57007 | 91 |
val sml = Attrib.setup_config_bool @{binding sledgehammer_mash_sml} (K false) |
51032
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
92 |
|
48308 | 93 |
fun trace_msg ctxt msg = if Config.get ctxt trace then tracing (msg ()) else () |
94 |
||
51008 | 95 |
val MePoN = "MePo" |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
96 |
val MaShN = "MaSh" |
51008 | 97 |
val MeShN = "MeSh" |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
98 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
99 |
val mepoN = "mepo" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
100 |
val mashN = "mash" |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
101 |
val meshN = "mesh" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
102 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
103 |
val fact_filters = [meshN, mepoN, mashN] |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
104 |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
105 |
val unlearnN = "unlearn" |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
106 |
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
|
107 |
val learn_proverN = "learn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
108 |
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
|
109 |
val relearn_proverN = "relearn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
110 |
|
57007 | 111 |
fun mash_state_dir () = Path.explode "$ISABELLE_HOME_USER/mash" |> tap Isabelle_System.mkdir |
50310 | 112 |
fun mash_state_file () = Path.append (mash_state_dir ()) (Path.explode "state") |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
113 |
|
57007 | 114 |
fun wipe_out_mash_state_dir () = |
115 |
let val path = mash_state_dir () in |
|
116 |
try (File.fold_dir (fn file => fn _ => try File.rm (Path.append path (Path.basic file))) path) |
|
117 |
NONE; |
|
118 |
() |
|
119 |
end |
|
48330 | 120 |
|
57007 | 121 |
|
122 |
(*** Low-level communication with Python version of MaSh ***) |
|
50311 | 123 |
|
53117 | 124 |
val save_models_arg = "--saveModels" |
125 |
val shutdown_server_arg = "--shutdownServer" |
|
126 |
||
50311 | 127 |
fun wipe_out_file file = (try (File.rm o Path.explode) file; ()) |
128 |
||
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
129 |
fun write_file banner (xs, f) path = |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
130 |
(case banner of SOME s => File.write path s | NONE => (); |
53094 | 131 |
xs |> chunk_list 500 |> List.app (File.append path o implode o map f)) |
50319
dddcaeb92e11
robust writing of MaSh state -- better drop learning data than cause other problems in Sledgehammer
blanchet
parents:
50311
diff
changeset
|
132 |
handle IO.Io _ => () |
50311 | 133 |
|
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
134 |
fun run_mash_tool ctxt overlord extra_args background write_cmds read_suggs = |
50311 | 135 |
let |
136 |
val (temp_dir, serial) = |
|
137 |
if overlord then (getenv "ISABELLE_HOME_USER", "") |
|
138 |
else (getenv "ISABELLE_TMP", serial_string ()) |
|
53129 | 139 |
val log_file = temp_dir ^ "/mash_log" ^ serial |
50311 | 140 |
val err_file = temp_dir ^ "/mash_err" ^ serial |
141 |
val sugg_file = temp_dir ^ "/mash_suggs" ^ serial |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
142 |
val sugg_path = Path.explode sugg_file |
50311 | 143 |
val cmd_file = temp_dir ^ "/mash_commands" ^ serial |
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
144 |
val cmd_path = Path.explode cmd_file |
57007 | 145 |
val model_dir = File.shell_path (mash_state_dir ()) |
50311 | 146 |
val command = |
53556
347f743e8336
invoke Python with "no bytecode" option to avoid litering Isabelle source directory with ".pyc" files (which can be problematic for a number of reasons)
blanchet
parents:
53201
diff
changeset
|
147 |
"cd \"$ISABELLE_SLEDGEHAMMER_MASH\"/src; \ |
53790
298774dbdde0
provide a way to override MaSh's port from configuration file
blanchet
parents:
53757
diff
changeset
|
148 |
\PYTHONDONTWRITEBYTECODE=y ./mash.py\ |
298774dbdde0
provide a way to override MaSh's port from configuration file
blanchet
parents:
53757
diff
changeset
|
149 |
\ --quiet\ |
298774dbdde0
provide a way to override MaSh's port from configuration file
blanchet
parents:
53757
diff
changeset
|
150 |
\ --port=$MASH_PORT\ |
53556
347f743e8336
invoke Python with "no bytecode" option to avoid litering Isabelle source directory with ".pyc" files (which can be problematic for a number of reasons)
blanchet
parents:
53201
diff
changeset
|
151 |
\ --outputDir " ^ model_dir ^ |
347f743e8336
invoke Python with "no bytecode" option to avoid litering Isabelle source directory with ".pyc" files (which can be problematic for a number of reasons)
blanchet
parents:
53201
diff
changeset
|
152 |
" --modelFile=" ^ model_dir ^ "/model.pickle\ |
347f743e8336
invoke Python with "no bytecode" option to avoid litering Isabelle source directory with ".pyc" files (which can be problematic for a number of reasons)
blanchet
parents:
53201
diff
changeset
|
153 |
\ --dictsFile=" ^ model_dir ^ "/dict.pickle\ |
53790
298774dbdde0
provide a way to override MaSh's port from configuration file
blanchet
parents:
53757
diff
changeset
|
154 |
\ --log " ^ log_file ^ |
298774dbdde0
provide a way to override MaSh's port from configuration file
blanchet
parents:
53757
diff
changeset
|
155 |
" --inputFile " ^ cmd_file ^ |
298774dbdde0
provide a way to override MaSh's port from configuration file
blanchet
parents:
53757
diff
changeset
|
156 |
" --predictions " ^ sugg_file ^ |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
157 |
(if extra_args = [] then "" else " " ^ space_implode " " extra_args) ^ " >& " ^ err_file ^ |
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
158 |
(if background then " &" else "") |
50311 | 159 |
fun run_on () = |
50750 | 160 |
(Isabelle_System.bash command |
54100 | 161 |
|> tap (fn _ => |
57006 | 162 |
(case try File.read (Path.explode err_file) |> the_default "" of |
163 |
"" => trace_msg ctxt (K "Done") |
|
164 |
| s => warning ("MaSh error: " ^ elide_string 1000 s))); |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
165 |
read_suggs (fn () => try File.read_lines sugg_path |> these)) |
50311 | 166 |
fun clean_up () = |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
167 |
if overlord then () else List.app wipe_out_file [err_file, sugg_file, cmd_file] |
50311 | 168 |
in |
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
169 |
write_file (SOME "") ([], K "") sugg_path; |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
170 |
write_file (SOME "") write_cmds cmd_path; |
50311 | 171 |
trace_msg ctxt (fn () => "Running " ^ command); |
172 |
with_cleanup clean_up run_on () |
|
173 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
174 |
|
48308 | 175 |
fun meta_char c = |
57006 | 176 |
if Char.isAlphaNum c orelse c = #"_" orelse c = #"." orelse c = #"(" orelse c = #")" orelse |
177 |
c = #"," then |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
178 |
String.str c |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
179 |
else |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
180 |
(* fixed width, in case more digits follow *) |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
181 |
"%" ^ stringN_of_int 3 (Char.ord c) |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
182 |
|
48308 | 183 |
fun unmeta_chars accum [] = String.implode (rev accum) |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
184 |
| unmeta_chars accum (#"%" :: d1 :: d2 :: d3 :: cs) = |
48308 | 185 |
(case Int.fromString (String.implode [d1, d2, d3]) 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
|
186 |
SOME n => unmeta_chars (Char.chr n :: accum) cs |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
187 |
| NONE => "" (* error *)) |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
188 |
| unmeta_chars _ (#"%" :: _) = "" (* error *) |
48308 | 189 |
| unmeta_chars accum (c :: cs) = unmeta_chars (c :: accum) cs |
190 |
||
50826 | 191 |
val encode_str = String.translate meta_char |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
192 |
val decode_str = String.explode #> unmeta_chars [] |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
193 |
|
50826 | 194 |
val encode_strs = map encode_str #> space_implode " " |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
195 |
val decode_strs = space_explode " " #> filter_out (curry (op =) "") #> map decode_str |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
196 |
|
53558 | 197 |
(* Avoid scientific notation *) |
198 |
fun safe_str_of_real r = |
|
199 |
if r < 0.00001 then "0.00001" |
|
200 |
else if r >= 1000000.0 then "1000000" |
|
201 |
else Markup.print_real r |
|
202 |
||
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
203 |
val encode_unweighted_feature = map encode_str #> space_implode "|" |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
204 |
val decode_unweighted_feature = space_explode "|" #> map decode_str |
50356 | 205 |
|
54695 | 206 |
fun encode_feature (names, weight) = |
57006 | 207 |
encode_unweighted_feature names ^ |
208 |
(if Real.== (weight, 1.0) then "" else "=" ^ safe_str_of_real weight) |
|
54695 | 209 |
|
57010 | 210 |
fun decode_feature s = |
211 |
(case space_explode "=" s of |
|
212 |
[feat, weight] => (decode_unweighted_feature feat, Real.fromString weight |> the_default 1.0) |
|
213 |
| _ => (decode_unweighted_feature s, 1.0)) |
|
214 |
||
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
215 |
val encode_unweighted_features = map encode_unweighted_feature #> space_implode " " |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
216 |
|
50356 | 217 |
val encode_features = map encode_feature #> space_implode " " |
57010 | 218 |
val decode_features = space_explode " " #> map decode_feature |
50356 | 219 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
220 |
fun str_of_learn (name, parents, feats, deps) = |
50826 | 221 |
"! " ^ encode_str name ^ ": " ^ encode_strs parents ^ "; " ^ |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
222 |
encode_unweighted_features feats ^ "; " ^ encode_strs deps ^ "\n" |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
223 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
224 |
fun str_of_relearn (name, deps) = "p " ^ encode_str name ^ ": " ^ encode_strs deps ^ "\n" |
50311 | 225 |
|
53099 | 226 |
fun str_of_query max_suggs (learns, hints, parents, feats) = |
53095 | 227 |
implode (map str_of_learn learns) ^ |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
228 |
"? " ^ string_of_int max_suggs ^ " # " ^ encode_strs parents ^ "; " ^ encode_features feats ^ |
53095 | 229 |
(if null hints then "" else "; " ^ encode_strs hints) ^ "\n" |
48406 | 230 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
231 |
(* The suggested weights do not make much sense. *) |
48406 | 232 |
fun extract_suggestion sugg = |
55286 | 233 |
(case space_explode "=" sugg 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
|
234 |
[name, _ (* weight *)] => SOME (decode_str name) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
235 |
| [name] => SOME (decode_str name) |
55286 | 236 |
| _ => NONE) |
48406 | 237 |
|
50633 | 238 |
fun extract_suggestions line = |
55286 | 239 |
(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
|
240 |
[goal, suggs] => (decode_str goal, map_filter extract_suggestion (space_explode " " suggs)) |
55286 | 241 |
| _ => ("", [])) |
48311 | 242 |
|
57007 | 243 |
structure MaSh_Py = |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
244 |
struct |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
245 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
246 |
fun shutdown ctxt overlord = |
57007 | 247 |
(trace_msg ctxt (K "MaSh_Py shutdown"); |
53756 | 248 |
run_mash_tool ctxt overlord [shutdown_server_arg] false ([], K "") (K ())) |
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
249 |
|
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
250 |
fun save ctxt overlord = |
57007 | 251 |
(trace_msg ctxt (K "MaSh_Py save"); |
53153 | 252 |
run_mash_tool ctxt overlord [save_models_arg] true ([], K "") (K ())) |
53142
966a251efd16
have kill_all also kill MaSh server + be paranoid about reloading after clear_state, to allow for easier experimentation
blanchet
parents:
53141
diff
changeset
|
253 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
254 |
fun unlearn ctxt overlord = |
57007 | 255 |
(trace_msg ctxt (K "MaSh_Py unlearn"); |
256 |
shutdown ctxt overlord; |
|
257 |
wipe_out_mash_state_dir ()) |
|
50311 | 258 |
|
53757
8d1a059ebcdb
reduce the number of emitted MaSh commands (among others to facilitate debugging)
blanchet
parents:
53756
diff
changeset
|
259 |
fun learn _ _ _ [] = () |
57006 | 260 |
| learn ctxt overlord save learns = |
57007 | 261 |
(trace_msg ctxt (fn () => |
57009 | 262 |
"MaSh_Py learn {" ^ elide_string 1000 (space_implode " " (map #1 learns)) ^ "}"); |
57007 | 263 |
run_mash_tool ctxt overlord ([] |> save ? cons save_models_arg) false (learns, str_of_learn) |
264 |
(K ())) |
|
50311 | 265 |
|
53757
8d1a059ebcdb
reduce the number of emitted MaSh commands (among others to facilitate debugging)
blanchet
parents:
53756
diff
changeset
|
266 |
fun relearn _ _ _ [] = () |
8d1a059ebcdb
reduce the number of emitted MaSh commands (among others to facilitate debugging)
blanchet
parents:
53756
diff
changeset
|
267 |
| relearn ctxt overlord save relearns = |
57007 | 268 |
(trace_msg ctxt (fn () => "MaSh_Py relearn " ^ |
57006 | 269 |
elide_string 1000 (space_implode " " (map #1 relearns))); |
53757
8d1a059ebcdb
reduce the number of emitted MaSh commands (among others to facilitate debugging)
blanchet
parents:
53756
diff
changeset
|
270 |
run_mash_tool ctxt overlord ([] |> save ? cons save_models_arg) false |
57006 | 271 |
(relearns, str_of_relearn) (K ())) |
50311 | 272 |
|
53117 | 273 |
fun query ctxt overlord max_suggs (query as (_, _, _, feats)) = |
57007 | 274 |
(trace_msg ctxt (fn () => "MaSh_Py query " ^ encode_features feats); |
55286 | 275 |
run_mash_tool ctxt overlord [] false ([query], str_of_query max_suggs) (fn suggs => |
57007 | 276 |
(case suggs () of [] => [] | suggs => snd (extract_suggestions (List.last suggs)))) |
50311 | 277 |
handle List.Empty => []) |
278 |
||
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
279 |
end; |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
280 |
|
50311 | 281 |
|
57007 | 282 |
(*** Standard ML version of MaSh ***) |
283 |
||
284 |
structure MaSh_SML = |
|
285 |
struct |
|
286 |
||
57009 | 287 |
fun max a b = if a > b then a else b |
288 |
||
289 |
exception BOTTOM of int |
|
290 |
||
291 |
fun heap cmp bnd a = |
|
292 |
let |
|
293 |
fun maxson l i = |
|
294 |
let |
|
295 |
val i31 = i + i + i + 1 |
|
296 |
in |
|
297 |
if i31 + 2 < l then |
|
298 |
let |
|
299 |
val x = Unsynchronized.ref i31; |
|
57012 | 300 |
val _ = if cmp (Array.sub(a,i31),(Array.sub(a,i31+1))) = LESS then x := i31+1 else (); |
301 |
val _ = if cmp (Array.sub(a,!x),(Array.sub (a,i31+2))) = LESS then x := i31+2 else () |
|
57009 | 302 |
in |
303 |
!x |
|
304 |
end |
|
305 |
else |
|
306 |
if i31 + 1 < l andalso cmp (Array.sub (a, i31), Array.sub (a, i31 + 1)) = LESS |
|
307 |
then i31 + 1 else if i31 < l then i31 else raise BOTTOM i |
|
308 |
end |
|
309 |
||
310 |
fun trickledown l i e = |
|
311 |
let |
|
312 |
val j = maxson l i |
|
313 |
in |
|
314 |
if cmp (Array.sub (a, j), e) = GREATER then |
|
57012 | 315 |
let val _ = Array.update (a, i, Array.sub (a, j)) in trickledown l j e end |
57009 | 316 |
else Array.update (a, i, e) |
317 |
end |
|
318 |
||
319 |
fun trickle l i e = trickledown l i e handle BOTTOM i => Array.update (a, i, e) |
|
320 |
||
321 |
fun bubbledown l i = |
|
322 |
let |
|
323 |
val j = maxson l i |
|
57012 | 324 |
val _ = Array.update (a, i, Array.sub (a, j)) |
57009 | 325 |
in |
326 |
bubbledown l j |
|
327 |
end |
|
328 |
||
329 |
fun bubble l i = bubbledown l i handle BOTTOM i => i |
|
330 |
||
331 |
fun trickleup i e = |
|
332 |
let |
|
333 |
val father = (i - 1) div 3 |
|
334 |
in |
|
335 |
if cmp (Array.sub (a, father), e) = LESS then |
|
336 |
let |
|
57012 | 337 |
val _ = Array.update (a, i, Array.sub (a, father)) |
57009 | 338 |
in |
339 |
if father > 0 then trickleup father e else Array.update (a, 0, e) |
|
340 |
end |
|
341 |
else Array.update (a, i, e) |
|
342 |
end |
|
343 |
||
344 |
val l = Array.length a |
|
345 |
||
346 |
fun for i = |
|
347 |
if i < 0 then () else |
|
348 |
let |
|
349 |
val _ = trickle l i (Array.sub (a, i)) |
|
350 |
in |
|
351 |
for (i - 1) |
|
352 |
end |
|
353 |
||
57012 | 354 |
val _ = for (((l + 1) div 3) - 1) |
57009 | 355 |
|
356 |
fun for2 i = |
|
357 |
if i < max 2 (l - bnd) then () else |
|
358 |
let |
|
359 |
val e = Array.sub (a, i) |
|
57012 | 360 |
val _ = Array.update (a, i, Array.sub (a, 0)) |
361 |
val _ = trickleup (bubble i 0) e |
|
57009 | 362 |
in |
363 |
for2 (i - 1) |
|
364 |
end |
|
365 |
||
57012 | 366 |
val _ = for2 (l - 1) |
57009 | 367 |
in |
368 |
if l > 1 then |
|
369 |
let |
|
370 |
val e = Array.sub (a, 1) |
|
57012 | 371 |
val _ = Array.update (a, 1, Array.sub (a, 0)) |
57009 | 372 |
in |
373 |
Array.update (a, 0, e) |
|
374 |
end |
|
375 |
else () |
|
376 |
end |
|
377 |
||
378 |
(* |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
379 |
avail_num = maximum number of theorems to check dependencies and symbols |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
380 |
adv_max = do not return theorems over or equal to this number. Must satisfy: adv_max <= avail_num |
57009 | 381 |
get_deps = returns dependencies of a theorem |
382 |
get_sym_ths = get theorems that have this feature |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
383 |
knns = number of nearest neighbours |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
384 |
advno = number of predictions to return |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
385 |
syms = symbols of the conjecture |
57009 | 386 |
*) |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
387 |
fun knn avail_num adv_max get_deps get_sym_ths knns advno syms = |
57009 | 388 |
let |
389 |
(* Can be later used for TFIDF *) |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
390 |
fun sym_wght _ = 1.0; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
391 |
val overlaps_sqr = Array.tabulate (avail_num, (fn i => (i, 0.0))); |
57009 | 392 |
fun inc_overlap j v = |
393 |
let |
|
394 |
val ov = snd (Array.sub (overlaps_sqr,j)) |
|
395 |
in |
|
396 |
Array.update (overlaps_sqr, j, (j, v + ov)) |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
397 |
end; |
57009 | 398 |
fun do_sym (s, con_wght) = |
399 |
let |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
400 |
val sw = sym_wght s; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
401 |
val w2 = sw * sw * con_wght; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
402 |
fun do_th (j, prem_wght) = if j < avail_num then inc_overlap j (w2 * prem_wght) else () |
57009 | 403 |
in |
404 |
ignore (map do_th (get_sym_ths s)) |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
405 |
end; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
406 |
val () = ignore (map do_sym syms); |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
407 |
val () = heap (fn (a, b) => Real.compare (snd a, snd b)) knns overlaps_sqr; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
408 |
val recommends = Array.tabulate (adv_max, (fn j => (j, 0.0))); |
57009 | 409 |
fun inc_recommend j v = |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
410 |
if j >= adv_max then () else |
57009 | 411 |
let |
412 |
val ov = snd (Array.sub (recommends,j)) |
|
413 |
in |
|
414 |
Array.update (recommends, j, (j, v + ov)) |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
415 |
end; |
57009 | 416 |
fun for k = |
417 |
if k = knns then () else |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
418 |
if k >= adv_max then () else |
57009 | 419 |
let |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
420 |
val (j, o2) = Array.sub (overlaps_sqr, avail_num - k - 1); |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
421 |
val o1 = Math.sqrt o2; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
422 |
val () = inc_recommend j o1; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
423 |
val ds = get_deps j; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
424 |
val l = Real.fromInt (length ds); |
57009 | 425 |
val _ = map (fn d => inc_recommend d (o1 / l)) ds |
426 |
in |
|
427 |
for (k + 1) |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
428 |
end; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
429 |
val () = for 0; |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
430 |
val () = heap (fn (a, b) => Real.compare (snd a, snd b)) advno recommends; |
57009 | 431 |
fun ret acc at = |
432 |
if at = Array.length recommends then acc else ret (Array.sub (recommends,at) :: acc) (at + 1) |
|
433 |
in |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
434 |
ret [] (max 0 (adv_max - advno)) |
57009 | 435 |
end |
436 |
||
437 |
val knns = 40 (* FUDGE *) |
|
438 |
||
439 |
fun add_to_xtab key (next, tab, keys) = (next + 1, Symtab.update_new (key, next) tab, key :: keys) |
|
440 |
||
57010 | 441 |
fun map_array_at ary f i = Array.update (ary, i, f (Array.sub (ary, i))) |
57009 | 442 |
|
443 |
fun learn_and_query ctxt parents access_G max_suggs hints feats = |
|
444 |
let |
|
445 |
val str_of_feat = space_implode "|" |
|
446 |
||
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
447 |
val visible_facts = Graph.all_preds access_G parents |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
448 |
val visible_fact_set = Symtab.make_set visible_facts |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
449 |
|
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
450 |
val all_nodes = |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
451 |
Graph.schedule (K I) access_G |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
452 |
|> List.partition (Symtab.defined visible_fact_set o fst) |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
453 |
|> op @ |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
454 |
|
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
455 |
val (rev_depss, featss, (_, _, rev_facts), (num_feats, feat_tab, _)) = |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
456 |
fold (fn (fact, (_, feats, deps)) => |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
457 |
fn (depss, featss, fact_xtab as (_, fact_tab, _), feat_xtab) => |
57009 | 458 |
let |
57010 | 459 |
fun add_feat (feat, weight) (xtab as (n, tab, _)) = |
57009 | 460 |
(case Symtab.lookup tab feat of |
57010 | 461 |
SOME i => ((i, weight), xtab) |
462 |
| NONE => ((n, weight), add_to_xtab feat xtab)) |
|
57009 | 463 |
|
57010 | 464 |
val (feats', feat_xtab') = fold_map (add_feat o apfst str_of_feat) feats feat_xtab |
57009 | 465 |
in |
466 |
(map_filter (Symtab.lookup fact_tab) deps :: depss, feats' :: featss, |
|
467 |
add_to_xtab fact fact_xtab, feat_xtab') |
|
468 |
end) |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
469 |
all_nodes ([], [], (0, Symtab.empty, []), (0, Symtab.empty, [])) |
57009 | 470 |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
471 |
val facts = rev rev_facts |
57009 | 472 |
val fact_ary = Array.fromList facts |
473 |
||
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
474 |
val deps_ary = Array.fromList (rev rev_depss) |
57009 | 475 |
val facts_ary = Array.array (num_feats, []) |
476 |
val _ = |
|
477 |
fold (fn feats => fn fact => |
|
478 |
let val fact' = fact - 1 in |
|
57010 | 479 |
List.app (fn (feat, weight) => map_array_at facts_ary (cons (fact', weight)) feat) |
480 |
feats; |
|
481 |
fact' |
|
57009 | 482 |
end) |
483 |
featss (length featss) |
|
484 |
in |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
485 |
trace_msg ctxt (fn () => "MaSh_SML query " ^ encode_features feats ^ " from {" ^ |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
486 |
elide_string 1000 (space_implode " " facts) ^ "}"); |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
487 |
knn (Array.length deps_ary) (length visible_facts) (curry Array.sub deps_ary) |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
488 |
(curry Array.sub facts_ary) knns max_suggs |
57012 | 489 |
(map_filter (fn (feat, weight) => |
490 |
Option.map (rpair weight) (Symtab.lookup feat_tab (str_of_feat feat))) feats) |
|
491 |
|> map ((fn i => Array.sub (fact_ary, i)) o fst) |
|
57009 | 492 |
end |
57007 | 493 |
|
494 |
end; |
|
495 |
||
496 |
||
50311 | 497 |
(*** Middle-level communication with MaSh ***) |
498 |
||
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
499 |
datatype proof_kind = Isar_Proof | Automatic_Proof | Isar_Proof_wegen_Prover_Flop |
50311 | 500 |
|
501 |
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
|
502 |
| 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
|
503 |
| str_of_proof_kind Isar_Proof_wegen_Prover_Flop = "x" |
50311 | 504 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
505 |
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
|
506 |
| 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
|
507 |
| proof_kind_of_str _ (* "i" *) = Isar_Proof |
50311 | 508 |
|
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
509 |
fun add_edge_to name parent = |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
510 |
Graph.default_node (parent, (Isar_Proof, [], [])) |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
511 |
#> Graph.add_edge (parent, name) |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
512 |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
513 |
fun add_node kind name parents feats deps = |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
514 |
Graph.default_node (name, (kind, feats, deps)) |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
515 |
#> Graph.map_node name (K (kind, feats, deps)) |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
516 |
#> fold (add_edge_to name) parents |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
517 |
|
50311 | 518 |
fun try_graph ctxt when def f = |
519 |
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
|
520 |
handle |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
521 |
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
|
522 |
(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
|
523 |
| 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
|
524 |
(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
|
525 |
| 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
|
526 |
(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
|
527 |
| exn => |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
528 |
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
|
529 |
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
|
530 |
else |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
531 |
(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
|
532 |
def) |
50311 | 533 |
|
534 |
fun graph_info G = |
|
535 |
string_of_int (length (Graph.keys G)) ^ " node(s), " ^ |
|
57006 | 536 |
string_of_int (fold (Integer.add o length o snd) (Graph.dest G) 0) ^ " edge(s), " ^ |
50311 | 537 |
string_of_int (length (Graph.maximals G)) ^ " maximal" |
538 |
||
53095 | 539 |
type mash_state = |
57010 | 540 |
{access_G : (proof_kind * (string list * real) list * string list) Graph.T, |
53095 | 541 |
num_known_facts : int, |
542 |
dirty : string list option} |
|
50311 | 543 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
544 |
val empty_state = {access_G = Graph.empty, num_known_facts = 0, dirty = SOME []} : mash_state |
50311 | 545 |
|
546 |
local |
|
547 |
||
57010 | 548 |
val version = "*** MaSh version 20140519 ***" |
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
549 |
|
53095 | 550 |
exception FILE_VERSION_TOO_NEW of unit |
50311 | 551 |
|
552 |
fun extract_node line = |
|
55286 | 553 |
(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
|
554 |
[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
|
555 |
(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
|
556 |
([kind, name], [parents, feats, deps]) => |
57010 | 557 |
SOME (proof_kind_of_str kind, decode_str name, decode_strs parents, decode_features feats, |
558 |
decode_strs deps) |
|
55286 | 559 |
| _ => NONE) |
560 |
| _ => NONE) |
|
50311 | 561 |
|
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
562 |
fun load_state _ _ (state as (true, _)) = state |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
563 |
| load_state ctxt overlord _ = |
50311 | 564 |
let val path = mash_state_file () in |
565 |
(true, |
|
55286 | 566 |
(case try File.read_lines path of |
50311 | 567 |
SOME (version' :: node_lines) => |
568 |
let |
|
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
569 |
fun extract_line_and_add_node line = |
55286 | 570 |
(case extract_node 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
|
571 |
NONE => I (* should not happen *) |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
572 |
| 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
|
573 |
|
53095 | 574 |
val (access_G, num_known_facts) = |
55286 | 575 |
(case string_ord (version', version) of |
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
576 |
EQUAL => |
53095 | 577 |
(try_graph ctxt "loading state" Graph.empty (fn () => |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
578 |
fold extract_line_and_add_node node_lines Graph.empty), |
53095 | 579 |
length node_lines) |
57007 | 580 |
| LESS => |
581 |
(if Config.get ctxt sml then wipe_out_mash_state_dir () |
|
582 |
else MaSh_Py.unlearn ctxt overlord; (Graph.empty, 0)) (* cannot parse old file *) |
|
55286 | 583 |
| GREATER => raise FILE_VERSION_TOO_NEW ()) |
50311 | 584 |
in |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
585 |
trace_msg ctxt (fn () => "Loaded fact graph (" ^ graph_info 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
|
586 |
{access_G = access_G, num_known_facts = num_known_facts, dirty = SOME []} |
50311 | 587 |
end |
55286 | 588 |
| _ => empty_state)) |
50311 | 589 |
end |
590 |
||
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
591 |
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
|
592 |
str_of_proof_kind kind ^ " " ^ encode_str name ^ ": " ^ encode_strs parents ^ "; " ^ |
57010 | 593 |
encode_features 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
|
594 |
|
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
595 |
fun save_state _ (state as {dirty = SOME [], ...}) = state |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
596 |
| save_state ctxt {access_G, num_known_facts, dirty} = |
50311 | 597 |
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
|
598 |
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
|
599 |
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
|
600 |
|
50311 | 601 |
val (banner, entries) = |
55286 | 602 |
(case dirty of |
603 |
SOME names => (NONE, fold (append_entry o Graph.get_entry access_G) names []) |
|
604 |
| NONE => (SOME (version ^ "\n"), Graph.fold append_entry access_G [])) |
|
50311 | 605 |
in |
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
606 |
write_file banner (entries, str_of_entry) (mash_state_file ()); |
50311 | 607 |
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
|
608 |
"Saved fact graph (" ^ graph_info 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
|
609 |
(case dirty of |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
610 |
SOME dirty => "; " ^ string_of_int (length dirty) ^ " dirty fact(s)" |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
611 |
| _ => "") ^ ")"); |
53095 | 612 |
{access_G = access_G, num_known_facts = num_known_facts, dirty = SOME []} |
50311 | 613 |
end |
614 |
||
615 |
val global_state = |
|
616 |
Synchronized.var "Sledgehammer_MaSh.global_state" (false, empty_state) |
|
617 |
||
618 |
in |
|
619 |
||
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
620 |
fun map_state ctxt overlord 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
|
621 |
Synchronized.change global_state (load_state ctxt overlord ##> (f #> save_state ctxt)) |
53095 | 622 |
handle FILE_VERSION_TOO_NEW () => () |
50311 | 623 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
624 |
fun peek_state ctxt overlord 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
|
625 |
Synchronized.change_result global_state (perhaps (try (load_state ctxt overlord)) #> `snd #>> f) |
50311 | 626 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
627 |
fun clear_state ctxt overlord = |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
628 |
(* "unlearn" also removes the state file *) |
57007 | 629 |
Synchronized.change global_state (fn _ => |
630 |
(if Config.get ctxt sml then wipe_out_mash_state_dir () |
|
631 |
else MaSh_Py.unlearn ctxt overlord; (false, empty_state))) |
|
50311 | 632 |
|
633 |
end |
|
634 |
||
53558 | 635 |
fun mash_unlearn ctxt ({overlord, ...} : params) = |
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
|
636 |
(clear_state ctxt overlord; Output.urgent_message "Reset MaSh.") |
50570 | 637 |
|
50311 | 638 |
|
639 |
(*** Isabelle helpers ***) |
|
640 |
||
53819
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
641 |
fun is_mash_enabled () = (getenv "MASH" = "yes") |
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
642 |
|
50722 | 643 |
val local_prefix = "local" ^ Long_Name.separator |
48378 | 644 |
|
50722 | 645 |
fun elided_backquote_thm threshold th = |
57006 | 646 |
elide_string threshold (backquote_thm (Proof_Context.init_global (Thm.theory_of_thm th)) th) |
48378 | 647 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
648 |
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
|
649 |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
650 |
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
|
651 |
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
|
652 |
let val hint = Thm.get_name_hint th in |
50722 | 653 |
(* There must be a better way to detect local facts. *) |
55286 | 654 |
(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
|
655 |
SOME suf => |
55286 | 656 |
thy_name_of_thm th ^ Long_Name.separator ^ suf ^ Long_Name.separator ^ |
657 |
elided_backquote_thm 50 th |
|
658 |
| 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
|
659 |
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
|
660 |
else |
50722 | 661 |
elided_backquote_thm 200 th |
48378 | 662 |
|
51134 | 663 |
fun find_suggested_facts ctxt facts = |
48330 | 664 |
let |
51134 | 665 |
fun add (fact as (_, th)) = Symtab.default (nickname_of_thm th, fact) |
666 |
val tab = fold add facts Symtab.empty |
|
667 |
fun lookup nick = |
|
668 |
Symtab.lookup tab nick |
|
57006 | 669 |
|> tap (fn NONE => trace_msg ctxt (fn () => "Cannot find " ^ quote nick) | _ => ()) |
51134 | 670 |
in map_filter lookup end |
48311 | 671 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
672 |
fun scaled_avg [] = 0 |
57006 | 673 |
| scaled_avg xs = Real.ceil (100000000.0 * fold (curry (op +)) xs 0.0) div length xs |
48328
ca0b7d19dd62
attempt at meshing according to more meaningful factors
blanchet
parents:
48327
diff
changeset
|
674 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
675 |
fun avg [] = 0.0 |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
676 |
| avg xs = fold (curry (op +)) xs 0.0 / Real.fromInt (length xs) |
48313
0faafdffa662
mesh facts by taking into consideration whether a fact is known to MeSh
blanchet
parents:
48312
diff
changeset
|
677 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
678 |
fun normalize_scores _ [] = [] |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
679 |
| normalize_scores max_facts xs = |
57006 | 680 |
map (apsnd (curry Real.* (1.0 / avg (map snd (take max_facts xs))))) xs |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
681 |
|
50814 | 682 |
fun mesh_facts _ max_facts [(_, (sels, unks))] = |
48406 | 683 |
map fst (take max_facts sels) @ take (max_facts - length sels) unks |
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
684 |
| mesh_facts fact_eq max_facts mess = |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
685 |
let |
51029 | 686 |
val mess = mess |> map (apsnd (apfst (normalize_scores max_facts))) |
57006 | 687 |
|
51029 | 688 |
fun score_in fact (global_weight, (sels, unks)) = |
57006 | 689 |
let val score_at = try (nth sels) #> Option.map (fn (_, score) => global_weight * score) in |
55286 | 690 |
(case find_index (curry fact_eq fact o fst) sels 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
|
691 |
~1 => if member fact_eq unks fact then NONE else SOME 0.0 |
55286 | 692 |
| rank => score_at rank) |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
693 |
end |
57006 | 694 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
695 |
fun weight_of fact = mess |> map_filter (score_in fact) |> scaled_avg |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
696 |
in |
57006 | 697 |
fold (union fact_eq o map fst o take max_facts o fst o snd) mess [] |
698 |
|> map (`weight_of) |> sort (int_ord o swap o pairself fst) |
|
699 |
|> map snd |> take max_facts |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
700 |
end |
48312 | 701 |
|
54693 | 702 |
val default_weight = 1.0 |
54695 | 703 |
fun free_feature_of s = (["f" ^ s], 40.0 (* FUDGE *)) |
704 |
fun thy_feature_of s = (["y" ^ s], 8.0 (* FUDGE *)) |
|
705 |
fun type_feature_of s = (["t" ^ s], 4.0 (* FUDGE *)) |
|
706 |
fun var_feature_of s = ([s], 1.0 (* FUDGE *)) |
|
707 |
fun class_feature_of s = (["s" ^ s], 1.0 (* FUDGE *)) |
|
708 |
val local_feature = (["local"], 16.0 (* FUDGE *)) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
709 |
|
51135 | 710 |
fun crude_theory_ord p = |
50722 | 711 |
if Theory.subthy p then |
712 |
if Theory.eq_thy p then EQUAL else LESS |
|
48324 | 713 |
else if Theory.subthy (swap p) then |
714 |
GREATER |
|
55286 | 715 |
else |
716 |
(case int_ord (pairself (length o Theory.ancestors_of) p) of |
|
717 |
EQUAL => string_ord (pairself Context.theory_name p) |
|
718 |
| order => order) |
|
48324 | 719 |
|
51135 | 720 |
fun crude_thm_ord p = |
55286 | 721 |
(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
|
722 |
EQUAL => |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
723 |
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
|
724 |
(* Hack to put "xxx_def" before "xxxI" and "xxxE" *) |
55286 | 725 |
(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
|
726 |
EQUAL => string_ord q |
55286 | 727 |
| ord => ord) |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
728 |
end |
55286 | 729 |
| ord => ord) |
48324 | 730 |
|
51136 | 731 |
val thm_less_eq = Theory.subthy o pairself theory_of_thm |
732 |
fun thm_less p = thm_less_eq p andalso not (thm_less_eq (swap p)) |
|
733 |
||
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
734 |
val freezeT = Type.legacy_freeze_type |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
735 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
736 |
fun freeze (t $ u) = freeze t $ freeze u |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
737 |
| 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
|
738 |
| freeze (Var ((s, _), T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
739 |
| freeze (Const (s, T)) = Const (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
740 |
| freeze (Free (s, T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
741 |
| freeze t = t |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
742 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
743 |
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
|
744 |
|
54141
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
745 |
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
|
746 |
let |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
747 |
val problem = |
54141
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
748 |
{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
|
749 |
subgoal_count = 1, factss = [("", facts)]} |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
750 |
in |
54503 | 751 |
get_minimizing_prover ctxt MaSh (K ()) prover params (K (K (K ""))) problem |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
752 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
753 |
|
48326 | 754 |
val bad_types = [@{type_name prop}, @{type_name bool}, @{type_name fun}] |
755 |
||
53086
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
756 |
val pat_tvar_prefix = "_" |
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
757 |
val pat_var_prefix = "_" |
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
758 |
|
53089 | 759 |
(* try "Long_Name.base_name" for shorter names *) |
56254 | 760 |
fun massage_long_name s = if s = @{class type} then "T" else s |
53083
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
761 |
|
57006 | 762 |
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
|
763 |
|
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
764 |
fun crude_str_of_typ (Type (s, [])) = massage_long_name s |
57006 | 765 |
| 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
|
766 |
| 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
|
767 |
| 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
|
768 |
|
53128 | 769 |
fun maybe_singleton_str _ "" = [] |
770 |
| maybe_singleton_str pref s = [pref ^ s] |
|
771 |
||
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
772 |
val max_pat_breadth = 10 (* FUDGE *) |
50585 | 773 |
|
54695 | 774 |
fun keep m xs = |
775 |
let val n = length xs in |
|
776 |
if n <= m then xs else take (m div 2) xs @ drop (n - (m + 1) div 2) xs |
|
777 |
end |
|
778 |
||
779 |
fun sort_of_type alg T = |
|
780 |
let |
|
57009 | 781 |
val G = Sorts.classes_of alg |
57006 | 782 |
|
54695 | 783 |
fun cls_of S [] = S |
784 |
| cls_of S (cl :: cls) = |
|
785 |
if Sorts.of_sort alg (T, [cl]) then |
|
786 |
cls_of (insert (op =) cl S) cls |
|
787 |
else |
|
788 |
let val cls' = Sorts.minimize_sort alg (Sorts.super_classes alg cl) in |
|
789 |
cls_of S (union (op =) cls' cls) |
|
790 |
end |
|
791 |
in |
|
57009 | 792 |
cls_of [] (Graph.maximals G) |
54695 | 793 |
end |
794 |
||
54698
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
795 |
val generalize_goal = false |
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
796 |
|
54695 | 797 |
fun term_features_of ctxt thy_name num_facts const_tab term_max_depth type_max_depth in_goal ts = |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
798 |
let |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
799 |
val thy = Proof_Context.theory_of ctxt |
54695 | 800 |
val alg = Sign.classes_of thy |
53082 | 801 |
|
50393 | 802 |
val fixes = map snd (Variable.dest_fixes ctxt) |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
803 |
val classes = Sign.classes_of thy |
53082 | 804 |
|
48304 | 805 |
fun add_classes @{sort type} = I |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
806 |
| add_classes S = |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
807 |
fold (`(Sorts.super_classes classes) |
57006 | 808 |
#> swap #> op :: |
809 |
#> subtract (op =) @{sort type} #> map massage_long_name |
|
810 |
#> map class_feature_of |
|
811 |
#> union (eq_fst (op =))) S |
|
53082 | 812 |
|
813 |
fun pattify_type 0 _ = [] |
|
814 |
| pattify_type _ (Type (s, [])) = |
|
53086
15fe0ca088b3
MaSh tweaking: shorter names + killed (broken) SNoW
blanchet
parents:
53085
diff
changeset
|
815 |
if member (op =) bad_types s then [] else [massage_long_name s] |
53082 | 816 |
| pattify_type depth (Type (s, U :: Ts)) = |
817 |
let |
|
818 |
val T = Type (s, Ts) |
|
54695 | 819 |
val ps = keep max_pat_breadth (pattify_type depth T) |
820 |
val qs = keep max_pat_breadth ("" :: pattify_type (depth - 1) U) |
|
57006 | 821 |
in |
822 |
map_product (fn p => fn "" => p | q => p ^ "(" ^ q ^ ")") ps qs |
|
823 |
end |
|
53128 | 824 |
| pattify_type _ (TFree (_, S)) = |
825 |
maybe_singleton_str pat_tvar_prefix (crude_str_of_sort S) |
|
826 |
| pattify_type _ (TVar (_, S)) = |
|
827 |
maybe_singleton_str pat_tvar_prefix (crude_str_of_sort S) |
|
57006 | 828 |
|
53082 | 829 |
fun add_type_pat depth T = |
53159 | 830 |
union (eq_fst (op =)) (map type_feature_of (pattify_type depth T)) |
57006 | 831 |
|
53082 | 832 |
fun add_type_pats 0 _ = I |
833 |
| add_type_pats depth t = |
|
834 |
add_type_pat depth t #> add_type_pats (depth - 1) t |
|
57006 | 835 |
|
53083
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
836 |
fun add_type T = |
019ecbb18e3f
generate patterns for variables as well in MaSh (cf. HOL(y)Hammer)
blanchet
parents:
53082
diff
changeset
|
837 |
add_type_pats type_max_depth T |
53156 | 838 |
#> fold_atyps_sorts (add_classes o snd) T |
57006 | 839 |
|
53084 | 840 |
fun add_subtypes (T as Type (_, Ts)) = add_type T #> fold add_subtypes Ts |
841 |
| add_subtypes T = add_type T |
|
53082 | 842 |
|
53130 | 843 |
fun weight_of_const s = |
844 |
16.0 + |
|
845 |
(if num_facts = 0 then |
|
846 |
0.0 |
|
847 |
else |
|
848 |
let val count = Symtab.lookup const_tab s |> the_default 1 in |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
849 |
Real.fromInt num_facts / Real.fromInt count (* FUDGE *) |
53130 | 850 |
end) |
57006 | 851 |
|
54695 | 852 |
fun pattify_term _ 0 _ = ([] : (string list * real) list) |
853 |
| pattify_term _ _ (Const (x as (s, _))) = |
|
854 |
if is_widely_irrelevant_const s then |
|
855 |
[] |
|
856 |
else |
|
857 |
let |
|
54698
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
858 |
val strs_of_sort = |
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
859 |
(if generalize_goal andalso in_goal then Sorts.complete_sort alg |
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
860 |
else single o hd) |
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
861 |
#> map massage_long_name |
54695 | 862 |
fun strs_of_type_arg (T as Type (s, _)) = |
54698
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
863 |
massage_long_name s :: |
fed04f257898
disable generalization in MaSh until it is shown to help
blanchet
parents:
54695
diff
changeset
|
864 |
(if generalize_goal andalso in_goal then strs_of_sort (sort_of_type alg T) else []) |
54799 | 865 |
| strs_of_type_arg (TFree (_, S)) = strs_of_sort S |
866 |
| strs_of_type_arg (TVar (_, S)) = strs_of_sort S |
|
54695 | 867 |
|
868 |
val typargss = |
|
869 |
these (try (Sign.const_typargs thy) x) |
|
870 |
|> map strs_of_type_arg |
|
871 |
|> n_fold_cartesian_product |
|
872 |
|> keep max_pat_breadth |
|
873 |
val s' = massage_long_name s |
|
874 |
val w = weight_of_const s |
|
875 |
||
876 |
fun str_of_type_args [] = "" |
|
877 |
| str_of_type_args ss = "(" ^ space_implode "," ss ^ ")" |
|
878 |
in |
|
879 |
[(map (curry (op ^) s' o str_of_type_args) typargss, w)] |
|
880 |
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
|
881 |
| pattify_term _ _ (Free (s, T)) = |
53128 | 882 |
maybe_singleton_str pat_var_prefix (crude_str_of_typ T) |
54695 | 883 |
|> map var_feature_of |
53090
1426c97311f2
treat frees as both consts and vars, for more hits
blanchet
parents:
53089
diff
changeset
|
884 |
|> (if member (op =) fixes s then |
54695 | 885 |
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
|
886 |
else |
1426c97311f2
treat frees as both consts and vars, for more hits
blanchet
parents:
53089
diff
changeset
|
887 |
I) |
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
|
888 |
| pattify_term _ _ (Var (_, T)) = |
54695 | 889 |
maybe_singleton_str pat_var_prefix (crude_str_of_typ T) |
890 |
|> map var_feature_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
|
891 |
| pattify_term Ts _ (Bound j) = |
54695 | 892 |
maybe_singleton_str pat_var_prefix (crude_str_of_typ (nth Ts j)) |
893 |
|> map var_feature_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
|
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 |
54695 | 896 |
val ps = keep max_pat_breadth (pattify_term Ts depth t) |
897 |
val qs = keep max_pat_breadth (([], default_weight) :: pattify_term Ts (depth - 1) u) |
|
53130 | 898 |
in |
54695 | 899 |
map_product (fn ppw as (p :: _, pw) => |
900 |
fn ([], _) => ppw |
|
901 |
| (q :: _, qw) => ([p ^ "(" ^ q ^ ")"], pw + qw)) ps qs |
|
53130 | 902 |
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
|
903 |
| pattify_term _ _ _ = [] |
57006 | 904 |
|
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
|
905 |
fun add_term_pat Ts = union (eq_fst (op =)) oo pattify_term Ts |
57006 | 906 |
|
53130 | 907 |
fun add_term_pats _ 0 _ = I |
908 |
| add_term_pats Ts depth t = |
|
909 |
add_term_pat Ts depth t #> add_term_pats Ts (depth - 1) t |
|
57006 | 910 |
|
53130 | 911 |
fun add_term Ts = add_term_pats Ts term_max_depth |
57006 | 912 |
|
53085 | 913 |
fun add_subterms Ts t = |
55286 | 914 |
(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
|
915 |
(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
|
916 |
(not (is_widely_irrelevant_const s) ? add_term Ts t) |
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
|
917 |
#> add_subtypes T |
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
|
918 |
#> fold (add_subterms Ts) args |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
919 |
| (head, args) => |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
920 |
(case head of |
53130 | 921 |
Free (_, T) => add_term Ts t #> add_subtypes T |
53084 | 922 |
| Var (_, T) => add_subtypes T |
53085 | 923 |
| 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
|
924 |
| _ => I) |
55286 | 925 |
#> fold (add_subterms Ts) args) |
57006 | 926 |
in |
927 |
fold (add_subterms []) ts [] |
|
928 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
929 |
|
53085 | 930 |
val term_max_depth = 2 |
53155 | 931 |
val type_max_depth = 1 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
932 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
933 |
(* TODO: Generate type classes for types? *) |
54695 | 934 |
fun features_of ctxt thy num_facts const_tab (scope, _) in_goal ts = |
50393 | 935 |
let val thy_name = Context.theory_name thy in |
936 |
thy_feature_of thy_name :: |
|
54695 | 937 |
term_features_of ctxt thy_name num_facts const_tab term_max_depth type_max_depth in_goal ts |
50393 | 938 |
|> scope <> Global ? cons local_feature |
939 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
940 |
|
57006 | 941 |
(* Too many dependencies is a sign that a decision procedure is at work. There is not much to learn |
942 |
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
|
943 |
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
|
944 |
|
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
|
945 |
val prover_default_max_facts = 25 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
946 |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
947 |
(* "type_definition_xxx" facts are characterized by their use of "CollectI". *) |
50755 | 948 |
val typedef_dep = nickname_of_thm @{thm CollectI} |
57006 | 949 |
(* Mysterious parts of the class machinery create lots of proofs that refer exclusively to |
950 |
"someI_ex" (and to some internal constructions). *) |
|
50755 | 951 |
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
|
952 |
|
50828 | 953 |
val fundef_ths = |
57006 | 954 |
@{thms fundef_ex1_existence fundef_ex1_uniqueness fundef_ex1_iff fundef_default_value} |
50828 | 955 |
|> map nickname_of_thm |
956 |
||
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
957 |
(* "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
|
958 |
val typedef_ths = |
57006 | 959 |
@{thms type_definition.Abs_inverse type_definition.Rep_inverse type_definition.Rep |
960 |
type_definition.Rep_inject type_definition.Abs_inject type_definition.Rep_cases |
|
961 |
type_definition.Abs_cases type_definition.Rep_induct type_definition.Abs_induct |
|
962 |
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
|
963 |
|> map nickname_of_thm |
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
964 |
|
48441 | 965 |
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
|
966 |
(case first_field ".rec" dep of |
57006 | 967 |
SOME (pref, _) => |
968 |
(case first_field ".size" (nickname_of_thm th) of |
|
969 |
SOME (pref', _) => pref = pref' |
|
970 |
| NONE => false) |
|
971 |
| NONE => false) |
|
48441 | 972 |
| is_size_def _ _ = false |
973 |
||
53095 | 974 |
fun no_dependencies_for_status status = |
975 |
status = Non_Rec_Def orelse status = Rec_Def |
|
976 |
||
51177 | 977 |
fun trim_dependencies deps = |
50755 | 978 |
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
|
979 |
|
50755 | 980 |
fun isar_dependencies_of name_tabs th = |
51020 | 981 |
let val deps = thms_in_proof (SOME name_tabs) th in |
57006 | 982 |
if deps = [typedef_dep] orelse deps = [class_some_dep] orelse |
983 |
exists (member (op =) fundef_ths) deps orelse exists (member (op =) typedef_ths) deps orelse |
|
50828 | 984 |
is_size_def deps th then |
50755 | 985 |
[] |
986 |
else |
|
987 |
deps |
|
988 |
end |
|
48404 | 989 |
|
57006 | 990 |
fun prover_dependencies_of ctxt (params as {verbose, max_facts, ...}) prover auto_level facts |
991 |
name_tabs th = |
|
55286 | 992 |
(case isar_dependencies_of name_tabs th of |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
993 |
[] => (false, []) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
994 |
| isar_deps => |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
995 |
let |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
996 |
val thy = Proof_Context.theory_of ctxt |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
997 |
val goal = goal_of_thm thy th |
54141
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
998 |
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
|
999 |
val (_, hyp_ts, concl_t) = ATP_Util.strip_subgoal goal 1 ctxt |
51136 | 1000 |
val facts = facts |> filter (fn (_, th') => thm_less (th', th)) |
57006 | 1001 |
|
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
|
1002 |
fun nickify ((_, stature), th) = ((nickname_of_thm th, stature), th) |
57006 | 1003 |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1004 |
fun is_dep dep (_, th) = nickname_of_thm th = dep |
57006 | 1005 |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1006 |
fun add_isar_dep facts dep accum = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1007 |
if exists (is_dep dep) accum then |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1008 |
accum |
55286 | 1009 |
else |
1010 |
(case find_first (is_dep dep) facts of |
|
1011 |
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
|
1012 |
| NONE => accum (* should not happen *)) |
57006 | 1013 |
|
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
|
1014 |
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
|
1015 |
facts |
54095 | 1016 |
|> mepo_suggested_facts ctxt params (max_facts |> the_default prover_default_max_facts) NONE |
1017 |
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
|
1018 |
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
|
1019 |
mepo_facts |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
1020 |
|> 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
|
1021 |
|> 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
|
1022 |
val num_isar_deps = length isar_deps |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1023 |
in |
48404 | 1024 |
if verbose andalso auto_level = 0 then |
54141
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
1025 |
"MaSh: " ^ quote prover ^ " on " ^ quote name ^ " with " ^ string_of_int num_isar_deps ^ |
f57f8e7a879f
generate a comment storing the goal nickname in "learn_prover"
blanchet
parents:
54140
diff
changeset
|
1026 |
" + " ^ string_of_int (length facts - num_isar_deps) ^ " facts." |
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
|
1027 |
|> Output.urgent_message |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1028 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1029 |
(); |
55286 | 1030 |
(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
|
1031 |
{outcome = NONE, used_facts, ...} => |
48404 | 1032 |
(if verbose andalso auto_level = 0 then |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1033 |
let val num_facts = length used_facts in |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1034 |
"Found proof with " ^ string_of_int num_facts ^ " fact" ^ |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1035 |
plural_s num_facts ^ "." |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1036 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1037 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1038 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1039 |
(); |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
1040 |
(true, map fst used_facts)) |
55286 | 1041 |
| _ => (false, isar_deps)) |
1042 |
end) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1043 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1044 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1045 |
(*** High-level communication with MaSh ***) |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
1046 |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1047 |
(* 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
|
1048 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1049 |
fun chunks_and_parents_for chunks th = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1050 |
let |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1051 |
fun insert_parent new parents = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1052 |
let val parents = parents |> filter_out (fn p => thm_less_eq (p, new)) in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1053 |
parents |> forall (fn p => not (thm_less_eq (new, p))) parents |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1054 |
? cons new |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1055 |
end |
57006 | 1056 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1057 |
fun rechunk seen (rest as th' :: ths) = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1058 |
if thm_less_eq (th', th) then (rev seen, rest) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1059 |
else rechunk (th' :: seen) ths |
57006 | 1060 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1061 |
fun do_chunk [] accum = accum |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1062 |
| do_chunk (chunk as hd_chunk :: _) (chunks, parents) = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1063 |
if thm_less_eq (hd_chunk, th) then |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1064 |
(chunk :: chunks, insert_parent hd_chunk parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1065 |
else if thm_less_eq (List.last chunk, th) then |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1066 |
let val (front, back as hd_back :: _) = rechunk [] chunk in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1067 |
(front :: back :: chunks, insert_parent hd_back parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1068 |
end |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1069 |
else |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1070 |
(chunk :: chunks, parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1071 |
in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1072 |
fold_rev do_chunk chunks ([], []) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1073 |
|>> cons [] |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1074 |
||> map nickname_of_thm |
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1075 |
end |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
1076 |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1077 |
fun attach_parents_to_facts _ [] = [] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1078 |
| 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
|
1079 |
let |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1080 |
fun do_facts _ [] = [] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1081 |
| do_facts (_, parents) [fact] = [(parents, fact)] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1082 |
| do_facts (chunks, parents) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1083 |
((fact as (_, th)) :: (facts as (_, th') :: _)) = |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1084 |
let |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1085 |
val chunks = app_hd (cons th) chunks |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1086 |
val chunks_and_parents' = |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1087 |
if thm_less_eq (th, th') andalso |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1088 |
thy_name_of_thm th = thy_name_of_thm th' then |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1089 |
(chunks, [nickname_of_thm th]) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1090 |
else |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1091 |
chunks_and_parents_for chunks th' |
57006 | 1092 |
in |
1093 |
(parents, fact) :: do_facts chunks_and_parents' facts |
|
1094 |
end |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1095 |
in |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1096 |
old_facts @ facts |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1097 |
|> do_facts (chunks_and_parents_for [[]] th) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1098 |
|> drop (length old_facts) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1099 |
end |
51177 | 1100 |
|
53095 | 1101 |
fun maximal_wrt_graph G keys = |
1102 |
let |
|
1103 |
val tab = Symtab.empty |> fold (fn name => Symtab.default (name, ())) keys |
|
57006 | 1104 |
|
57012 | 1105 |
fun insert_new seen name = not (Symtab.defined seen name) ? insert (op =) name |
57006 | 1106 |
|
53095 | 1107 |
fun num_keys keys = Graph.Keys.fold (K (Integer.add 1)) keys 0 |
57006 | 1108 |
|
53095 | 1109 |
fun find_maxes _ (maxs, []) = map snd maxs |
1110 |
| find_maxes seen (maxs, new :: news) = |
|
57012 | 1111 |
find_maxes (seen |> num_keys (Graph.imm_succs G new) > 1 ? Symtab.default (new, ())) |
1112 |
(if Symtab.defined tab new then |
|
1113 |
let |
|
1114 |
val newp = Graph.all_preds G [new] |
|
1115 |
fun is_ancestor x yp = member (op =) yp x |
|
1116 |
val maxs = maxs |> filter (fn (_, max) => not (is_ancestor max newp)) |
|
1117 |
in |
|
1118 |
if exists (is_ancestor new o fst) maxs then (maxs, news) |
|
1119 |
else ((newp, new) :: filter_out (fn (_, max) => is_ancestor max newp) maxs, news) |
|
1120 |
end |
|
1121 |
else |
|
1122 |
(maxs, Graph.Keys.fold (insert_new seen) (Graph.imm_preds G new) news)) |
|
57006 | 1123 |
in |
1124 |
find_maxes Symtab.empty ([], Graph.maximals G) |
|
1125 |
end |
|
53095 | 1126 |
|
57012 | 1127 |
fun maximal_wrt_access_graph access_G facts = |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1128 |
map (nickname_of_thm o snd) facts |
57012 | 1129 |
|> maximal_wrt_graph access_G |
53095 | 1130 |
|
1131 |
fun is_fact_in_graph access_G = can (Graph.get_node access_G) o nickname_of_thm |
|
1132 |
||
53197 | 1133 |
val chained_feature_factor = 0.5 (* FUDGE *) |
1134 |
val extra_feature_factor = 0.1 (* FUDGE *) |
|
53201
2a2dc18f3e10
reverted 6c5e7143e1f6; took a better look at evaluation data this time
blanchet
parents:
53197
diff
changeset
|
1135 |
val num_extra_feature_facts = 10 (* FUDGE *) |
53095 | 1136 |
|
1137 |
(* FUDGE *) |
|
1138 |
fun weight_of_proximity_fact rank = |
|
1139 |
Math.pow (1.3, 15.5 - 0.2 * Real.fromInt rank) + 15.0 |
|
1140 |
||
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1141 |
fun weight_facts_smoothly facts = |
53095 | 1142 |
facts ~~ map weight_of_proximity_fact (0 upto length facts - 1) |
1143 |
||
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1144 |
(* FUDGE *) |
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1145 |
fun steep_weight_of_fact rank = |
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1146 |
Math.pow (0.62, log2 (Real.fromInt (rank + 1))) |
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1147 |
|
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1148 |
fun weight_facts_steeply facts = |
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1149 |
facts ~~ map steep_weight_of_fact (0 upto length facts - 1) |
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1150 |
|
53095 | 1151 |
val max_proximity_facts = 100 |
1152 |
||
54060 | 1153 |
fun find_mash_suggestions ctxt max_facts suggs facts chained raw_unknown = |
1154 |
let |
|
1155 |
val inter_fact = inter (eq_snd Thm.eq_thm_prop) |
|
1156 |
val raw_mash = find_suggested_facts ctxt facts suggs |
|
1157 |
val proximate = take max_proximity_facts facts |
|
1158 |
val unknown_chained = inter_fact raw_unknown chained |
|
1159 |
val unknown_proximate = inter_fact raw_unknown proximate |
|
1160 |
val mess = |
|
1161 |
[(0.9 (* FUDGE *), (map (rpair 1.0) unknown_chained, [])), |
|
1162 |
(0.4 (* FUDGE *), (weight_facts_smoothly unknown_proximate, [])), |
|
1163 |
(0.1 (* FUDGE *), (weight_facts_steeply raw_mash, raw_unknown))] |
|
57007 | 1164 |
val unknown = raw_unknown |
1165 |
|> fold (subtract (eq_snd Thm.eq_thm_prop)) [unknown_chained, unknown_proximate] |
|
57006 | 1166 |
in |
1167 |
(mesh_facts (eq_snd Thm.eq_thm_prop) max_facts mess, unknown) |
|
1168 |
end |
|
53095 | 1169 |
|
53127 | 1170 |
fun add_const_counts t = |
57006 | 1171 |
fold (fn s => Symtab.map_default (s, 0) (Integer.add 1)) (Term.add_const_names t []) |
53095 | 1172 |
|
54503 | 1173 |
fun mash_suggested_facts ctxt ({debug, overlord, ...} : params) max_facts hyp_ts concl_t facts = |
53095 | 1174 |
let |
1175 |
val thy = Proof_Context.theory_of ctxt |
|
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
|
1176 |
val thy_name = Context.theory_name thy |
53141
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
1177 |
val facts = facts |> sort (crude_thm_ord o pairself snd o swap) |
53095 | 1178 |
val chained = facts |> filter (fn ((_, (scope, _)), _) => scope = Chained) |
53141
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
1179 |
val num_facts = length facts |
53127 | 1180 |
val const_tab = fold (add_const_counts o prop_of o snd) facts Symtab.empty |
54085 | 1181 |
|
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
|
1182 |
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
|
1183 |
thy_name = Context.theory_name (theory_of_thm th) |
56995 | 1184 |
|
53141
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
1185 |
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
|
1186 |
[prop_of th] |
54695 | 1187 |
|> features_of ctxt (theory_of_thm th) num_facts const_tab stature false |
53141
d27e99a6a679
take chained and proximate facts into consideration when computing MaSh features
blanchet
parents:
53140
diff
changeset
|
1188 |
|> map (apsnd (fn r => weight * factor * r)) |
54085 | 1189 |
|
53095 | 1190 |
val (access_G, suggs) = |
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
1191 |
peek_state ctxt overlord (fn {access_G, ...} => |
57007 | 1192 |
if Graph.is_empty access_G then |
1193 |
(trace_msg ctxt (K "Nothing has been learned yet"); (access_G, [])) |
|
1194 |
else |
|
1195 |
let |
|
1196 |
val parents = maximal_wrt_access_graph access_G facts |
|
1197 |
val goal_feats = |
|
1198 |
features_of ctxt thy num_facts const_tab (Local, General) true (concl_t :: hyp_ts) |
|
1199 |
val chained_feats = chained |
|
1200 |
|> map (rpair 1.0) |
|
1201 |
|> map (chained_or_extra_features_of chained_feature_factor) |
|
1202 |
|> rpair [] |-> fold (union (eq_fst (op =))) |
|
1203 |
val extra_feats = facts |
|
1204 |
|> take (Int.max (0, num_extra_feature_facts - length chained)) |
|
1205 |
|> filter fact_has_right_theory |
|
1206 |
|> weight_facts_steeply |
|
1207 |
|> map (chained_or_extra_features_of extra_feature_factor) |
|
1208 |
|> rpair [] |-> fold (union (eq_fst (op =))) |
|
1209 |
val feats = fold (union (eq_fst (op =))) [chained_feats, extra_feats] goal_feats |
|
1210 |
|> debug ? sort (Real.compare o swap o pairself snd) |
|
1211 |
val hints = chained |
|
1212 |
|> filter (is_fact_in_graph access_G o snd) |
|
1213 |
|> map (nickname_of_thm o snd) |
|
1214 |
in |
|
1215 |
(access_G, |
|
57009 | 1216 |
if Config.get ctxt sml then |
1217 |
MaSh_SML.learn_and_query ctxt parents access_G max_facts hints feats |
|
1218 |
else |
|
1219 |
MaSh_Py.query ctxt overlord max_facts ([], hints, parents, feats)) |
|
57007 | 1220 |
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
|
1221 |
val unknown = filter_out (is_fact_in_graph access_G o snd) facts |
53095 | 1222 |
in |
1223 |
find_mash_suggestions ctxt max_facts suggs facts chained unknown |
|
1224 |
|> pairself (map fact_of_raw_fact) |
|
1225 |
end |
|
1226 |
||
57009 | 1227 |
fun learn_wrt_access_graph ctxt (name, parents, feats, deps) (learns, G) = |
53095 | 1228 |
let |
57009 | 1229 |
fun maybe_learn_from from (accum as (parents, G)) = |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1230 |
try_graph ctxt "updating graph" accum (fn () => |
57009 | 1231 |
(from :: parents, Graph.add_edge_acyclic (from, name) G)) |
1232 |
val G = G |> Graph.default_node (name, (Isar_Proof, feats, deps)) |
|
1233 |
val (parents, G) = ([], G) |> fold maybe_learn_from parents |
|
1234 |
val (deps, _) = ([], G) |> fold maybe_learn_from deps |
|
57006 | 1235 |
in |
57010 | 1236 |
((name, parents, map fst feats, deps) :: learns, G) |
57006 | 1237 |
end |
53095 | 1238 |
|
57009 | 1239 |
fun relearn_wrt_access_graph ctxt (name, deps) (relearns, G) = |
53095 | 1240 |
let |
57009 | 1241 |
fun maybe_relearn_from from (accum as (parents, G)) = |
53095 | 1242 |
try_graph ctxt "updating graph" accum (fn () => |
57009 | 1243 |
(from :: parents, Graph.add_edge_acyclic (from, name) G)) |
1244 |
val G = G |> Graph.map_node name (fn (_, feats, _) => (Automatic_Proof, feats, deps)) |
|
1245 |
val (deps, _) = ([], G) |> fold maybe_relearn_from deps |
|
57006 | 1246 |
in |
57009 | 1247 |
((name, deps) :: relearns, G) |
57006 | 1248 |
end |
53095 | 1249 |
|
1250 |
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
|
1251 |
Graph.map_node name (fn (_, feats, deps) => (Isar_Proof_wegen_Prover_Flop, feats, deps)) |
53095 | 1252 |
|
1253 |
val learn_timeout_slack = 2.0 |
|
1254 |
||
1255 |
fun launch_thread timeout task = |
|
1256 |
let |
|
1257 |
val hard_timeout = time_mult learn_timeout_slack timeout |
|
1258 |
val birth_time = Time.now () |
|
1259 |
val death_time = Time.+ (birth_time, hard_timeout) |
|
1260 |
val desc = ("Machine learner for Sledgehammer", "") |
|
57006 | 1261 |
in |
1262 |
Async_Manager.thread MaShN birth_time death_time desc task |
|
1263 |
end |
|
53095 | 1264 |
|
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1265 |
fun learned_proof_name () = |
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1266 |
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
|
1267 |
|
54503 | 1268 |
fun mash_learn_proof ctxt ({overlord, timeout, ...} : params) t facts used_ths = |
53819
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
1269 |
if is_mash_enabled () then |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1270 |
launch_thread timeout (fn () => |
57006 | 1271 |
let |
1272 |
val thy = Proof_Context.theory_of ctxt |
|
57010 | 1273 |
val feats = features_of ctxt thy 0 Symtab.empty (Local, General) false [t] |
57006 | 1274 |
in |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
1275 |
map_state ctxt overlord (fn state as {access_G, num_known_facts, dirty} => |
57007 | 1276 |
let |
57012 | 1277 |
val name = learned_proof_name () |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1278 |
val parents = maximal_wrt_access_graph access_G facts |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
1279 |
val deps = used_ths |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
1280 |
|> filter (is_fact_in_graph access_G) |
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
1281 |
|> map nickname_of_thm |
57007 | 1282 |
in |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
1283 |
if Config.get ctxt sml then |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1284 |
let val access_G = access_G |> add_node Automatic_Proof name parents feats deps in |
57012 | 1285 |
{access_G = access_G, num_known_facts = num_known_facts + 1, |
1286 |
dirty = Option.map (cons name) dirty} |
|
1287 |
end |
|
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
1288 |
else |
57013
ed95456499e6
better way to take invisible facts into account than 'island' business
blanchet
parents:
57012
diff
changeset
|
1289 |
(MaSh_Py.learn ctxt overlord true [("", parents, map fst feats, deps)]; state) |
57007 | 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 |
|
52697
6fb98a20c349
explicit padding on command boundary for "auto" generated sendback -- do not replace the corresponding goal command, but append to it;
wenzelm
parents:
52196
diff
changeset
|
1296 |
fun sendback sub = |
6fb98a20c349
explicit padding on command boundary for "auto" generated sendback -- do not replace the corresponding goal command, but append to it;
wenzelm
parents:
52196
diff
changeset
|
1297 |
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
|
1298 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1299 |
val commit_timeout = seconds 30.0 |
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
1300 |
|
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
1301 |
(* The timeout is understood in a very relaxed fashion. *) |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1302 |
fun mash_learn_facts ctxt (params as {debug, verbose, overlord, ...}) prover save auto_level |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1303 |
run_prover learn_timeout facts = |
48304 | 1304 |
let |
48318 | 1305 |
val timer = Timer.startRealTimer () |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1306 |
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
|
1307 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
1308 |
val {access_G, ...} = peek_state ctxt overlord I |
53095 | 1309 |
val is_in_access_G = is_fact_in_graph access_G o snd |
51177 | 1310 |
val no_new_facts = forall is_in_access_G facts |
48308 | 1311 |
in |
51177 | 1312 |
if no_new_facts andalso not run_prover then |
48404 | 1313 |
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
|
1314 |
"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
|
1315 |
(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
|
1316 |
"\n\nHint: Try " ^ sendback learn_proverN ^ " to learn from an automatic prover." |
48404 | 1317 |
else |
1318 |
"") |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1319 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1320 |
"" |
48308 | 1321 |
else |
48304 | 1322 |
let |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
1323 |
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
|
1324 |
|
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
1325 |
fun deps_of status th = |
53095 | 1326 |
if no_dependencies_for_status status then |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
1327 |
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
|
1328 |
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
|
1329 |
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
|
1330 |
|> (fn (false, _) => NONE | (true, deps) => trim_dependencies deps) |
48404 | 1331 |
else |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
1332 |
isar_dependencies_of name_tabs th |
51177 | 1333 |
|> trim_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
|
1334 |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1335 |
fun do_commit [] [] [] state = state |
53095 | 1336 |
| do_commit learns relearns flops {access_G, num_known_facts, dirty} = |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1337 |
let |
50610 | 1338 |
val was_empty = Graph.is_empty access_G |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1339 |
val (learns, access_G) = ([], access_G) |> fold (learn_wrt_access_graph ctxt) learns |
50631 | 1340 |
val (relearns, access_G) = |
1341 |
([], access_G) |> fold (relearn_wrt_access_graph ctxt) relearns |
|
50610 | 1342 |
val access_G = access_G |> fold flop_wrt_access_graph flops |
53095 | 1343 |
val num_known_facts = num_known_facts + length learns |
48699 | 1344 |
val dirty = |
55286 | 1345 |
(case (was_empty, dirty, relearns) of |
50631 | 1346 |
(false, SOME names, []) => SOME (map #1 learns @ names) |
55286 | 1347 |
| _ => NONE) |
48404 | 1348 |
in |
57007 | 1349 |
if Config.get ctxt sml then |
1350 |
() |
|
1351 |
else |
|
1352 |
(MaSh_Py.learn ctxt overlord (save andalso null relearns) (rev learns); |
|
1353 |
MaSh_Py.relearn ctxt overlord save relearns); |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1354 |
{access_G = access_G, num_known_facts = num_known_facts, dirty = dirty} |
48404 | 1355 |
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
|
1356 |
|
50631 | 1357 |
fun commit last learns relearns flops = |
48404 | 1358 |
(if debug andalso auto_level = 0 then |
1359 |
Output.urgent_message "Committing..." |
|
1360 |
else |
|
1361 |
(); |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
1362 |
map_state ctxt overlord (do_commit (rev learns) relearns flops); |
48404 | 1363 |
if not last andalso auto_level = 0 then |
50631 | 1364 |
let val num_proofs = length learns + length relearns in |
48404 | 1365 |
"Learned " ^ string_of_int num_proofs ^ " " ^ |
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
|
1366 |
(if run_prover then "automatic" else "Isar") ^ " proof" ^ |
48404 | 1367 |
plural_s num_proofs ^ " in the last " ^ |
52031
9a9238342963
tuning -- renamed '_from_' to '_of_' in Sledgehammer
blanchet
parents:
51998
diff
changeset
|
1368 |
string_of_time commit_timeout ^ "." |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1369 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1370 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1371 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1372 |
()) |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1373 |
|
51177 | 1374 |
fun learn_new_fact _ (accum as (_, (_, _, true))) = accum |
1375 |
| learn_new_fact (parents, ((_, stature as (_, 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
|
1376 |
(learns, (n, next_commit, _)) = |
48318 | 1377 |
let |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1378 |
val name = nickname_of_thm th |
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
1379 |
val feats = |
54695 | 1380 |
features_of ctxt (theory_of_thm th) 0 Symtab.empty stature false [prop_of th] |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
1381 |
val deps = deps_of status th |> these |
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
|
1382 |
val n = n |> 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 |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1391 |
(learns, (n, next_commit, timed_out)) |
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 |
|
48404 | 1394 |
val n = |
51177 | 1395 |
if no_new_facts then |
48404 | 1396 |
0 |
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) |
51177 | 1403 |
val (learns, (n, _, _)) = |
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 |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1407 |
commit true learns [] []; n |
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 |
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1411 |
| relearn_old_fact ((_, (_, status)), th) ((relearns, flops), (n, next_commit, _)) = |
48404 | 1412 |
let |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1413 |
val name = nickname_of_thm th |
50631 | 1414 |
val (n, relearns, flops) = |
55286 | 1415 |
(case deps_of status th of |
50631 | 1416 |
SOME deps => (n + 1, (name, deps) :: relearns, flops) |
55286 | 1417 |
| NONE => (n, relearns, name :: flops)) |
50631 | 1418 |
val (relearns, flops, next_commit) = |
48404 | 1419 |
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
|
1420 |
(commit false [] relearns flops; ([], [], next_commit_time ())) |
48404 | 1421 |
else |
50631 | 1422 |
(relearns, flops, next_commit) |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1423 |
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
|
1424 |
in |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1425 |
((relearns, flops), (n, next_commit, timed_out)) |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1426 |
end |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1427 |
|
48404 | 1428 |
val n = |
51177 | 1429 |
if not run_prover then |
48404 | 1430 |
n |
1431 |
else |
|
1432 |
let |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
1433 |
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
|
1434 |
|
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1435 |
val kind_of_proof = |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1436 |
nickname_of_thm #> try (#1 o Graph.get_node access_G) #> the_default Isar_Proof |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1437 |
|
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1438 |
fun priority_of th = |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
1439 |
random_range 0 max_isar |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1440 |
+ (case kind_of_proof th of |
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1441 |
Isar_Proof => 0 |
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
|
1442 |
| Automatic_Proof => 2 * max_isar |
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
|
1443 |
| Isar_Proof_wegen_Prover_Flop => max_isar) |
54131
18b23d787062
choose facts to reprove more randomly, to avoid getting stuck with impossible problems at first
blanchet
parents:
54125
diff
changeset
|
1444 |
- 100 * length (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
|
1445 |
|
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1446 |
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
|
1447 |
|> 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
|
1448 |
|> 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
|
1449 |
|> 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
|
1450 |
|> map snd |
50631 | 1451 |
val ((relearns, flops), (n, _, _)) = |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1452 |
(([], []), (n, next_commit_time (), false)) |
48404 | 1453 |
|> 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
|
1454 |
in |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1455 |
commit true [] relearns flops; n |
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1456 |
end |
48318 | 1457 |
in |
48404 | 1458 |
if verbose orelse auto_level < 2 then |
1459 |
"Learned " ^ string_of_int n ^ " nontrivial " ^ |
|
54140 | 1460 |
(if run_prover then "automatic and " else "") ^ "Isar proof" ^ plural_s n ^ |
57006 | 1461 |
(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
|
1462 |
else |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1463 |
"" |
48318 | 1464 |
end |
48308 | 1465 |
end |
48304 | 1466 |
|
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
|
1467 |
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
|
1468 |
let |
48396 | 1469 |
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
|
1470 |
val ctxt = ctxt |> Config.put instantiate_inducts false |
57006 | 1471 |
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
|
1472 |
|> sort (crude_thm_ord o pairself snd o swap) |
48404 | 1473 |
val num_facts = length facts |
1474 |
val prover = hd provers |
|
57006 | 1475 |
|
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
|
1476 |
fun learn auto_level run_prover = |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1477 |
mash_learn_facts ctxt params prover true auto_level run_prover one_year facts |
48404 | 1478 |
|> Output.urgent_message |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1479 |
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
|
1480 |
if run_prover then |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1481 |
("MaShing through " ^ string_of_int num_facts ^ " fact" ^ plural_s num_facts ^ |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1482 |
" for automatic proofs (" ^ quote prover ^ " timeout: " ^ string_of_time timeout ^ |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1483 |
").\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
|
1484 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1485 |
learn 1 false; |
57006 | 1486 |
"Now collecting automatic proofs. This may take several hours. You can safely stop the \ |
1487 |
\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
|
1488 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1489 |
learn 0 true) |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1490 |
else |
57006 | 1491 |
(Output.urgent_message ("MaShing through " ^ string_of_int num_facts ^ " fact" ^ |
1492 |
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
|
1493 |
learn 0 false) |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1494 |
end |
48249 | 1495 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
1496 |
fun mash_can_suggest_facts ctxt overlord = |
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
1497 |
not (Graph.is_empty (#access_G (peek_state ctxt overlord I))) |
50311 | 1498 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1499 |
(* Generate more suggestions than requested, because some might be thrown out |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1500 |
later for various reasons. *) |
50965 | 1501 |
fun generous_max_facts max_facts = max_facts + Int.min (50, max_facts) |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1502 |
|
50814 | 1503 |
val mepo_weight = 0.5 |
1504 |
val mash_weight = 0.5 |
|
1505 |
||
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1506 |
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
|
1507 |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1508 |
(* 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
|
1509 |
and Try. *) |
48318 | 1510 |
val min_secs_for_learning = 15 |
1511 |
||
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1512 |
fun relevant_facts ctxt (params as {overlord, blocking, learn, fact_filter, timeout, ...}) prover |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1513 |
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
|
1514 |
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
|
1515 |
error ("Unknown fact filter: " ^ quote (the fact_filter) ^ ".") |
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1516 |
else if only then |
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
|
1517 |
let val facts = facts |> map fact_of_raw_fact in |
51010 | 1518 |
[("", facts)] |
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
|
1519 |
end |
48321 | 1520 |
else if max_facts <= 0 orelse null facts then |
51010 | 1521 |
[("", [])] |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1522 |
else |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1523 |
let |
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1524 |
fun maybe_launch_thread () = |
54816
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1525 |
if not blocking andalso not (Async_Manager.has_running_threads MaShN) andalso |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1526 |
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
|
1527 |
let val timeout = time_mult learn_timeout_slack timeout in |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1528 |
launch_thread timeout |
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents:
54799
diff
changeset
|
1529 |
(fn () => (true, mash_learn_facts ctxt params prover true 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
|
1530 |
end |
48318 | 1531 |
else |
1532 |
() |
|
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1533 |
fun maybe_learn () = |
53819
e55d641d0a70
honor MaSh's zero-overhead policy -- no learning if the tool is disabled
blanchet
parents:
53790
diff
changeset
|
1534 |
if is_mash_enabled () andalso learn then |
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1535 |
let |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1536 |
val {access_G, num_known_facts, ...} = peek_state ctxt overlord I |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1537 |
val is_in_access_G = is_fact_in_graph access_G o snd |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1538 |
in |
57011
a4428f517f46
implemented learning of single proofs in SML MaSh
blanchet
parents:
57010
diff
changeset
|
1539 |
if length facts - num_known_facts <= max_facts_to_learn_before_query then |
55286 | 1540 |
(case length (filter_out is_in_access_G facts) of |
54012
7a8263843acb
removed spurious save if nothing needs to bee learned
blanchet
parents:
53819
diff
changeset
|
1541 |
0 => false |
7a8263843acb
removed spurious save if nothing needs to bee learned
blanchet
parents:
53819
diff
changeset
|
1542 |
| num_facts_to_learn => |
7a8263843acb
removed spurious save if nothing needs to bee learned
blanchet
parents:
53819
diff
changeset
|
1543 |
if num_facts_to_learn <= max_facts_to_learn_before_query then |
7a8263843acb
removed spurious save if nothing needs to bee learned
blanchet
parents:
53819
diff
changeset
|
1544 |
(mash_learn_facts ctxt params prover false 2 false timeout facts |
7a8263843acb
removed spurious save if nothing needs to bee learned
blanchet
parents:
53819
diff
changeset
|
1545 |
|> (fn "" => () | s => Output.urgent_message (MaShN ^ ": " ^ s)); |
7a8263843acb
removed spurious save if nothing needs to bee learned
blanchet
parents:
53819
diff
changeset
|
1546 |
true) |
7a8263843acb
removed spurious save if nothing needs to bee learned
blanchet
parents:
53819
diff
changeset
|
1547 |
else |
55286 | 1548 |
(maybe_launch_thread (); false)) |
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1549 |
else |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1550 |
(maybe_launch_thread (); false) |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1551 |
end |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1552 |
else |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1553 |
false |
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1554 |
val (save, effective_fact_filter) = |
55286 | 1555 |
(case fact_filter of |
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1556 |
SOME ff => (ff <> mepoN andalso maybe_learn (), ff) |
48318 | 1557 |
| NONE => |
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
|
1558 |
if is_mash_enabled () then |
53152
cbd3c7c48d2c
learn new facts on query if there aren't too many of them in MaSh
blanchet
parents:
53150
diff
changeset
|
1559 |
(maybe_learn (), |
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
1560 |
if mash_can_suggest_facts ctxt overlord then meshN else mepoN) |
48407 | 1561 |
else |
55286 | 1562 |
(false, 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 |
51003
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1568 |
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
|
1569 |
(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
|
1570 |
[] => accepts |
54143
18def1c73c79
make sure add: doesn't add duplicates, and works for [no_atp] facts
blanchet
parents:
54141
diff
changeset
|
1571 |
| _ => (unique_facts |> filter in_add |> map fact_of_raw_fact) @ |
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
|
1572 |
(accepts |> filter_out in_add)) |
48293 | 1573 |
|> take max_facts |
48406 | 1574 |
fun mepo () = |
54143
18def1c73c79
make sure add: doesn't add duplicates, and works for [no_atp] facts
blanchet
parents:
54141
diff
changeset
|
1575 |
(mepo_suggested_facts ctxt params max_facts NONE hyp_ts concl_t unique_facts |
54091 | 1576 |
|> weight_facts_steeply, []) |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1577 |
fun mash () = |
54503 | 1578 |
mash_suggested_facts ctxt params (generous_max_facts max_facts) hyp_ts concl_t facts |
53140
a1235e90da5f
pour extra features from proximate facts into goal, in exporter
blanchet
parents:
53137
diff
changeset
|
1579 |
|>> weight_facts_steeply |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1580 |
val mess = |
51003
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1581 |
(* the order is important for the "case" expression below *) |
54091 | 1582 |
[] |> effective_fact_filter <> mepoN ? cons (mash_weight, mash) |
1583 |
|> effective_fact_filter <> mashN ? cons (mepo_weight, mepo) |
|
1584 |
|> Par_List.map (apsnd (fn f => f ())) |
|
1585 |
val mesh = mesh_facts (eq_snd Thm.eq_thm_prop) max_facts mess |> add_and_take |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1586 |
in |
57007 | 1587 |
if Config.get ctxt sml orelse not save then () else MaSh_Py.save ctxt overlord; |
55286 | 1588 |
(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
|
1589 |
(NONE, [(_, (mepo, _)), (_, (mash, _))]) => |
51010 | 1590 |
[(meshN, mesh), (mepoN, mepo |> map fst |> add_and_take), |
1591 |
(mashN, mash |> map fst |> add_and_take)] |
|
55286 | 1592 |
| _ => [(effective_fact_filter, mesh)]) |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1593 |
end |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1594 |
|
53148
c898409d8630
fixed subtle bug with "take" + thread overlord through
blanchet
parents:
53142
diff
changeset
|
1595 |
fun kill_learners ctxt ({overlord, ...} : params) = |
57007 | 1596 |
(Async_Manager.kill_threads MaShN "learner"; |
1597 |
if Config.get ctxt sml then () else MaSh_Py.shutdown ctxt overlord) |
|
57005
33f3d2ea803d
store all MaSh data on the Isabelle side, in preparation for replacing 'mash.py' with ML solution
blanchet
parents:
56995
diff
changeset
|
1598 |
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1599 |
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
|
1600 |
|
48248 | 1601 |
end; |