author | blanchet |
Mon, 17 Dec 2012 22:09:48 +0100 | |
changeset 50588 | 074e937459b6 |
parent 50585 | 306c7b807e13 |
child 50608 | 5977de2993ac |
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 |
48296
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
10 |
type fact = Sledgehammer_Fact.fact |
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
11 |
type fact_override = Sledgehammer_Fact.fact_override |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
12 |
type params = Sledgehammer_Provers.params |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
13 |
type relevance_fudge = Sledgehammer_Provers.relevance_fudge |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
14 |
type prover_result = Sledgehammer_Provers.prover_result |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
15 |
|
48308 | 16 |
val trace : bool Config.T |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
17 |
val MaShN : string |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
18 |
val mepoN : string |
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
19 |
val mashN : string |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
20 |
val meshN : string |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
21 |
val unlearnN : string |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
22 |
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
|
23 |
val learn_proverN : string |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
24 |
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
|
25 |
val relearn_proverN : string |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
26 |
val fact_filters : string list |
48303
f1d135d0ea69
improved MaSh string escaping and make more operations string-based
blanchet
parents:
48302
diff
changeset
|
27 |
val escape_meta : string -> string |
f1d135d0ea69
improved MaSh string escaping and make more operations string-based
blanchet
parents:
48302
diff
changeset
|
28 |
val escape_metas : string list -> string |
48308 | 29 |
val unescape_meta : string -> string |
30 |
val unescape_metas : string -> string list |
|
50356 | 31 |
val encode_features : (string * real) list -> string |
48406 | 32 |
val extract_query : string -> string * (string * real) list |
50311 | 33 |
val mash_CLEAR : Proof.context -> unit |
34 |
val mash_ADD : |
|
35 |
Proof.context -> bool |
|
50356 | 36 |
-> (string * string list * (string * real) list * string list) list -> unit |
50311 | 37 |
val mash_REPROVE : |
38 |
Proof.context -> bool -> (string * string list) list -> unit |
|
39 |
val mash_QUERY : |
|
50356 | 40 |
Proof.context -> bool -> int -> string list * (string * real) list |
50311 | 41 |
-> (string * real) list |
42 |
val mash_unlearn : Proof.context -> unit |
|
48378 | 43 |
val nickname_of : thm -> string |
50412 | 44 |
val find_suggested_facts : |
48406 | 45 |
(string * 'a) list -> ('b * thm) list -> (('b * thm) * 'a) list |
48321 | 46 |
val mesh_facts : |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
47 |
int -> (real * ((('a * thm) * real) list * ('a * thm) list)) list |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
48 |
-> ('a * thm) list |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
49 |
val theory_ord : theory * theory -> order |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
50 |
val thm_ord : thm * thm -> order |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
51 |
val goal_of_thm : theory -> thm -> thm |
48321 | 52 |
val run_prover_for_mash : |
48318 | 53 |
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
|
54 |
val features_of : |
50356 | 55 |
Proof.context -> string -> theory -> stature -> term list |
56 |
-> (string * real) list |
|
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
57 |
val isar_dependencies_of : string Symtab.table -> thm -> string list option |
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
|
58 |
val prover_dependencies_of : |
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
59 |
Proof.context -> params -> string -> int -> fact list -> string Symtab.table |
48665 | 60 |
-> thm -> bool * string list option |
50382 | 61 |
val weight_mash_facts : ('a * thm) list -> (('a * thm) * real) list |
50412 | 62 |
val find_mash_suggestions : |
63 |
int -> (Symtab.key * 'a) list -> ('b * thm) list -> ('b * thm) list |
|
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
64 |
-> ('b * thm) list -> ('b * thm) list * ('b * thm) list |
48406 | 65 |
val mash_suggested_facts : |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
66 |
Proof.context -> params -> string -> int -> term list -> term -> fact list |
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
67 |
-> fact list * fact list |
48383 | 68 |
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
|
69 |
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
|
70 |
-> unit |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
71 |
val mash_learn : |
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
72 |
Proof.context -> params -> fact_override -> thm list -> bool -> unit |
50311 | 73 |
val is_mash_enabled : unit -> bool |
74 |
val mash_can_suggest_facts : Proof.context -> bool |
|
50412 | 75 |
val generous_max_facts : int -> int |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
76 |
val relevant_facts : |
48292 | 77 |
Proof.context -> params -> string -> int -> fact_override -> term list |
48296
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
78 |
-> term -> fact list -> fact list |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
79 |
val kill_learners : unit -> unit |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
80 |
val running_learners : unit -> unit |
48248 | 81 |
end; |
82 |
||
48381 | 83 |
structure Sledgehammer_MaSh : SLEDGEHAMMER_MASH = |
48248 | 84 |
struct |
48249 | 85 |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
86 |
open ATP_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
87 |
open ATP_Problem_Generate |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
88 |
open Sledgehammer_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
89 |
open Sledgehammer_Fact |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
90 |
open Sledgehammer_Provers |
48318 | 91 |
open Sledgehammer_Minimize |
48381 | 92 |
open Sledgehammer_MePo |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
93 |
|
48308 | 94 |
val trace = |
48380 | 95 |
Attrib.setup_config_bool @{binding sledgehammer_mash_trace} (K false) |
48308 | 96 |
fun trace_msg ctxt msg = if Config.get ctxt trace then tracing (msg ()) else () |
97 |
||
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
98 |
val MaShN = "MaSh" |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
99 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
100 |
val mepoN = "mepo" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
101 |
val mashN = "mash" |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
102 |
val meshN = "mesh" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
103 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
104 |
val fact_filters = [meshN, mepoN, mashN] |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
105 |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
106 |
val unlearnN = "unlearn" |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
107 |
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
|
108 |
val learn_proverN = "learn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
109 |
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
|
110 |
val relearn_proverN = "relearn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
111 |
|
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
|
112 |
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
|
113 |
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
|
114 |
val mash_state_dir = mash_model_dir |
50310 | 115 |
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
|
116 |
|
48330 | 117 |
|
50311 | 118 |
(*** Low-level communication with MaSh ***) |
119 |
||
120 |
fun wipe_out_file file = (try (File.rm o Path.explode) file; ()) |
|
121 |
||
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
122 |
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
|
123 |
(case banner of SOME s => File.write path s | NONE => (); |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
124 |
xs |> chunk_list 500 |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
125 |
|> List.app (File.append path o space_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
|
126 |
handle IO.Io _ => () |
50311 | 127 |
|
128 |
fun run_mash_tool ctxt overlord save max_suggs write_cmds read_suggs = |
|
129 |
let |
|
130 |
val (temp_dir, serial) = |
|
131 |
if overlord then (getenv "ISABELLE_HOME_USER", "") |
|
132 |
else (getenv "ISABELLE_TMP", serial_string ()) |
|
133 |
val log_file = if overlord then temp_dir ^ "/mash_log" else "/dev/null" |
|
134 |
val err_file = temp_dir ^ "/mash_err" ^ serial |
|
135 |
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
|
136 |
val sugg_path = Path.explode sugg_file |
50311 | 137 |
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
|
138 |
val cmd_path = Path.explode cmd_file |
50311 | 139 |
val core = |
140 |
"--inputFile " ^ cmd_file ^ " --predictions " ^ sugg_file ^ |
|
141 |
" --numberOfPredictions " ^ string_of_int max_suggs ^ |
|
142 |
(if save then " --saveModel" else "") |
|
143 |
val command = |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
144 |
"\"$ISABELLE_SLEDGEHAMMER_MASH/src/mash.py\" --quiet --outputDir " ^ |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
145 |
File.shell_path (mash_model_dir ()) ^ " --log " ^ log_file ^ " " ^ core ^ |
50311 | 146 |
" >& " ^ err_file |
147 |
|> tap (fn _ => trace_msg ctxt (fn () => |
|
148 |
case try File.read (Path.explode err_file) of |
|
149 |
NONE => "Done" |
|
150 |
| SOME "" => "Done" |
|
151 |
| SOME s => "Error: " ^ elide_string 1000 s)) |
|
152 |
fun run_on () = |
|
153 |
(Isabelle_System.bash command; |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
154 |
read_suggs (fn () => try File.read_lines sugg_path |> these)) |
50311 | 155 |
fun clean_up () = |
156 |
if overlord then () |
|
157 |
else List.app wipe_out_file [err_file, sugg_file, cmd_file] |
|
158 |
in |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
159 |
write_file (SOME "") ([], K "") sugg_path; |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
160 |
write_file (SOME "") write_cmds cmd_path; |
50311 | 161 |
trace_msg ctxt (fn () => "Running " ^ command); |
162 |
with_cleanup clean_up run_on () |
|
163 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
164 |
|
48308 | 165 |
fun meta_char c = |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
166 |
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
|
167 |
c = #")" orelse c = #"," then |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
168 |
String.str c |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
169 |
else |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
170 |
(* fixed width, in case more digits follow *) |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
171 |
"%" ^ stringN_of_int 3 (Char.ord c) |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
172 |
|
48308 | 173 |
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
|
174 |
| unmeta_chars accum (#"%" :: d1 :: d2 :: d3 :: cs) = |
48308 | 175 |
(case Int.fromString (String.implode [d1, d2, d3]) of |
176 |
SOME n => unmeta_chars (Char.chr n :: accum) cs |
|
177 |
| NONE => "" (* error *)) |
|
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
178 |
| unmeta_chars _ (#"%" :: _) = "" (* error *) |
48308 | 179 |
| unmeta_chars accum (c :: cs) = unmeta_chars (c :: accum) cs |
180 |
||
181 |
val escape_meta = String.translate meta_char |
|
48303
f1d135d0ea69
improved MaSh string escaping and make more operations string-based
blanchet
parents:
48302
diff
changeset
|
182 |
val escape_metas = map escape_meta #> space_implode " " |
48315
82d6e46c673f
fixed order of accessibles + other tweaks to MaSh
blanchet
parents:
48314
diff
changeset
|
183 |
val unescape_meta = String.explode #> unmeta_chars [] |
82d6e46c673f
fixed order of accessibles + other tweaks to MaSh
blanchet
parents:
48314
diff
changeset
|
184 |
val unescape_metas = |
82d6e46c673f
fixed order of accessibles + other tweaks to MaSh
blanchet
parents:
48314
diff
changeset
|
185 |
space_explode " " #> filter_out (curry (op =) "") #> map unescape_meta |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
186 |
|
50356 | 187 |
fun encode_feature (name, weight) = |
50389
ad0ac9112d2c
simplify code now that "mash.py" supports weights
blanchet
parents:
50383
diff
changeset
|
188 |
escape_meta name ^ |
ad0ac9112d2c
simplify code now that "mash.py" supports weights
blanchet
parents:
50383
diff
changeset
|
189 |
(if Real.== (weight, 1.0) then "" else "=" ^ Real.toString weight) |
50356 | 190 |
|
191 |
val encode_features = map encode_feature #> space_implode " " |
|
192 |
||
50311 | 193 |
fun str_of_add (name, parents, feats, deps) = |
194 |
"! " ^ escape_meta name ^ ": " ^ escape_metas parents ^ "; " ^ |
|
50356 | 195 |
encode_features feats ^ "; " ^ escape_metas deps ^ "\n" |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
196 |
|
50311 | 197 |
fun str_of_reprove (name, deps) = |
198 |
"p " ^ escape_meta name ^ ": " ^ escape_metas deps ^ "\n" |
|
199 |
||
200 |
fun str_of_query (parents, feats) = |
|
50356 | 201 |
"? " ^ escape_metas parents ^ "; " ^ encode_features feats ^ "\n" |
48406 | 202 |
|
203 |
fun extract_suggestion sugg = |
|
204 |
case space_explode "=" sugg of |
|
205 |
[name, weight] => |
|
50401
8e5d7ef3da76
parse more liberal MaSh suggestion syntax (for the eval driver)
blanchet
parents:
50398
diff
changeset
|
206 |
SOME (unescape_meta name, Real.fromString weight |> the_default 1.0) |
8e5d7ef3da76
parse more liberal MaSh suggestion syntax (for the eval driver)
blanchet
parents:
50398
diff
changeset
|
207 |
| [name] => SOME (unescape_meta name, 1.0) |
48406 | 208 |
| _ => NONE |
209 |
||
48311 | 210 |
fun extract_query line = |
211 |
case space_explode ":" line of |
|
48406 | 212 |
[goal, suggs] => |
213 |
(unescape_meta goal, |
|
214 |
map_filter extract_suggestion (space_explode " " suggs)) |
|
48312 | 215 |
| _ => ("", []) |
48311 | 216 |
|
50311 | 217 |
fun mash_CLEAR ctxt = |
218 |
let val path = mash_model_dir () in |
|
219 |
trace_msg ctxt (K "MaSh CLEAR"); |
|
50319
dddcaeb92e11
robust writing of MaSh state -- better drop learning data than cause other problems in Sledgehammer
blanchet
parents:
50311
diff
changeset
|
220 |
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
|
221 |
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
|
222 |
path) NONE; |
50311 | 223 |
() |
224 |
end |
|
225 |
||
226 |
fun mash_ADD _ _ [] = () |
|
227 |
| mash_ADD ctxt overlord adds = |
|
228 |
(trace_msg ctxt (fn () => "MaSh ADD " ^ |
|
229 |
elide_string 1000 (space_implode " " (map #1 adds))); |
|
230 |
run_mash_tool ctxt overlord true 0 (adds, str_of_add) (K ())) |
|
231 |
||
232 |
fun mash_REPROVE _ _ [] = () |
|
233 |
| mash_REPROVE ctxt overlord reps = |
|
234 |
(trace_msg ctxt (fn () => "MaSh REPROVE " ^ |
|
235 |
elide_string 1000 (space_implode " " (map #1 reps))); |
|
236 |
run_mash_tool ctxt overlord true 0 (reps, str_of_reprove) (K ())) |
|
237 |
||
238 |
fun mash_QUERY ctxt overlord max_suggs (query as (_, feats)) = |
|
50356 | 239 |
(trace_msg ctxt (fn () => "MaSh QUERY " ^ encode_features feats); |
50311 | 240 |
run_mash_tool ctxt overlord false max_suggs |
241 |
([query], str_of_query) |
|
242 |
(fn suggs => |
|
243 |
case suggs () of |
|
244 |
[] => [] |
|
245 |
| suggs => snd (extract_query (List.last suggs))) |
|
246 |
handle List.Empty => []) |
|
247 |
||
248 |
||
249 |
(*** Middle-level communication with MaSh ***) |
|
250 |
||
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
|
251 |
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
|
252 |
Isar_Proof | Automatic_Proof | Isar_Proof_wegen_Prover_Flop |
50311 | 253 |
|
254 |
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
|
255 |
| 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
|
256 |
| str_of_proof_kind Isar_Proof_wegen_Prover_Flop = "x" |
50311 | 257 |
|
258 |
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
|
259 |
| 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
|
260 |
| proof_kind_of_str "x" = Isar_Proof_wegen_Prover_Flop |
50311 | 261 |
|
262 |
(* FIXME: Here a "Graph.update_node" function would be useful *) |
|
263 |
fun update_fact_graph_node (name, kind) = |
|
264 |
Graph.default_node (name, Isar_Proof) |
|
265 |
#> kind <> Isar_Proof ? Graph.map_node name (K kind) |
|
266 |
||
267 |
fun try_graph ctxt when def f = |
|
268 |
f () |
|
269 |
handle Graph.CYCLES (cycle :: _) => |
|
270 |
(trace_msg ctxt (fn () => |
|
271 |
"Cycle involving " ^ commas cycle ^ " when " ^ when); def) |
|
272 |
| Graph.DUP name => |
|
273 |
(trace_msg ctxt (fn () => |
|
274 |
"Duplicate fact " ^ quote name ^ " when " ^ when); def) |
|
275 |
| Graph.UNDEF name => |
|
276 |
(trace_msg ctxt (fn () => |
|
277 |
"Unknown fact " ^ quote name ^ " when " ^ when); def) |
|
278 |
| exn => |
|
279 |
if Exn.is_interrupt exn then |
|
280 |
reraise exn |
|
281 |
else |
|
282 |
(trace_msg ctxt (fn () => |
|
283 |
"Internal error when " ^ when ^ ":\n" ^ |
|
284 |
ML_Compiler.exn_message exn); def) |
|
285 |
||
286 |
fun graph_info G = |
|
287 |
string_of_int (length (Graph.keys G)) ^ " node(s), " ^ |
|
288 |
string_of_int (fold (Integer.add o length o snd) (Graph.dest G) 0) ^ |
|
289 |
" edge(s), " ^ |
|
290 |
string_of_int (length (Graph.minimals G)) ^ " minimal, " ^ |
|
291 |
string_of_int (length (Graph.maximals G)) ^ " maximal" |
|
292 |
||
293 |
type mash_state = {fact_G : unit Graph.T, dirty : string list option} |
|
294 |
||
295 |
val empty_state = {fact_G = Graph.empty, dirty = SOME []} |
|
296 |
||
297 |
local |
|
298 |
||
50588
074e937459b6
updated MaSh serialization number (to reflect new weights)
blanchet
parents:
50585
diff
changeset
|
299 |
val version = "*** MaSh version 20121217a ***" |
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
300 |
|
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
301 |
exception Too_New of unit |
50311 | 302 |
|
303 |
fun extract_node line = |
|
304 |
case space_explode ":" line of |
|
305 |
[head, parents] => |
|
306 |
(case space_explode " " head of |
|
307 |
[kind, name] => |
|
308 |
SOME (unescape_meta name, unescape_metas parents, |
|
309 |
try proof_kind_of_str kind |> the_default Isar_Proof) |
|
310 |
| _ => NONE) |
|
311 |
| _ => NONE |
|
312 |
||
313 |
fun load _ (state as (true, _)) = state |
|
314 |
| load ctxt _ = |
|
315 |
let val path = mash_state_file () in |
|
316 |
(true, |
|
317 |
case try File.read_lines path of |
|
318 |
SOME (version' :: node_lines) => |
|
319 |
let |
|
320 |
fun add_edge_to name parent = |
|
321 |
Graph.default_node (parent, Isar_Proof) |
|
322 |
#> Graph.add_edge (parent, name) |
|
323 |
fun add_node line = |
|
324 |
case extract_node line of |
|
325 |
NONE => I (* shouldn't happen *) |
|
326 |
| SOME (name, parents, kind) => |
|
327 |
update_fact_graph_node (name, kind) |
|
328 |
#> fold (add_edge_to name) parents |
|
329 |
val fact_G = |
|
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
330 |
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
|
331 |
EQUAL => |
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
332 |
try_graph ctxt "loading state" Graph.empty (fn () => |
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
333 |
fold add_node node_lines Graph.empty) |
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
334 |
| LESS => Graph.empty (* can't parse old file *) |
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
335 |
| GREATER => raise Too_New () |
50311 | 336 |
in |
337 |
trace_msg ctxt (fn () => |
|
338 |
"Loaded fact graph (" ^ graph_info fact_G ^ ")"); |
|
339 |
{fact_G = fact_G, dirty = SOME []} |
|
340 |
end |
|
341 |
| _ => empty_state) |
|
342 |
end |
|
343 |
||
344 |
fun save _ (state as {dirty = SOME [], ...}) = state |
|
345 |
| save ctxt {fact_G, dirty} = |
|
346 |
let |
|
347 |
fun str_of_entry (name, parents, kind) = |
|
348 |
str_of_proof_kind kind ^ " " ^ escape_meta name ^ ": " ^ |
|
349 |
escape_metas parents ^ "\n" |
|
350 |
fun append_entry (name, (kind, (parents, _))) = |
|
351 |
cons (name, Graph.Keys.dest parents, kind) |
|
352 |
val (banner, entries) = |
|
353 |
case dirty of |
|
354 |
SOME names => |
|
355 |
(NONE, fold (append_entry o Graph.get_entry fact_G) names []) |
|
356 |
| NONE => (SOME (version ^ "\n"), Graph.fold append_entry fact_G []) |
|
357 |
in |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
358 |
write_file banner (entries, str_of_entry) (mash_state_file ()); |
50311 | 359 |
trace_msg ctxt (fn () => |
360 |
"Saved fact graph (" ^ graph_info fact_G ^ |
|
361 |
(case dirty of |
|
362 |
SOME dirty => |
|
363 |
"; " ^ string_of_int (length dirty) ^ " dirty fact(s)" |
|
364 |
| _ => "") ^ ")"); |
|
365 |
{fact_G = fact_G, dirty = SOME []} |
|
366 |
end |
|
367 |
||
368 |
val global_state = |
|
369 |
Synchronized.var "Sledgehammer_MaSh.global_state" (false, empty_state) |
|
370 |
||
371 |
in |
|
372 |
||
50570 | 373 |
fun map_state ctxt f = |
50311 | 374 |
Synchronized.change global_state (load ctxt ##> (f #> save ctxt)) |
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
375 |
handle Too_New () => () |
50311 | 376 |
|
50570 | 377 |
fun peek_state ctxt 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
|
378 |
Synchronized.change_result global_state |
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
379 |
(perhaps (try (load ctxt)) #> `snd #>> f) |
50311 | 380 |
|
50570 | 381 |
fun clear_state ctxt = |
50311 | 382 |
Synchronized.change global_state (fn _ => |
383 |
(mash_CLEAR ctxt; (* also removes the state file *) |
|
384 |
(true, empty_state))) |
|
385 |
||
386 |
end |
|
387 |
||
50570 | 388 |
val mash_unlearn = clear_state |
389 |
||
50311 | 390 |
|
391 |
(*** Isabelle helpers ***) |
|
392 |
||
48378 | 393 |
fun parent_of_local_thm th = |
394 |
let |
|
395 |
val thy = th |> Thm.theory_of_thm |
|
396 |
val facts = thy |> Global_Theory.facts_of |
|
397 |
val space = facts |> Facts.space_of |
|
398 |
fun id_of s = #id (Name_Space.the_entry space s) |
|
399 |
fun max_id (s', _) (s, id) = |
|
400 |
let val id' = id_of s' in if id > id' then (s, id) else (s', id') end |
|
401 |
in ("", ~1) |> Facts.fold_static max_id facts |> fst end |
|
402 |
||
403 |
val local_prefix = "local" ^ Long_Name.separator |
|
404 |
||
405 |
fun nickname_of 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
|
406 |
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
|
407 |
let val hint = Thm.get_name_hint th in |
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
408 |
(* FIXME: There must be a better way to detect local facts. *) |
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
409 |
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
|
410 |
SOME suf => |
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
411 |
parent_of_local_thm th ^ Long_Name.separator ^ Long_Name.separator ^ suf |
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
412 |
| 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
|
413 |
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
|
414 |
else |
50047
45684acf0b94
thread context correctly when printing backquoted facts
blanchet
parents:
49997
diff
changeset
|
415 |
backquote_thm (Proof_Context.init_global (Thm.theory_of_thm th)) th |
48378 | 416 |
|
50412 | 417 |
fun find_suggested_facts suggs facts = |
48330 | 418 |
let |
48378 | 419 |
fun add_fact (fact as (_, th)) = Symtab.default (nickname_of th, fact) |
48330 | 420 |
val tab = Symtab.empty |> fold add_fact facts |
48406 | 421 |
fun find_sugg (name, weight) = |
422 |
Symtab.lookup tab name |> Option.map (rpair weight) |
|
423 |
in map_filter find_sugg suggs end |
|
48311 | 424 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
425 |
fun scaled_avg [] = 0 |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
426 |
| scaled_avg xs = |
48407 | 427 |
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
|
428 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
429 |
fun avg [] = 0.0 |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
430 |
| 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
|
431 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
432 |
fun normalize_scores _ [] = [] |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
433 |
| normalize_scores max_facts xs = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
434 |
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
|
435 |
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
|
436 |
end |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
437 |
|
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
438 |
fun mesh_facts max_facts [(_, (sels, unks))] = |
48406 | 439 |
map fst (take max_facts sels) @ take (max_facts - length sels) unks |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
440 |
| mesh_facts max_facts mess = |
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
441 |
let |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
442 |
val mess = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
443 |
mess |> map (apsnd (apfst (normalize_scores max_facts #> `length))) |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
444 |
val fact_eq = Thm.eq_thm o pairself snd |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
445 |
fun score_in fact (global_weight, ((sel_len, sels), unks)) = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
446 |
let |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
447 |
fun score_at j = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
448 |
case try (nth sels) j of |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
449 |
SOME (_, score) => SOME (global_weight * score) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
450 |
| NONE => NONE |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
451 |
in |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
452 |
case find_index (curry fact_eq fact o fst) sels of |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
453 |
~1 => (case find_index (curry fact_eq fact) unks of |
50438
9bb7868a4c20
fixed embarrassing off-by-one bug in MaSh's Mesh
blanchet
parents:
50435
diff
changeset
|
454 |
~1 => score_at (sel_len - 1) |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
455 |
| _ => NONE) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
456 |
| rank => score_at rank |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
457 |
end |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
458 |
fun weight_of fact = mess |> map_filter (score_in fact) |> scaled_avg |
48406 | 459 |
val facts = |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
460 |
fold (union fact_eq o map fst o take max_facts o snd o fst o snd) mess |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
461 |
[] |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
462 |
in |
48406 | 463 |
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
|
464 |
|> map snd |> take max_facts |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
465 |
end |
48312 | 466 |
|
50584
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
467 |
fun thy_feature_of s = ("y" ^ s, 2.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
468 |
fun const_feature_of s = ("c" ^ s, 16.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
469 |
fun free_feature_of s = ("f" ^ s, 20.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
470 |
fun type_feature_of s = ("t" ^ s, 2.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
471 |
fun class_feature_of s = ("s" ^ s, 1.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
472 |
fun status_feature_of status = (string_of_status status, 2.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
473 |
val local_feature = ("local", 8.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
474 |
val lams_feature = ("lams", 2.0 (* FUDGE *)) |
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
475 |
val skos_feature = ("skos", 2.0 (* FUDGE *)) |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
476 |
|
48324 | 477 |
fun theory_ord p = |
478 |
if Theory.eq_thy p then |
|
479 |
EQUAL |
|
480 |
else if Theory.subthy p then |
|
481 |
LESS |
|
482 |
else if Theory.subthy (swap p) then |
|
483 |
GREATER |
|
484 |
else case int_ord (pairself (length o Theory.ancestors_of) p) of |
|
485 |
EQUAL => string_ord (pairself Context.theory_name p) |
|
486 |
| order => order |
|
487 |
||
50382 | 488 |
fun thm_ord p = |
489 |
case theory_ord (pairself theory_of_thm p) of |
|
50359
da395f0e7dea
tweaked order of theorems to avoid forward dependencies (MaSh)
blanchet
parents:
50357
diff
changeset
|
490 |
EQUAL => |
da395f0e7dea
tweaked order of theorems to avoid forward dependencies (MaSh)
blanchet
parents:
50357
diff
changeset
|
491 |
(* Hack to put "xxx_def" before "xxxI" and "xxxE" *) |
50382 | 492 |
string_ord (pairself nickname_of (swap p)) |
50359
da395f0e7dea
tweaked order of theorems to avoid forward dependencies (MaSh)
blanchet
parents:
50357
diff
changeset
|
493 |
| ord => ord |
48324 | 494 |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
495 |
val freezeT = Type.legacy_freeze_type |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
496 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
497 |
fun freeze (t $ u) = freeze t $ freeze u |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
498 |
| 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
|
499 |
| freeze (Var ((s, _), T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
500 |
| freeze (Const (s, T)) = Const (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
501 |
| freeze (Free (s, T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
502 |
| freeze t = t |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
503 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
504 |
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
|
505 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
506 |
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
|
507 |
let |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
508 |
val problem = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
509 |
{state = Proof.init ctxt, goal = goal, subgoal = 1, subgoal_count = 1, |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
510 |
facts = facts |> map (apfst (apfst (fn name => name ()))) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
511 |
|> map Untranslated_Fact} |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
512 |
in |
48399
4bacc8983b3d
learn from SMT proofs when they can be minimized by Metis
blanchet
parents:
48398
diff
changeset
|
513 |
get_minimizing_prover ctxt MaSh (K (K ())) prover params (K (K (K ""))) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
514 |
problem |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
515 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
516 |
|
48326 | 517 |
val bad_types = [@{type_name prop}, @{type_name bool}, @{type_name fun}] |
518 |
||
48398 | 519 |
val logical_consts = |
520 |
[@{const_name prop}, @{const_name Pure.conjunction}] @ atp_logical_consts |
|
521 |
||
50585 | 522 |
val max_pattern_breadth = 10 |
523 |
||
524 |
fun interesting_terms_types_and_classes ctxt prover thy_name term_max_depth |
|
48318 | 525 |
type_max_depth ts = |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
526 |
let |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
527 |
val thy = Proof_Context.theory_of ctxt |
50393 | 528 |
val fixes = map snd (Variable.dest_fixes ctxt) |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
529 |
val classes = Sign.classes_of thy |
48318 | 530 |
fun is_bad_const (x as (s, _)) args = |
48398 | 531 |
member (op =) logical_consts s orelse |
48318 | 532 |
fst (is_built_in_const_for_prover ctxt prover x args) |
48304 | 533 |
fun add_classes @{sort type} = I |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
534 |
| add_classes S = |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
535 |
fold (`(Sorts.super_classes classes) |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
536 |
#> swap #> op :: |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
537 |
#> subtract (op =) @{sort type} |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
538 |
#> map class_feature_of |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
539 |
#> union (op = o pairself fst)) S |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
540 |
fun do_add_type (Type (s, Ts)) = |
50356 | 541 |
(not (member (op =) bad_types s) |
542 |
? insert (op = o pairself fst) (type_feature_of s)) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
543 |
#> fold do_add_type Ts |
48304 | 544 |
| do_add_type (TFree (_, S)) = add_classes S |
545 |
| do_add_type (TVar (_, S)) = add_classes S |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
546 |
fun add_type T = type_max_depth >= 0 ? do_add_type T |
50583
681edd111e9b
really honor pattern depth, and use 2 by default
blanchet
parents:
50570
diff
changeset
|
547 |
fun patternify_term _ 0 _ = [] |
50339
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
548 |
| patternify_term args _ (Const (x as (s, _))) = |
50356 | 549 |
if is_bad_const x args then [] else [s] |
50393 | 550 |
| patternify_term _ depth (Free (s, _)) = |
551 |
if depth = term_max_depth andalso member (op =) fixes s then |
|
552 |
[thy_name ^ Long_Name.separator ^ s] |
|
553 |
else |
|
554 |
[] |
|
50339
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
555 |
| patternify_term args depth (t $ u) = |
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
556 |
let |
50585 | 557 |
val ps = |
558 |
take max_pattern_breadth (patternify_term (u :: args) depth t) |
|
559 |
val qs = |
|
560 |
take max_pattern_breadth ("" :: patternify_term [] (depth - 1) u) |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
561 |
in map_product (fn p => fn "" => p | q => p ^ "(" ^ q ^ ")") ps qs end |
50339
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
562 |
| patternify_term _ _ _ = [] |
50393 | 563 |
fun add_term_pattern feature_of = |
564 |
union (op = o pairself fst) o map feature_of oo patternify_term [] |
|
50583
681edd111e9b
really honor pattern depth, and use 2 by default
blanchet
parents:
50570
diff
changeset
|
565 |
fun add_term_patterns _ 0 _ = I |
50393 | 566 |
| add_term_patterns feature_of depth t = |
567 |
add_term_pattern feature_of depth t |
|
568 |
#> add_term_patterns feature_of (depth - 1) t |
|
569 |
fun add_term feature_of = add_term_patterns feature_of term_max_depth |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
570 |
fun add_patterns t = |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
571 |
let val (head, args) = strip_comb t in |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
572 |
(case head of |
50393 | 573 |
Const (_, T) => add_term const_feature_of t #> add_type T |
574 |
| Free (_, T) => add_term free_feature_of t #> add_type T |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
575 |
| Var (_, T) => add_type T |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
576 |
| Abs (_, T, body) => add_type T #> add_patterns body |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
577 |
| _ => I) |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
578 |
#> fold add_patterns args |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
579 |
end |
48326 | 580 |
in [] |> fold add_patterns ts end |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
581 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
582 |
fun is_exists (s, _) = (s = @{const_name Ex} orelse s = @{const_name Ex1}) |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
583 |
|
50583
681edd111e9b
really honor pattern depth, and use 2 by default
blanchet
parents:
50570
diff
changeset
|
584 |
val term_max_depth = 2 |
681edd111e9b
really honor pattern depth, and use 2 by default
blanchet
parents:
50570
diff
changeset
|
585 |
val type_max_depth = 2 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
586 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
587 |
(* TODO: Generate type classes for types? *) |
48385 | 588 |
fun features_of ctxt prover thy (scope, status) ts = |
50393 | 589 |
let val thy_name = Context.theory_name thy in |
590 |
thy_feature_of thy_name :: |
|
50585 | 591 |
interesting_terms_types_and_classes ctxt prover thy_name term_max_depth |
50393 | 592 |
type_max_depth ts |
593 |
|> status <> General ? cons (status_feature_of status) |
|
594 |
|> scope <> Global ? cons local_feature |
|
595 |
|> exists (not o is_lambda_free) ts ? cons lams_feature |
|
596 |
|> exists (exists_Const is_exists) ts ? cons skos_feature |
|
597 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
598 |
|
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
|
599 |
(* 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
|
600 |
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
|
601 |
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
|
602 |
|
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
|
603 |
val prover_dependency_default_max_facts = 50 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
604 |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
605 |
(* "type_definition_xxx" facts are characterized by their use of "CollectI". *) |
48441 | 606 |
val typedef_deps = [@{thm CollectI} |> nickname_of] |
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
607 |
|
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
608 |
(* "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
|
609 |
val typedef_ths = |
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
610 |
@{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
|
611 |
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
|
612 |
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
|
613 |
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
|
614 |
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
|
615 |
type_definition.Abs_image} |
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
616 |
|> map nickname_of |
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
617 |
|
48441 | 618 |
fun is_size_def [dep] th = |
619 |
(case first_field ".recs" dep of |
|
620 |
SOME (pref, _) => |
|
621 |
(case first_field ".size" (nickname_of th) of |
|
622 |
SOME (pref', _) => pref = pref' |
|
623 |
| NONE => false) |
|
624 |
| NONE => false) |
|
625 |
| is_size_def _ _ = false |
|
626 |
||
627 |
fun trim_dependencies th deps = |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
628 |
if length deps > max_dependencies then |
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
629 |
NONE |
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
630 |
else |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
631 |
SOME (if deps = typedef_deps orelse |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
632 |
exists (member (op =) typedef_ths) deps orelse |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
633 |
is_size_def deps th then |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
634 |
[] |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
635 |
else |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
636 |
deps) |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
637 |
|
48441 | 638 |
fun isar_dependencies_of all_names th = |
639 |
th |> thms_in_proof (SOME all_names) |> trim_dependencies th |
|
48404 | 640 |
|
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
|
641 |
fun prover_dependencies_of ctxt (params as {verbose, max_facts, ...}) prover |
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
|
642 |
auto_level facts all_names th = |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
643 |
case isar_dependencies_of all_names th of |
48665 | 644 |
SOME [] => (false, SOME []) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
645 |
| isar_deps => |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
646 |
let |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
647 |
val thy = Proof_Context.theory_of ctxt |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
648 |
val goal = goal_of_thm thy th |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
649 |
val (_, hyp_ts, concl_t) = ATP_Util.strip_subgoal ctxt goal 1 |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
650 |
val facts = facts |> filter (fn (_, th') => thm_ord (th', th) = LESS) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
651 |
fun fix_name ((_, stature), th) = ((fn () => nickname_of th, stature), th) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
652 |
fun is_dep dep (_, th) = nickname_of th = dep |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
653 |
fun add_isar_dep facts dep accum = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
654 |
if exists (is_dep dep) accum then |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
655 |
accum |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
656 |
else case find_first (is_dep dep) facts of |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
657 |
SOME ((name, status), th) => accum @ [((name, status), th)] |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
658 |
| NONE => accum (* shouldn't happen *) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
659 |
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
|
660 |
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
|
661 |
|> mepo_suggested_facts ctxt params prover |
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
|
662 |
(max_facts |> the_default prover_dependency_default_max_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
|
663 |
NONE hyp_ts concl_t |
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
|
664 |
|> fold (add_isar_dep facts) (these isar_deps) |
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
|
665 |
|> map fix_name |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
666 |
in |
48404 | 667 |
if verbose andalso auto_level = 0 then |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
668 |
let val num_facts = length facts in |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
669 |
"MaSh: " ^ quote prover ^ " on " ^ quote (nickname_of th) ^ |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
670 |
" 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
|
671 |
"." |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
672 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
673 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
674 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
675 |
(); |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
676 |
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
|
677 |
{outcome = NONE, used_facts, ...} => |
48404 | 678 |
(if verbose andalso auto_level = 0 then |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
679 |
let val num_facts = length used_facts in |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
680 |
"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
|
681 |
plural_s num_facts ^ "." |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
682 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
683 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
684 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
685 |
(); |
48665 | 686 |
case used_facts |> map fst |> trim_dependencies th of |
687 |
NONE => (false, isar_deps) |
|
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
|
688 |
| prover_deps => (true, prover_deps)) |
48665 | 689 |
| _ => (false, isar_deps) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
690 |
end |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
691 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
692 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
693 |
(*** High-level communication with MaSh ***) |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
694 |
|
48407 | 695 |
fun num_keys keys = Graph.Keys.fold (K (Integer.add 1)) keys 0 |
48400 | 696 |
|
48407 | 697 |
fun maximal_in_graph fact_G facts = |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
698 |
let |
48378 | 699 |
val facts = [] |> fold (cons o nickname_of o snd) facts |
48407 | 700 |
val tab = Symtab.empty |> fold (fn name => Symtab.default (name, ())) facts |
701 |
fun insert_new seen name = |
|
702 |
not (Symtab.defined seen name) ? insert (op =) name |
|
703 |
fun find_maxes _ (maxs, []) = map snd maxs |
|
704 |
| find_maxes seen (maxs, new :: news) = |
|
705 |
find_maxes |
|
706 |
(seen |> num_keys (Graph.imm_succs fact_G new) > 1 |
|
707 |
? Symtab.default (new, ())) |
|
708 |
(if Symtab.defined tab new then |
|
709 |
let |
|
710 |
val newp = Graph.all_preds fact_G [new] |
|
711 |
fun is_ancestor x yp = member (op =) yp x |
|
712 |
val maxs = |
|
713 |
maxs |> filter (fn (_, max) => not (is_ancestor max newp)) |
|
714 |
in |
|
715 |
if exists (is_ancestor new o fst) maxs then |
|
716 |
(maxs, news) |
|
717 |
else |
|
718 |
((newp, new) |
|
719 |
:: filter_out (fn (_, max) => is_ancestor max newp) maxs, |
|
720 |
news) |
|
721 |
end |
|
722 |
else |
|
723 |
(maxs, Graph.Keys.fold (insert_new seen) |
|
724 |
(Graph.imm_preds fact_G new) news)) |
|
725 |
in find_maxes Symtab.empty ([], Graph.maximals fact_G) end |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
726 |
|
48400 | 727 |
fun is_fact_in_graph fact_G (_, th) = |
728 |
can (Graph.get_node fact_G) (nickname_of th) |
|
48320
891a24a48155
improved meshing of MaSh and Meng--Paulson if some MaSh suggestions are cut-off (the common case)
blanchet
parents:
48319
diff
changeset
|
729 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
730 |
(* use MePo weights for now *) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
731 |
val weight_raw_mash_facts = weight_mepo_facts |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
732 |
val weight_mash_facts = weight_raw_mash_facts |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
733 |
|
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
734 |
(* FUDGE *) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
735 |
fun weight_of_proximity_fact rank = |
50398 | 736 |
Math.pow (1.3, 15.5 - 0.2 * Real.fromInt rank) + 15.0 |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
737 |
|
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
738 |
fun weight_proximity_facts facts = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
739 |
facts ~~ map weight_of_proximity_fact (0 upto length facts - 1) |
50382 | 740 |
|
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
741 |
val max_proximity_facts = 100 |
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
742 |
|
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
743 |
fun find_mash_suggestions max_facts suggs facts chained raw_unknown = |
50412 | 744 |
let |
745 |
val raw_mash = |
|
746 |
facts |> find_suggested_facts suggs |
|
747 |
(* The weights currently returned by "mash.py" are too spaced out to |
|
748 |
make any sense. *) |
|
749 |
|> map fst |
|
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
750 |
val proximity = |
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
751 |
facts |> sort (thm_ord o pairself snd o swap) |
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
752 |
|> take max_proximity_facts |
50412 | 753 |
val mess = |
50435 | 754 |
[(0.80 (* FUDGE *), (map (rpair 1.0) chained, [])), |
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
755 |
(0.16 (* FUDGE *), (weight_raw_mash_facts raw_mash, raw_unknown)), |
50435 | 756 |
(0.04 (* FUDGE *), (weight_proximity_facts proximity, []))] |
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
757 |
val unknown = |
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
758 |
raw_unknown |
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
759 |
|> fold (subtract (Thm.eq_thm_prop o pairself snd)) [chained, proximity] |
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
760 |
in (mesh_facts max_facts mess, unknown) end |
50412 | 761 |
|
48406 | 762 |
fun mash_suggested_facts ctxt ({overlord, ...} : params) prover max_facts hyp_ts |
763 |
concl_t facts = |
|
48301 | 764 |
let |
48302 | 765 |
val thy = Proof_Context.theory_of ctxt |
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
766 |
val (fact_G, suggs) = |
50570 | 767 |
peek_state ctxt (fn {fact_G, ...} => |
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
768 |
if Graph.is_empty fact_G then |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
769 |
(fact_G, []) |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
770 |
else |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
771 |
let |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
772 |
val parents = maximal_in_graph fact_G facts |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
773 |
val feats = |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
774 |
features_of ctxt prover thy (Local, General) (concl_t :: hyp_ts) |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
775 |
in |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
776 |
(fact_G, mash_QUERY ctxt overlord max_facts (parents, feats)) |
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
777 |
end) |
50397
d84a5ab736bb
reduce max number of dependencies for MaSh to get rid of junk
blanchet
parents:
50396
diff
changeset
|
778 |
val chained = facts |> filter (fn ((_, (scope, _)), _) => scope = Chained) |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
779 |
val unknown = facts |> filter_out (is_fact_in_graph fact_G) |
50412 | 780 |
in find_mash_suggestions max_facts suggs facts chained unknown end |
48249 | 781 |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
782 |
fun add_wrt_fact_graph ctxt (name, parents, feats, deps) (adds, graph) = |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
783 |
let |
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
784 |
fun maybe_add_from from (accum as (parents, graph)) = |
48321 | 785 |
try_graph ctxt "updating graph" accum (fn () => |
786 |
(from :: parents, Graph.add_edge_acyclic (from, name) graph)) |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
787 |
val graph = graph |> Graph.default_node (name, Isar_Proof) |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
788 |
val (parents, graph) = ([], graph) |> fold maybe_add_from parents |
48407 | 789 |
val (deps, _) = ([], graph) |> fold maybe_add_from deps |
48404 | 790 |
in ((name, parents, feats, deps) :: adds, graph) end |
48306 | 791 |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
792 |
fun reprove_wrt_fact_graph ctxt (name, deps) (reps, graph) = |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
793 |
let |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
794 |
fun maybe_rep_from from (accum as (parents, graph)) = |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
795 |
try_graph ctxt "updating graph" accum (fn () => |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
796 |
(from :: parents, Graph.add_edge_acyclic (from, name) graph)) |
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
|
797 |
val graph = graph |> update_fact_graph_node (name, Automatic_Proof) |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
798 |
val (deps, _) = ([], graph) |> fold maybe_rep_from deps |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
799 |
in ((name, deps) :: reps, graph) end |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
800 |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
801 |
fun flop_wrt_fact_graph name = |
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
|
802 |
update_fact_graph_node (name, Isar_Proof_wegen_Prover_Flop) |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
803 |
|
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
|
804 |
val learn_timeout_slack = 2.0 |
48318 | 805 |
|
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
|
806 |
fun launch_thread timeout task = |
48383 | 807 |
let |
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
|
808 |
val hard_timeout = time_mult learn_timeout_slack timeout |
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
|
809 |
val birth_time = Time.now () |
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
|
810 |
val death_time = Time.+ (birth_time, hard_timeout) |
48442 | 811 |
val desc = ("Machine learner for Sledgehammer", "") |
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
|
812 |
in Async_Manager.launch MaShN birth_time death_time desc task end |
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
|
813 |
|
48400 | 814 |
fun freshish_name () = |
815 |
Date.fmt ".%Y_%m_%d_%H_%M_%S__" (Date.fromTimeLocal (Time.now ())) ^ |
|
816 |
serial_string () |
|
817 |
||
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
|
818 |
fun mash_learn_proof ctxt ({overlord, timeout, ...} : params) prover t facts |
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
|
819 |
used_ths = |
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
|
820 |
if is_smt_prover ctxt prover then |
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
|
821 |
() |
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
|
822 |
else |
50557 | 823 |
launch_thread (timeout |> the_default one_day) (fn () => |
48403
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
824 |
let |
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
825 |
val thy = Proof_Context.theory_of ctxt |
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
826 |
val name = freshish_name () |
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
827 |
val feats = features_of ctxt prover thy (Local, General) [t] |
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
828 |
val deps = used_ths |> map nickname_of |
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
829 |
in |
50570 | 830 |
peek_state ctxt (fn {fact_G, ...} => |
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
831 |
let val parents = maximal_in_graph fact_G facts in |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
832 |
mash_ADD ctxt overlord [(name, parents, feats, deps)] |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
833 |
end); |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
834 |
(true, "") |
48403
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
835 |
end) |
48383 | 836 |
|
50450
358b6020f8b6
generalized notion of active area, where sendback is just one application;
wenzelm
parents:
50440
diff
changeset
|
837 |
fun sendback sub = Active.sendback_markup (sledgehammerN ^ " " ^ sub) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
838 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
839 |
val commit_timeout = seconds 30.0 |
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
840 |
|
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
841 |
(* The timeout is understood in a very relaxed fashion. *) |
48404 | 842 |
fun mash_learn_facts ctxt (params as {debug, verbose, overlord, ...}) prover |
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
|
843 |
auto_level run_prover learn_timeout facts = |
48304 | 844 |
let |
48318 | 845 |
val timer = Timer.startRealTimer () |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
846 |
fun next_commit_time () = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
847 |
Time.+ (Timer.checkRealTimer timer, commit_timeout) |
50570 | 848 |
val {fact_G, ...} = peek_state ctxt I |
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
849 |
val facts = facts |> sort (thm_ord o pairself snd) |
48400 | 850 |
val (old_facts, new_facts) = |
48667
ac58317ef11f
rule out same "technical" theories for MePo as for MaSh
blanchet
parents:
48665
diff
changeset
|
851 |
facts |> List.partition (is_fact_in_graph fact_G) |
48308 | 852 |
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
|
853 |
if null new_facts andalso (not run_prover orelse null old_facts) then |
48404 | 854 |
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
|
855 |
"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
|
856 |
" 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
|
857 |
(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
|
858 |
"\n\nHint: Try " ^ sendback learn_proverN ^ |
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
|
859 |
" to learn from automatic provers." |
48404 | 860 |
else |
861 |
"") |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
862 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
863 |
"" |
48308 | 864 |
else |
48304 | 865 |
let |
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
866 |
val all_names = build_all_names nickname_of facts |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
867 |
fun deps_of status th = |
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
868 |
if status = Non_Rec_Def orelse status = Rec_Def then |
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
869 |
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
|
870 |
else if 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
|
871 |
prover_dependencies_of ctxt params prover auto_level facts all_names |
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
|
872 |
th |
48665 | 873 |
|> (fn (false, _) => NONE | (true, deps) => deps) |
48404 | 874 |
else |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
875 |
isar_dependencies_of all_names th |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
876 |
fun do_commit [] [] [] state = state |
48699 | 877 |
| do_commit adds reps flops {fact_G, dirty} = |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
878 |
let |
48699 | 879 |
val was_empty = Graph.is_empty fact_G |
48404 | 880 |
val (adds, fact_G) = |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
881 |
([], fact_G) |> fold (add_wrt_fact_graph ctxt) adds |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
882 |
val (reps, fact_G) = |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
883 |
([], fact_G) |> fold (reprove_wrt_fact_graph ctxt) reps |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
884 |
val fact_G = fact_G |> fold flop_wrt_fact_graph flops |
48699 | 885 |
val dirty = |
886 |
case (was_empty, dirty, reps) of |
|
887 |
(false, SOME names, []) => SOME (map #1 adds @ names) |
|
888 |
| _ => NONE |
|
48404 | 889 |
in |
890 |
mash_ADD ctxt overlord (rev adds); |
|
891 |
mash_REPROVE ctxt overlord reps; |
|
48699 | 892 |
{fact_G = fact_G, dirty = dirty} |
48404 | 893 |
end |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
894 |
fun commit last adds reps flops = |
48404 | 895 |
(if debug andalso auto_level = 0 then |
896 |
Output.urgent_message "Committing..." |
|
897 |
else |
|
898 |
(); |
|
50570 | 899 |
map_state ctxt (do_commit (rev adds) reps flops); |
48404 | 900 |
if not last andalso auto_level = 0 then |
901 |
let val num_proofs = length adds + length reps in |
|
902 |
"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
|
903 |
(if run_prover then "automatic" else "Isar") ^ " proof" ^ |
48404 | 904 |
plural_s num_proofs ^ " in the last " ^ |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
905 |
string_from_time commit_timeout ^ "." |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
906 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
907 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
908 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
909 |
()) |
48404 | 910 |
fun learn_new_fact _ (accum as (_, (_, _, _, true))) = accum |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
911 |
| learn_new_fact ((_, stature as (_, status)), th) |
48404 | 912 |
(adds, (parents, n, next_commit, _)) = |
48318 | 913 |
let |
48378 | 914 |
val name = nickname_of th |
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
915 |
val feats = |
48385 | 916 |
features_of ctxt prover (theory_of_thm th) stature [prop_of th] |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
917 |
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
|
918 |
val n = n |> not (null deps) ? Integer.add 1 |
48404 | 919 |
val adds = (name, parents, feats, deps) :: adds |
920 |
val (adds, next_commit) = |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
921 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
922 |
(commit false adds [] []; ([], next_commit_time ())) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
923 |
else |
48404 | 924 |
(adds, next_commit) |
50557 | 925 |
val timed_out = |
926 |
case learn_timeout of |
|
927 |
SOME timeout => Time.> (Timer.checkRealTimer timer, timeout) |
|
928 |
| NONE => false |
|
48404 | 929 |
in (adds, ([name], n, next_commit, timed_out)) end |
930 |
val n = |
|
931 |
if null new_facts then |
|
932 |
0 |
|
933 |
else |
|
934 |
let |
|
935 |
val last_th = new_facts |> List.last |> snd |
|
936 |
(* crude approximation *) |
|
937 |
val ancestors = |
|
938 |
old_facts |
|
939 |
|> filter (fn (_, th) => thm_ord (th, last_th) <> GREATER) |
|
48407 | 940 |
val parents = maximal_in_graph fact_G ancestors |
48404 | 941 |
val (adds, (_, n, _, _)) = |
942 |
([], (parents, 0, next_commit_time (), false)) |
|
943 |
|> fold learn_new_fact new_facts |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
944 |
in commit true adds [] []; n end |
48404 | 945 |
fun relearn_old_fact _ (accum as (_, (_, _, true))) = accum |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
946 |
| relearn_old_fact ((_, (_, status)), th) |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
947 |
((reps, flops), (n, next_commit, _)) = |
48404 | 948 |
let |
949 |
val name = nickname_of th |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
950 |
val (n, reps, flops) = |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
951 |
case deps_of status th of |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
952 |
SOME deps => (n + 1, (name, deps) :: reps, flops) |
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
953 |
| NONE => (n, reps, name :: flops) |
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
954 |
val (reps, flops, next_commit) = |
48404 | 955 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
956 |
(commit false [] reps flops; ([], [], next_commit_time ())) |
48404 | 957 |
else |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
958 |
(reps, flops, next_commit) |
50557 | 959 |
val timed_out = |
960 |
case learn_timeout of |
|
961 |
SOME timeout => Time.> (Timer.checkRealTimer timer, timeout) |
|
962 |
| NONE => false |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
963 |
in ((reps, flops), (n, next_commit, timed_out)) end |
48404 | 964 |
val n = |
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
|
965 |
if not run_prover orelse null old_facts then |
48404 | 966 |
n |
967 |
else |
|
968 |
let |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
969 |
val max_isar = 1000 * max_dependencies |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
970 |
fun kind_of_proof th = |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
971 |
try (Graph.get_node fact_G) (nickname_of th) |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
972 |
|> the_default Isar_Proof |
48406 | 973 |
fun priority_of (_, th) = |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
974 |
random_range 0 max_isar |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
975 |
+ (case kind_of_proof th of |
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
976 |
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
|
977 |
| 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
|
978 |
| Isar_Proof_wegen_Prover_Flop => max_isar) |
48404 | 979 |
- 500 * (th |> isar_dependencies_of all_names |
980 |
|> Option.map length |
|
981 |
|> the_default max_dependencies) |
|
982 |
val old_facts = |
|
48406 | 983 |
old_facts |> map (`priority_of) |
48404 | 984 |
|> sort (int_ord o pairself fst) |
985 |
|> map snd |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
986 |
val ((reps, flops), (n, _, _)) = |
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
987 |
(([], []), (n, next_commit_time (), false)) |
48404 | 988 |
|> fold relearn_old_fact old_facts |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
989 |
in commit true [] reps flops; n end |
48318 | 990 |
in |
48404 | 991 |
if verbose orelse auto_level < 2 then |
992 |
"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
|
993 |
(if run_prover then "automatic" else "Isar") ^ " proof" ^ plural_s n ^ |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
994 |
(if verbose then |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
995 |
" in " ^ string_from_time (Timer.checkRealTimer timer) |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
996 |
else |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
997 |
"") ^ "." |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
998 |
else |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
999 |
"" |
48318 | 1000 |
end |
48308 | 1001 |
end |
48304 | 1002 |
|
48404 | 1003 |
fun mash_learn ctxt (params as {provers, timeout, ...}) fact_override chained |
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
|
1004 |
run_prover = |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1005 |
let |
48396 | 1006 |
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
|
1007 |
val ctxt = ctxt |> Config.put instantiate_inducts false |
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
1008 |
val facts = |
48396 | 1009 |
nearly_all_facts ctxt false fact_override Symtab.empty css chained [] |
1010 |
@{prop True} |
|
48404 | 1011 |
val num_facts = length facts |
1012 |
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
|
1013 |
fun learn auto_level run_prover = |
50557 | 1014 |
mash_learn_facts ctxt params prover auto_level run_prover NONE facts |
48404 | 1015 |
|> Output.urgent_message |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1016 |
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
|
1017 |
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
|
1018 |
("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
|
1019 |
plural_s num_facts ^ " for automatic proofs (" ^ quote prover ^ |
50557 | 1020 |
(case timeout of |
1021 |
SOME timeout => " timeout: " ^ string_from_time timeout |
|
1022 |
| 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
|
1023 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1024 |
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
|
1025 |
"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
|
1026 |
\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
|
1027 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1028 |
learn 0 true) |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1029 |
else |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1030 |
("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
|
1031 |
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
|
1032 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1033 |
learn 0 false) |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1034 |
end |
48249 | 1035 |
|
50311 | 1036 |
fun is_mash_enabled () = (getenv "MASH" = "yes") |
50570 | 1037 |
fun mash_can_suggest_facts ctxt = |
1038 |
not (Graph.is_empty (#fact_G (peek_state ctxt I))) |
|
50311 | 1039 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1040 |
(* 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
|
1041 |
later for various reasons. *) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1042 |
fun generous_max_facts max_facts = max_facts + Int.min (50, max_facts) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1043 |
|
48318 | 1044 |
(* The threshold should be large enough so that MaSh doesn't kick in for Auto |
1045 |
Sledgehammer and Try. *) |
|
1046 |
val min_secs_for_learning = 15 |
|
1047 |
||
48321 | 1048 |
fun relevant_facts ctxt (params as {learn, fact_filter, timeout, ...}) prover |
1049 |
max_facts ({add, only, ...} : fact_override) hyp_ts concl_t facts = |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1050 |
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
|
1051 |
error ("Unknown fact filter: " ^ quote (the fact_filter) ^ ".") |
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1052 |
else if only then |
48289 | 1053 |
facts |
48321 | 1054 |
else if max_facts <= 0 orelse null facts then |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1055 |
[] |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1056 |
else |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1057 |
let |
48327
568b3193e53e
don't include hidden facts in relevance filter + tweak MaSh learning
blanchet
parents:
48326
diff
changeset
|
1058 |
fun maybe_learn () = |
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
|
1059 |
if learn andalso not (Async_Manager.has_running_threads MaShN) andalso |
50557 | 1060 |
(timeout = NONE orelse |
1061 |
Time.toSeconds (the timeout) >= min_secs_for_learning) then |
|
1062 |
let |
|
1063 |
val timeout = Option.map (time_mult learn_timeout_slack) timeout |
|
1064 |
in |
|
1065 |
launch_thread (timeout |> the_default one_day) |
|
48404 | 1066 |
(fn () => (true, mash_learn_facts ctxt params prover 2 false |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1067 |
timeout facts)) |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1068 |
end |
48318 | 1069 |
else |
1070 |
() |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1071 |
val fact_filter = |
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1072 |
case fact_filter of |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
1073 |
SOME ff => (() |> ff <> mepoN ? maybe_learn; ff) |
48318 | 1074 |
| NONE => |
48407 | 1075 |
if is_smt_prover ctxt prover then |
1076 |
mepoN |
|
50229 | 1077 |
else if is_mash_enabled () then |
48407 | 1078 |
(maybe_learn (); |
1079 |
if mash_can_suggest_facts ctxt then meshN else mepoN) |
|
1080 |
else |
|
1081 |
mepoN |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1082 |
val add_ths = Attrib.eval_thms ctxt add |
48292 | 1083 |
fun prepend_facts ths accepts = |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1084 |
((facts |> filter (member Thm.eq_thm_prop ths o snd)) @ |
48292 | 1085 |
(accepts |> filter_out (member Thm.eq_thm_prop ths o snd))) |
48293 | 1086 |
|> take max_facts |
48406 | 1087 |
fun mepo () = |
50382 | 1088 |
mepo_suggested_facts ctxt params prover max_facts NONE hyp_ts concl_t |
1089 |
facts |
|
1090 |
|> weight_mepo_facts |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1091 |
fun mash () = |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1092 |
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
|
1093 |
hyp_ts concl_t facts |
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
1094 |
|>> weight_mash_facts |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1095 |
val mess = |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1096 |
[] |> (if fact_filter <> mashN then cons (0.5, (mepo (), [])) else I) |
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
1097 |
|> (if fact_filter <> mepoN then cons (0.5, (mash ())) else I) |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1098 |
in |
48313
0faafdffa662
mesh facts by taking into consideration whether a fact is known to MeSh
blanchet
parents:
48312
diff
changeset
|
1099 |
mesh_facts max_facts mess |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1100 |
|> not (null add_ths) ? prepend_facts add_ths |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1101 |
end |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1102 |
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1103 |
fun kill_learners () = Async_Manager.kill_threads MaShN "learner" |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1104 |
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
|
1105 |
|
48248 | 1106 |
end; |