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