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