author | blanchet |
Tue, 19 Feb 2013 13:37:07 +0100 | |
changeset 51184 | e2569dde59c8 |
parent 51183 | e0493414ce03 |
child 51187 | c344cf148e8f |
permissions | -rw-r--r-- |
48380 | 1 |
(* Title: HOL/Tools/Sledgehammer/sledgehammer_mash.ML |
48248 | 2 |
Author: Jasmin Blanchette, TU Muenchen |
3 |
||
4 |
Sledgehammer's machine-learning-based relevance filter (MaSh). |
|
5 |
*) |
|
6 |
||
48381 | 7 |
signature SLEDGEHAMMER_MASH = |
48248 | 8 |
sig |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
9 |
type stature = ATP_Problem_Generate.stature |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
10 |
type raw_fact = Sledgehammer_Fact.raw_fact |
48296
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
11 |
type fact = Sledgehammer_Fact.fact |
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
12 |
type fact_override = Sledgehammer_Fact.fact_override |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
13 |
type params = Sledgehammer_Provers.params |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
14 |
type relevance_fudge = Sledgehammer_Provers.relevance_fudge |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
15 |
type prover_result = Sledgehammer_Provers.prover_result |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
16 |
|
48308 | 17 |
val trace : bool Config.T |
51032
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
18 |
val snow : bool Config.T |
51008 | 19 |
val MePoN : string |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
20 |
val MaShN : string |
51008 | 21 |
val MeShN : string |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
22 |
val mepoN : string |
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
23 |
val mashN : string |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
24 |
val meshN : string |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
25 |
val unlearnN : string |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
26 |
val learn_isarN : string |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
27 |
val learn_proverN : string |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
28 |
val relearn_isarN : string |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
29 |
val relearn_proverN : string |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
30 |
val fact_filters : string list |
50826 | 31 |
val encode_str : string -> string |
32 |
val encode_strs : string list -> string |
|
33 |
val unencode_str : string -> string |
|
34 |
val unencode_strs : string -> string list |
|
50356 | 35 |
val encode_features : (string * real) list -> string |
50965 | 36 |
val extract_suggestions : string -> string * string list |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
37 |
|
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
38 |
structure MaSh: |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
39 |
sig |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
40 |
val unlearn : Proof.context -> unit |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
41 |
val learn : |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
42 |
Proof.context -> bool |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
43 |
-> (string * string list * (string * real) list * string list) list -> unit |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
44 |
val relearn : |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
45 |
Proof.context -> bool -> (string * string list) list -> unit |
50969 | 46 |
val query : |
50858 | 47 |
Proof.context -> bool -> bool -> int |
50965 | 48 |
-> string list * (string * real) list * string list -> string list |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
49 |
end |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
50 |
|
50311 | 51 |
val mash_unlearn : Proof.context -> unit |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
52 |
val nickname_of_thm : thm -> string |
51134 | 53 |
val find_suggested_facts : |
54 |
Proof.context -> ('b * thm) list -> string list -> ('b * thm) list |
|
48321 | 55 |
val mesh_facts : |
50814 | 56 |
('a * 'a -> bool) -> int -> (real * (('a * real) list * 'a list)) list |
57 |
-> 'a list |
|
51135 | 58 |
val crude_thm_ord : thm * thm -> order |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
59 |
val thm_less : thm * thm -> bool |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
60 |
val goal_of_thm : theory -> thm -> thm |
48321 | 61 |
val run_prover_for_mash : |
48318 | 62 |
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
|
63 |
val features_of : |
50356 | 64 |
Proof.context -> string -> theory -> stature -> term list |
65 |
-> (string * real) list |
|
51177 | 66 |
val trim_dependencies : string list -> string list option |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
67 |
val isar_dependencies_of : |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
68 |
string Symtab.table * string Symtab.table -> thm -> string list |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
69 |
val prover_dependencies_of : |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
70 |
Proof.context -> params -> string -> int -> raw_fact list |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
71 |
-> string Symtab.table * string Symtab.table -> thm |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
72 |
-> bool * string list |
50985 | 73 |
val weight_mepo_facts : 'a list -> ('a * real) list |
50608 | 74 |
val weight_mash_facts : 'a list -> ('a * real) list |
50412 | 75 |
val find_mash_suggestions : |
51134 | 76 |
Proof.context -> int -> string list -> ('b * thm) list -> ('b * thm) list |
77 |
-> ('b * thm) list -> ('b * thm) list * ('b * thm) list |
|
48406 | 78 |
val mash_suggested_facts : |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
79 |
Proof.context -> params -> string -> int -> term list -> term |
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
80 |
-> raw_fact list -> fact list * fact list |
48383 | 81 |
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
|
82 |
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
|
83 |
-> unit |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
84 |
val attach_parents_to_facts : |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
85 |
('a * thm) list -> ('a * thm) list -> (string list * ('a * thm)) list |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
86 |
val mash_learn : |
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
87 |
Proof.context -> params -> fact_override -> thm list -> bool -> unit |
50311 | 88 |
val is_mash_enabled : unit -> bool |
89 |
val mash_can_suggest_facts : Proof.context -> bool |
|
50412 | 90 |
val generous_max_facts : int -> int |
50814 | 91 |
val mepo_weight : real |
92 |
val mash_weight : real |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
93 |
val relevant_facts : |
48292 | 94 |
Proof.context -> params -> string -> int -> fact_override -> term list |
51010 | 95 |
-> term -> raw_fact list -> (string * fact list) list |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
96 |
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
|
97 |
val running_learners : unit -> unit |
48248 | 98 |
end; |
99 |
||
48381 | 100 |
structure Sledgehammer_MaSh : SLEDGEHAMMER_MASH = |
48248 | 101 |
struct |
48249 | 102 |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
103 |
open ATP_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
104 |
open ATP_Problem_Generate |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
105 |
open Sledgehammer_Util |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
106 |
open Sledgehammer_Fact |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
107 |
open Sledgehammer_Provers |
48318 | 108 |
open Sledgehammer_Minimize |
48381 | 109 |
open Sledgehammer_MePo |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
110 |
|
48308 | 111 |
val trace = |
48380 | 112 |
Attrib.setup_config_bool @{binding sledgehammer_mash_trace} (K false) |
51032
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
113 |
val snow = |
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
114 |
Attrib.setup_config_bool @{binding sledgehammer_mash_snow} (K false) |
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
115 |
|
48308 | 116 |
fun trace_msg ctxt msg = if Config.get ctxt trace then tracing (msg ()) else () |
117 |
||
51008 | 118 |
val MePoN = "MePo" |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
119 |
val MaShN = "MaSh" |
51008 | 120 |
val MeShN = "MeSh" |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
121 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
122 |
val mepoN = "mepo" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
123 |
val mashN = "mash" |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
124 |
val meshN = "mesh" |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
125 |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
126 |
val fact_filters = [meshN, mepoN, mashN] |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
127 |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
128 |
val unlearnN = "unlearn" |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
129 |
val learn_isarN = "learn_isar" |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
130 |
val learn_proverN = "learn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
131 |
val relearn_isarN = "relearn_isar" |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
132 |
val relearn_proverN = "relearn_prover" |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
133 |
|
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
134 |
fun mash_model_dir () = |
50340
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
135 |
Path.explode "$ISABELLE_HOME_USER/mash" |> tap Isabelle_System.mkdir |
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
136 |
val mash_state_dir = mash_model_dir |
50310 | 137 |
fun mash_state_file () = Path.append (mash_state_dir ()) (Path.explode "state") |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
138 |
|
48330 | 139 |
|
50311 | 140 |
(*** Low-level communication with MaSh ***) |
141 |
||
142 |
fun wipe_out_file file = (try (File.rm o Path.explode) file; ()) |
|
143 |
||
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
144 |
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
|
145 |
(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
|
146 |
xs |> chunk_list 500 |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
147 |
|> 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
|
148 |
handle IO.Io _ => () |
50311 | 149 |
|
150 |
fun run_mash_tool ctxt overlord save max_suggs write_cmds read_suggs = |
|
151 |
let |
|
152 |
val (temp_dir, serial) = |
|
153 |
if overlord then (getenv "ISABELLE_HOME_USER", "") |
|
154 |
else (getenv "ISABELLE_TMP", serial_string ()) |
|
155 |
val log_file = if overlord then temp_dir ^ "/mash_log" else "/dev/null" |
|
156 |
val err_file = temp_dir ^ "/mash_err" ^ serial |
|
157 |
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
|
158 |
val sugg_path = Path.explode sugg_file |
50311 | 159 |
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
|
160 |
val cmd_path = Path.explode cmd_file |
51001 | 161 |
val model_dir = File.shell_path (mash_model_dir ()) |
50311 | 162 |
val core = |
163 |
"--inputFile " ^ cmd_file ^ " --predictions " ^ sugg_file ^ |
|
164 |
" --numberOfPredictions " ^ string_of_int max_suggs ^ |
|
50951 | 165 |
(* " --learnTheories" ^ *) (if save then " --saveModel" else "") |
50311 | 166 |
val command = |
51032
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
167 |
"cd \"$ISABELLE_SLEDGEHAMMER_MASH\"/src; " ^ |
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
168 |
"./mash.py --quiet" ^ |
69da236d7838
added option to use SNoW as machine learning algo
blanchet
parents:
51029
diff
changeset
|
169 |
(if Config.get ctxt snow then " --snow" else "") ^ |
51001 | 170 |
" --outputDir " ^ model_dir ^ |
171 |
" --modelFile=" ^ model_dir ^ "/model.pickle" ^ |
|
172 |
" --dictsFile=" ^ model_dir ^ "/dict.pickle" ^ |
|
173 |
" --theoryFile=" ^ model_dir ^ "/theory.pickle" ^ |
|
174 |
" --log " ^ log_file ^ " " ^ core ^ |
|
50311 | 175 |
" >& " ^ err_file |
176 |
fun run_on () = |
|
50750 | 177 |
(Isabelle_System.bash command |
178 |
|> tap (fn _ => trace_msg ctxt (fn () => |
|
179 |
case try File.read (Path.explode err_file) of |
|
180 |
NONE => "Done" |
|
181 |
| SOME "" => "Done" |
|
182 |
| SOME s => "Error: " ^ elide_string 1000 s)); |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
183 |
read_suggs (fn () => try File.read_lines sugg_path |> these)) |
50311 | 184 |
fun clean_up () = |
185 |
if overlord then () |
|
186 |
else List.app wipe_out_file [err_file, sugg_file, cmd_file] |
|
187 |
in |
|
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
188 |
write_file (SOME "") ([], K "") sugg_path; |
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
189 |
write_file (SOME "") write_cmds cmd_path; |
50311 | 190 |
trace_msg ctxt (fn () => "Running " ^ command); |
191 |
with_cleanup clean_up run_on () |
|
192 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
193 |
|
48308 | 194 |
fun meta_char c = |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
195 |
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
|
196 |
c = #")" orelse c = #"," then |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
197 |
String.str c |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
198 |
else |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
199 |
(* fixed width, in case more digits follow *) |
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
200 |
"%" ^ stringN_of_int 3 (Char.ord c) |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
201 |
|
48308 | 202 |
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
|
203 |
| unmeta_chars accum (#"%" :: d1 :: d2 :: d3 :: cs) = |
48308 | 204 |
(case Int.fromString (String.implode [d1, d2, d3]) of |
205 |
SOME n => unmeta_chars (Char.chr n :: accum) cs |
|
206 |
| NONE => "" (* error *)) |
|
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
207 |
| unmeta_chars _ (#"%" :: _) = "" (* error *) |
48308 | 208 |
| unmeta_chars accum (c :: cs) = unmeta_chars (c :: accum) cs |
209 |
||
50826 | 210 |
val encode_str = String.translate meta_char |
211 |
val encode_strs = map encode_str #> space_implode " " |
|
212 |
val unencode_str = String.explode #> unmeta_chars [] |
|
213 |
val unencode_strs = |
|
214 |
space_explode " " #> filter_out (curry (op =) "") #> map unencode_str |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
215 |
|
50858 | 216 |
fun freshish_name () = |
217 |
Date.fmt ".%Y%m%d_%H%M%S__" (Date.fromTimeLocal (Time.now ())) ^ |
|
218 |
serial_string () |
|
219 |
||
50356 | 220 |
fun encode_feature (name, weight) = |
50826 | 221 |
encode_str name ^ |
51025 | 222 |
(if Real.== (weight, 1.0) then "" else "=" ^ smart_string_of_real weight) |
50356 | 223 |
|
224 |
val encode_features = map encode_feature #> space_implode " " |
|
225 |
||
50631 | 226 |
fun str_of_learn (name, parents, feats, deps) = |
50826 | 227 |
"! " ^ encode_str name ^ ": " ^ encode_strs parents ^ "; " ^ |
228 |
encode_features feats ^ "; " ^ encode_strs deps ^ "\n" |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
229 |
|
50631 | 230 |
fun str_of_relearn (name, deps) = |
50826 | 231 |
"p " ^ encode_str name ^ ": " ^ encode_strs deps ^ "\n" |
50311 | 232 |
|
50858 | 233 |
fun str_of_query learn_hints (parents, feats, hints) = |
234 |
(if not learn_hints orelse null hints then "" |
|
235 |
else str_of_learn (freshish_name (), parents, feats, hints)) ^ |
|
50826 | 236 |
"? " ^ encode_strs parents ^ "; " ^ encode_features feats ^ |
50858 | 237 |
(if learn_hints orelse null hints then "" else "; " ^ encode_strs hints) ^ |
238 |
"\n" |
|
48406 | 239 |
|
50965 | 240 |
(* The weights currently returned by "mash.py" are too spaced out to make any |
241 |
sense. *) |
|
48406 | 242 |
fun extract_suggestion sugg = |
243 |
case space_explode "=" sugg of |
|
51177 | 244 |
[name, _ (* weight *)] => |
50965 | 245 |
SOME (unencode_str name (* , Real.fromString weight |> the_default 1.0 *)) |
246 |
| [name] => SOME (unencode_str name (* , 1.0 *)) |
|
48406 | 247 |
| _ => NONE |
248 |
||
50633 | 249 |
fun extract_suggestions line = |
48311 | 250 |
case space_explode ":" line of |
48406 | 251 |
[goal, suggs] => |
50826 | 252 |
(unencode_str goal, map_filter extract_suggestion (space_explode " " suggs)) |
48312 | 253 |
| _ => ("", []) |
48311 | 254 |
|
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
255 |
structure MaSh = |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
256 |
struct |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
257 |
|
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
258 |
fun unlearn ctxt = |
50311 | 259 |
let val path = mash_model_dir () in |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
260 |
trace_msg ctxt (K "MaSh unlearn"); |
50319
dddcaeb92e11
robust writing of MaSh state -- better drop learning data than cause other problems in Sledgehammer
blanchet
parents:
50311
diff
changeset
|
261 |
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
|
262 |
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
|
263 |
path) NONE; |
50311 | 264 |
() |
265 |
end |
|
266 |
||
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
267 |
fun learn _ _ [] = () |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
268 |
| learn ctxt overlord learns = |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
269 |
(trace_msg ctxt (fn () => "MaSh learn " ^ |
50631 | 270 |
elide_string 1000 (space_implode " " (map #1 learns))); |
271 |
run_mash_tool ctxt overlord true 0 (learns, str_of_learn) (K ())) |
|
50311 | 272 |
|
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
273 |
fun relearn _ _ [] = () |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
274 |
| relearn ctxt overlord relearns = |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
275 |
(trace_msg ctxt (fn () => "MaSh relearn " ^ |
50631 | 276 |
elide_string 1000 (space_implode " " (map #1 relearns))); |
277 |
run_mash_tool ctxt overlord true 0 (relearns, str_of_relearn) (K ())) |
|
50311 | 278 |
|
50969 | 279 |
fun query ctxt overlord learn_hints max_suggs (query as (_, feats, hints)) = |
280 |
(trace_msg ctxt (fn () => "MaSh query " ^ encode_features feats); |
|
50858 | 281 |
run_mash_tool ctxt overlord (learn_hints andalso not (null hints)) |
282 |
max_suggs ([query], str_of_query learn_hints) |
|
50311 | 283 |
(fn suggs => |
284 |
case suggs () of |
|
285 |
[] => [] |
|
50633 | 286 |
| suggs => snd (extract_suggestions (List.last suggs))) |
50311 | 287 |
handle List.Empty => []) |
288 |
||
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
289 |
end; |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
290 |
|
50311 | 291 |
|
292 |
(*** Middle-level communication with MaSh ***) |
|
293 |
||
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
|
294 |
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
|
295 |
Isar_Proof | Automatic_Proof | Isar_Proof_wegen_Prover_Flop |
50311 | 296 |
|
297 |
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
|
298 |
| 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
|
299 |
| str_of_proof_kind Isar_Proof_wegen_Prover_Flop = "x" |
50311 | 300 |
|
301 |
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
|
302 |
| 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
|
303 |
| proof_kind_of_str "x" = Isar_Proof_wegen_Prover_Flop |
50311 | 304 |
|
305 |
(* FIXME: Here a "Graph.update_node" function would be useful *) |
|
50610 | 306 |
fun update_access_graph_node (name, kind) = |
50311 | 307 |
Graph.default_node (name, Isar_Proof) |
308 |
#> kind <> Isar_Proof ? Graph.map_node name (K kind) |
|
309 |
||
310 |
fun try_graph ctxt when def f = |
|
311 |
f () |
|
312 |
handle Graph.CYCLES (cycle :: _) => |
|
313 |
(trace_msg ctxt (fn () => |
|
314 |
"Cycle involving " ^ commas cycle ^ " when " ^ when); def) |
|
315 |
| Graph.DUP name => |
|
316 |
(trace_msg ctxt (fn () => |
|
317 |
"Duplicate fact " ^ quote name ^ " when " ^ when); def) |
|
318 |
| Graph.UNDEF name => |
|
319 |
(trace_msg ctxt (fn () => |
|
320 |
"Unknown fact " ^ quote name ^ " when " ^ when); def) |
|
321 |
| exn => |
|
322 |
if Exn.is_interrupt exn then |
|
323 |
reraise exn |
|
324 |
else |
|
325 |
(trace_msg ctxt (fn () => |
|
326 |
"Internal error when " ^ when ^ ":\n" ^ |
|
327 |
ML_Compiler.exn_message exn); def) |
|
328 |
||
329 |
fun graph_info G = |
|
330 |
string_of_int (length (Graph.keys G)) ^ " node(s), " ^ |
|
331 |
string_of_int (fold (Integer.add o length o snd) (Graph.dest G) 0) ^ |
|
332 |
" edge(s), " ^ |
|
333 |
string_of_int (length (Graph.minimals G)) ^ " minimal, " ^ |
|
334 |
string_of_int (length (Graph.maximals G)) ^ " maximal" |
|
335 |
||
50610 | 336 |
type mash_state = {access_G : unit Graph.T, dirty : string list option} |
50311 | 337 |
|
50610 | 338 |
val empty_state = {access_G = Graph.empty, dirty = SOME []} |
50311 | 339 |
|
340 |
local |
|
341 |
||
51025 | 342 |
val version = "*** MaSh version 20130207a ***" |
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
343 |
|
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
344 |
exception Too_New of unit |
50311 | 345 |
|
346 |
fun extract_node line = |
|
347 |
case space_explode ":" line of |
|
348 |
[head, parents] => |
|
349 |
(case space_explode " " head of |
|
350 |
[kind, name] => |
|
50826 | 351 |
SOME (unencode_str name, unencode_strs parents, |
50311 | 352 |
try proof_kind_of_str kind |> the_default Isar_Proof) |
353 |
| _ => NONE) |
|
354 |
| _ => NONE |
|
355 |
||
356 |
fun load _ (state as (true, _)) = state |
|
357 |
| load ctxt _ = |
|
358 |
let val path = mash_state_file () in |
|
359 |
(true, |
|
360 |
case try File.read_lines path of |
|
361 |
SOME (version' :: node_lines) => |
|
362 |
let |
|
363 |
fun add_edge_to name parent = |
|
364 |
Graph.default_node (parent, Isar_Proof) |
|
365 |
#> Graph.add_edge (parent, name) |
|
366 |
fun add_node line = |
|
367 |
case extract_node line of |
|
368 |
NONE => I (* shouldn't happen *) |
|
369 |
| SOME (name, parents, kind) => |
|
50610 | 370 |
update_access_graph_node (name, kind) |
50311 | 371 |
#> fold (add_edge_to name) parents |
50610 | 372 |
val access_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
|
373 |
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
|
374 |
EQUAL => |
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
375 |
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
|
376 |
fold add_node node_lines Graph.empty) |
50860 | 377 |
| LESS => |
378 |
(MaSh.unlearn ctxt; Graph.empty) (* can't parse old file *) |
|
50357
187ae76a1757
more robustness in the face of MaSh format changes -- don't overwrite new versions with old versions
blanchet
parents:
50356
diff
changeset
|
379 |
| GREATER => raise Too_New () |
50311 | 380 |
in |
381 |
trace_msg ctxt (fn () => |
|
50610 | 382 |
"Loaded fact graph (" ^ graph_info access_G ^ ")"); |
383 |
{access_G = access_G, dirty = SOME []} |
|
50311 | 384 |
end |
385 |
| _ => empty_state) |
|
386 |
end |
|
387 |
||
388 |
fun save _ (state as {dirty = SOME [], ...}) = state |
|
50610 | 389 |
| save ctxt {access_G, dirty} = |
50311 | 390 |
let |
391 |
fun str_of_entry (name, parents, kind) = |
|
50826 | 392 |
str_of_proof_kind kind ^ " " ^ encode_str name ^ ": " ^ |
393 |
encode_strs parents ^ "\n" |
|
50311 | 394 |
fun append_entry (name, (kind, (parents, _))) = |
395 |
cons (name, Graph.Keys.dest parents, kind) |
|
396 |
val (banner, entries) = |
|
397 |
case dirty of |
|
398 |
SOME names => |
|
50610 | 399 |
(NONE, fold (append_entry o Graph.get_entry access_G) names []) |
400 |
| NONE => (SOME (version ^ "\n"), Graph.fold append_entry access_G []) |
|
50311 | 401 |
in |
50335
b17b05c8d4a4
proper quoting of paths in MaSh shell script, take 2 (cf. b00eeb8e352e)
blanchet
parents:
50319
diff
changeset
|
402 |
write_file banner (entries, str_of_entry) (mash_state_file ()); |
50311 | 403 |
trace_msg ctxt (fn () => |
50610 | 404 |
"Saved fact graph (" ^ graph_info access_G ^ |
50311 | 405 |
(case dirty of |
406 |
SOME dirty => |
|
407 |
"; " ^ string_of_int (length dirty) ^ " dirty fact(s)" |
|
408 |
| _ => "") ^ ")"); |
|
50610 | 409 |
{access_G = access_G, dirty = SOME []} |
50311 | 410 |
end |
411 |
||
412 |
val global_state = |
|
413 |
Synchronized.var "Sledgehammer_MaSh.global_state" (false, empty_state) |
|
414 |
||
415 |
in |
|
416 |
||
50570 | 417 |
fun map_state ctxt f = |
50311 | 418 |
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
|
419 |
handle Too_New () => () |
50311 | 420 |
|
50570 | 421 |
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
|
422 |
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
|
423 |
(perhaps (try (load ctxt)) #> `snd #>> f) |
50311 | 424 |
|
50570 | 425 |
fun clear_state ctxt = |
50311 | 426 |
Synchronized.change global_state (fn _ => |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
427 |
(MaSh.unlearn ctxt; (* also removes the state file *) |
50311 | 428 |
(true, empty_state))) |
429 |
||
430 |
end |
|
431 |
||
50570 | 432 |
val mash_unlearn = clear_state |
433 |
||
50311 | 434 |
|
435 |
(*** Isabelle helpers ***) |
|
436 |
||
50722 | 437 |
val local_prefix = "local" ^ Long_Name.separator |
48378 | 438 |
|
50722 | 439 |
fun elided_backquote_thm threshold th = |
440 |
elide_string threshold |
|
441 |
(backquote_thm (Proof_Context.init_global (Thm.theory_of_thm th)) th) |
|
48378 | 442 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
443 |
val thy_name_of_thm = Context.theory_name o Thm.theory_of_thm |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
444 |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
445 |
fun nickname_of_thm th = |
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
446 |
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
|
447 |
let val hint = Thm.get_name_hint th in |
50722 | 448 |
(* There must be a better way to detect local facts. *) |
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
449 |
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
|
450 |
SOME suf => |
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
451 |
thy_name_of_thm th ^ Long_Name.separator ^ suf ^ |
50732 | 452 |
Long_Name.separator ^ elided_backquote_thm 50 th |
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
453 |
| 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
|
454 |
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
|
455 |
else |
50722 | 456 |
elided_backquote_thm 200 th |
48378 | 457 |
|
51134 | 458 |
fun find_suggested_facts ctxt facts = |
48330 | 459 |
let |
51134 | 460 |
fun add (fact as (_, th)) = Symtab.default (nickname_of_thm th, fact) |
461 |
val tab = fold add facts Symtab.empty |
|
462 |
fun lookup nick = |
|
463 |
Symtab.lookup tab nick |
|
464 |
|> tap (fn NONE => trace_msg ctxt (fn () => "Cannot find " ^ quote nick) |
|
465 |
| _ => ()) |
|
466 |
in map_filter lookup end |
|
48311 | 467 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
468 |
fun scaled_avg [] = 0 |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
469 |
| scaled_avg xs = |
48407 | 470 |
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
|
471 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
472 |
fun avg [] = 0.0 |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
473 |
| 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
|
474 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
475 |
fun normalize_scores _ [] = [] |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
476 |
| normalize_scores max_facts xs = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
477 |
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
|
478 |
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
|
479 |
end |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
480 |
|
50814 | 481 |
fun mesh_facts _ max_facts [(_, (sels, unks))] = |
48406 | 482 |
map fst (take max_facts sels) @ take (max_facts - length sels) unks |
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
483 |
| mesh_facts fact_eq max_facts mess = |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
484 |
let |
51029 | 485 |
val mess = mess |> map (apsnd (apfst (normalize_scores max_facts))) |
486 |
fun score_in fact (global_weight, (sels, unks)) = |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
487 |
let |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
488 |
fun score_at j = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
489 |
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
|
490 |
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
|
491 |
| NONE => NONE |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
492 |
in |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
493 |
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
|
494 |
~1 => (case find_index (curry fact_eq fact) unks of |
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
495 |
~1 => SOME 0.0 |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
496 |
| _ => NONE) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
497 |
| rank => score_at rank |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
498 |
end |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
499 |
fun weight_of fact = mess |> map_filter (score_in fact) |> scaled_avg |
48406 | 500 |
val facts = |
51029 | 501 |
fold (union fact_eq o map fst o take max_facts o fst o snd) mess [] |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
502 |
in |
48406 | 503 |
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
|
504 |
|> map snd |> take max_facts |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
505 |
end |
48312 | 506 |
|
50874
2eae85887282
adjust weights -- sorts are prolific, so tone them down even more
blanchet
parents:
50869
diff
changeset
|
507 |
fun thy_feature_of s = ("y" ^ s, 8.0 (* FUDGE *)) |
2eae85887282
adjust weights -- sorts are prolific, so tone them down even more
blanchet
parents:
50869
diff
changeset
|
508 |
fun const_feature_of s = ("c" ^ s, 32.0 (* FUDGE *)) |
2eae85887282
adjust weights -- sorts are prolific, so tone them down even more
blanchet
parents:
50869
diff
changeset
|
509 |
fun free_feature_of s = ("f" ^ s, 40.0 (* FUDGE *)) |
2eae85887282
adjust weights -- sorts are prolific, so tone them down even more
blanchet
parents:
50869
diff
changeset
|
510 |
fun type_feature_of s = ("t" ^ s, 4.0 (* FUDGE *)) |
50584
4fff0898cc0e
tuned weights -- keep same relative values, but use 1.0 as the least weight
blanchet
parents:
50583
diff
changeset
|
511 |
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
|
512 |
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
|
513 |
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
|
514 |
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
|
515 |
val skos_feature = ("skos", 2.0 (* FUDGE *)) |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
516 |
|
51136 | 517 |
(* The following "crude" functions should be progressively phased out, since |
518 |
they create visibility edges that do not exist in Isabelle, resulting in |
|
519 |
failed lookups later on. *) |
|
520 |
||
51135 | 521 |
fun crude_theory_ord p = |
50722 | 522 |
if Theory.subthy p then |
523 |
if Theory.eq_thy p then EQUAL else LESS |
|
48324 | 524 |
else if Theory.subthy (swap p) then |
525 |
GREATER |
|
526 |
else case int_ord (pairself (length o Theory.ancestors_of) p) of |
|
527 |
EQUAL => string_ord (pairself Context.theory_name p) |
|
528 |
| order => order |
|
529 |
||
51135 | 530 |
fun crude_thm_ord p = |
531 |
case crude_theory_ord (pairself theory_of_thm p) of |
|
50359
da395f0e7dea
tweaked order of theorems to avoid forward dependencies (MaSh)
blanchet
parents:
50357
diff
changeset
|
532 |
EQUAL => |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
533 |
let val q = pairself nickname_of_thm p in |
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
534 |
(* Hack to put "xxx_def" before "xxxI" and "xxxE" *) |
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
535 |
case bool_ord (pairself (String.isSuffix "_def") (swap q)) of |
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
536 |
EQUAL => string_ord q |
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
537 |
| ord => ord |
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
538 |
end |
50359
da395f0e7dea
tweaked order of theorems to avoid forward dependencies (MaSh)
blanchet
parents:
50357
diff
changeset
|
539 |
| ord => ord |
48324 | 540 |
|
51136 | 541 |
val thm_less_eq = Theory.subthy o pairself theory_of_thm |
542 |
fun thm_less p = thm_less_eq p andalso not (thm_less_eq (swap p)) |
|
543 |
||
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
544 |
val freezeT = Type.legacy_freeze_type |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
545 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
546 |
fun freeze (t $ u) = freeze t $ freeze u |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
547 |
| 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
|
548 |
| freeze (Var ((s, _), T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
549 |
| freeze (Const (s, T)) = Const (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
550 |
| freeze (Free (s, T)) = Free (s, freezeT T) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
551 |
| freeze t = t |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
552 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
553 |
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
|
554 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
555 |
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
|
556 |
let |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
557 |
val problem = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
558 |
{state = Proof.init ctxt, goal = goal, subgoal = 1, subgoal_count = 1, |
51010 | 559 |
factss = [("", facts)]} |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
560 |
in |
50668 | 561 |
get_minimizing_isar_prover ctxt MaSh (K (K ())) prover params (K (K (K ""))) |
562 |
problem |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
563 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
564 |
|
48326 | 565 |
val bad_types = [@{type_name prop}, @{type_name bool}, @{type_name fun}] |
566 |
||
48398 | 567 |
val logical_consts = |
568 |
[@{const_name prop}, @{const_name Pure.conjunction}] @ atp_logical_consts |
|
569 |
||
50585 | 570 |
val max_pattern_breadth = 10 |
571 |
||
50841
087e3c531e86
honor filtering out of arguments for built-in constants (e.g. representation of numerals)
blanchet
parents:
50840
diff
changeset
|
572 |
fun term_features_of ctxt prover thy_name term_max_depth type_max_depth ts = |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
573 |
let |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
574 |
val thy = Proof_Context.theory_of ctxt |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
575 |
fun is_built_in (x as (s, _)) args = |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
576 |
if member (op =) logical_consts s then (true, args) |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
577 |
else is_built_in_const_for_prover ctxt prover x args |
50393 | 578 |
val fixes = map snd (Variable.dest_fixes ctxt) |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
579 |
val classes = Sign.classes_of thy |
48304 | 580 |
fun add_classes @{sort type} = I |
50392
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
581 |
| add_classes S = |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
582 |
fold (`(Sorts.super_classes classes) |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
583 |
#> swap #> op :: |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
584 |
#> subtract (op =) @{sort type} |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
585 |
#> map class_feature_of |
190053ee24ed
expand type classes into their ancestors for MaSh
blanchet
parents:
50391
diff
changeset
|
586 |
#> union (op = o pairself fst)) S |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
587 |
fun do_add_type (Type (s, Ts)) = |
50356 | 588 |
(not (member (op =) bad_types s) |
589 |
? insert (op = o pairself fst) (type_feature_of s)) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
590 |
#> fold do_add_type Ts |
48304 | 591 |
| do_add_type (TFree (_, S)) = add_classes S |
592 |
| do_add_type (TVar (_, S)) = add_classes S |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
593 |
fun add_type T = type_max_depth >= 0 ? do_add_type T |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
594 |
fun patternify_term _ 0 _ = [] |
50339
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
595 |
| patternify_term args _ (Const (x as (s, _))) = |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
596 |
if fst (is_built_in x args) then [] else [s] |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
597 |
| patternify_term _ depth (Free (s, _)) = |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
598 |
if depth = term_max_depth andalso member (op =) fixes s then |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
599 |
[thy_name ^ Long_Name.separator ^ s] |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
600 |
else |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
601 |
[] |
50339
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
602 |
| patternify_term args depth (t $ u) = |
d8dae91f3107
MaSh improvements: deeper patterns + more respect for chained facts
blanchet
parents:
50338
diff
changeset
|
603 |
let |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
604 |
val ps = |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
605 |
take max_pattern_breadth (patternify_term (u :: args) depth t) |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
606 |
val qs = |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
607 |
take max_pattern_breadth ("" :: patternify_term [] (depth - 1) u) |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
608 |
in map_product (fn p => fn "" => p | q => p ^ "(" ^ q ^ ")") ps qs end |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
609 |
| patternify_term _ _ _ = [] |
50393 | 610 |
fun add_term_pattern feature_of = |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
611 |
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
|
612 |
fun add_term_patterns _ 0 _ = I |
50393 | 613 |
| add_term_patterns feature_of depth t = |
614 |
add_term_pattern feature_of depth t |
|
615 |
#> add_term_patterns feature_of (depth - 1) t |
|
616 |
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
|
617 |
fun add_patterns t = |
50857
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
618 |
case strip_comb t of |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
619 |
(Const (x as (_, T)), args) => |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
620 |
let val (built_in, args) = is_built_in x args in |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
621 |
(not built_in ? add_term const_feature_of t) |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
622 |
#> add_type T |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
623 |
#> fold add_patterns args |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
624 |
end |
80768e28c9ee
better handlig of built-ins -- at the top-level, not in subterms
blanchet
parents:
50841
diff
changeset
|
625 |
| (head, args) => |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
626 |
(case head of |
50393 | 627 |
Const (_, T) => add_term const_feature_of t #> add_type T |
628 |
| 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
|
629 |
| Var (_, T) => add_type T |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
630 |
| Abs (_, T, body) => add_type T #> add_patterns body |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
631 |
| _ => I) |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
632 |
#> fold add_patterns args |
48326 | 633 |
in [] |> fold add_patterns ts end |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
634 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
635 |
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
|
636 |
|
50583
681edd111e9b
really honor pattern depth, and use 2 by default
blanchet
parents:
50570
diff
changeset
|
637 |
val term_max_depth = 2 |
681edd111e9b
really honor pattern depth, and use 2 by default
blanchet
parents:
50570
diff
changeset
|
638 |
val type_max_depth = 2 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
639 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
640 |
(* TODO: Generate type classes for types? *) |
48385 | 641 |
fun features_of ctxt prover thy (scope, status) ts = |
50393 | 642 |
let val thy_name = Context.theory_name thy in |
643 |
thy_feature_of thy_name :: |
|
50841
087e3c531e86
honor filtering out of arguments for built-in constants (e.g. representation of numerals)
blanchet
parents:
50840
diff
changeset
|
644 |
term_features_of ctxt prover thy_name term_max_depth type_max_depth ts |
50393 | 645 |
|> status <> General ? cons (status_feature_of status) |
646 |
|> scope <> Global ? cons local_feature |
|
647 |
|> exists (not o is_lambda_free) ts ? cons lams_feature |
|
648 |
|> exists (exists_Const is_exists) ts ? cons skos_feature |
|
649 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
650 |
|
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
|
651 |
(* 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
|
652 |
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
|
653 |
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
|
654 |
|
51133 | 655 |
val prover_default_max_facts = 50 |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
656 |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
657 |
(* "type_definition_xxx" facts are characterized by their use of "CollectI". *) |
50755 | 658 |
val typedef_dep = nickname_of_thm @{thm CollectI} |
659 |
(* Mysterious parts of the class machinery create lots of proofs that refer |
|
660 |
exclusively to "someI_e" (and to some internal constructions). *) |
|
661 |
val class_some_dep = nickname_of_thm @{thm someI_ex} |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
662 |
|
50828 | 663 |
val fundef_ths = |
664 |
@{thms fundef_ex1_existence fundef_ex1_uniqueness fundef_ex1_iff |
|
665 |
fundef_default_value} |
|
666 |
|> map nickname_of_thm |
|
667 |
||
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
668 |
(* "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
|
669 |
val typedef_ths = |
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
670 |
@{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
|
671 |
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
|
672 |
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
|
673 |
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
|
674 |
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
|
675 |
type_definition.Abs_image} |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
676 |
|> map nickname_of_thm |
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
677 |
|
48441 | 678 |
fun is_size_def [dep] th = |
679 |
(case first_field ".recs" dep of |
|
680 |
SOME (pref, _) => |
|
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
681 |
(case first_field ".size" (nickname_of_thm th) of |
48441 | 682 |
SOME (pref', _) => pref = pref' |
683 |
| NONE => false) |
|
684 |
| NONE => false) |
|
685 |
| is_size_def _ _ = false |
|
686 |
||
51177 | 687 |
fun trim_dependencies deps = |
50755 | 688 |
if length deps > max_dependencies then NONE else SOME deps |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
689 |
|
50755 | 690 |
fun isar_dependencies_of name_tabs th = |
51020 | 691 |
let val deps = thms_in_proof (SOME name_tabs) th in |
50828 | 692 |
if deps = [typedef_dep] orelse |
693 |
deps = [class_some_dep] orelse |
|
694 |
exists (member (op =) fundef_ths) deps orelse |
|
695 |
exists (member (op =) typedef_ths) deps orelse |
|
696 |
is_size_def deps th then |
|
50755 | 697 |
[] |
698 |
else |
|
699 |
deps |
|
700 |
end |
|
48404 | 701 |
|
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
|
702 |
fun prover_dependencies_of ctxt (params as {verbose, max_facts, ...}) prover |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
703 |
auto_level facts name_tabs th = |
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
704 |
case isar_dependencies_of name_tabs th of |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
705 |
[] => (false, []) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
706 |
| isar_deps => |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
707 |
let |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
708 |
val thy = Proof_Context.theory_of ctxt |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
709 |
val goal = goal_of_thm thy th |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
710 |
val (_, hyp_ts, concl_t) = ATP_Util.strip_subgoal ctxt goal 1 |
51136 | 711 |
val facts = facts |> filter (fn (_, th') => thm_less (th', th)) |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
712 |
fun nickify ((_, stature), th) = ((nickname_of_thm th, stature), th) |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
713 |
fun is_dep dep (_, th) = nickname_of_thm th = dep |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
714 |
fun add_isar_dep facts dep accum = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
715 |
if exists (is_dep dep) accum then |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
716 |
accum |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
717 |
else case find_first (is_dep dep) facts of |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
718 |
SOME ((_, status), th) => accum @ [(("", status), th)] |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
719 |
| NONE => accum (* shouldn't happen *) |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
720 |
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
|
721 |
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
|
722 |
|> mepo_suggested_facts ctxt params prover |
51133 | 723 |
(max_facts |> the_default prover_default_max_facts) NONE hyp_ts |
724 |
concl_t |
|
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
725 |
|> fold (add_isar_dep facts) isar_deps |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
726 |
|> map nickify |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
727 |
in |
48404 | 728 |
if verbose andalso auto_level = 0 then |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
729 |
let val num_facts = length facts in |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
730 |
"MaSh: " ^ quote prover ^ " on " ^ quote (nickname_of_thm th) ^ |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
731 |
" 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
|
732 |
"." |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
733 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
734 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
735 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
736 |
(); |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
737 |
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
|
738 |
{outcome = NONE, used_facts, ...} => |
48404 | 739 |
(if verbose andalso auto_level = 0 then |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
740 |
let val num_facts = length used_facts in |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
741 |
"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
|
742 |
plural_s num_facts ^ "." |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
743 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
744 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
745 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
746 |
(); |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
747 |
(true, map fst used_facts)) |
48665 | 748 |
| _ => (false, isar_deps) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
749 |
end |
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
750 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
751 |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
752 |
(*** High-level communication with MaSh ***) |
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
753 |
|
51176 | 754 |
fun maximal_wrt_graph G keys = |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
755 |
let |
51176 | 756 |
val tab = Symtab.empty |> fold (fn name => Symtab.default (name, ())) keys |
48407 | 757 |
fun insert_new seen name = |
758 |
not (Symtab.defined seen name) ? insert (op =) name |
|
51177 | 759 |
fun num_keys keys = Graph.Keys.fold (K (Integer.add 1)) keys 0 |
48407 | 760 |
fun find_maxes _ (maxs, []) = map snd maxs |
761 |
| find_maxes seen (maxs, new :: news) = |
|
762 |
find_maxes |
|
51176 | 763 |
(seen |> num_keys (Graph.imm_succs G new) > 1 |
48407 | 764 |
? Symtab.default (new, ())) |
765 |
(if Symtab.defined tab new then |
|
766 |
let |
|
51176 | 767 |
val newp = Graph.all_preds G [new] |
48407 | 768 |
fun is_ancestor x yp = member (op =) yp x |
769 |
val maxs = |
|
770 |
maxs |> filter (fn (_, max) => not (is_ancestor max newp)) |
|
771 |
in |
|
772 |
if exists (is_ancestor new o fst) maxs then |
|
773 |
(maxs, news) |
|
774 |
else |
|
775 |
((newp, new) |
|
776 |
:: filter_out (fn (_, max) => is_ancestor max newp) maxs, |
|
777 |
news) |
|
778 |
end |
|
779 |
else |
|
780 |
(maxs, Graph.Keys.fold (insert_new seen) |
|
51176 | 781 |
(Graph.imm_preds G new) news)) |
782 |
in find_maxes Symtab.empty ([], Graph.maximals G) end |
|
783 |
||
784 |
fun maximal_wrt_access_graph access_G = |
|
785 |
map (nickname_of_thm o snd) |
|
786 |
#> maximal_wrt_graph access_G |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
787 |
|
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
788 |
fun is_fact_in_graph access_G get_th fact = |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
789 |
can (Graph.get_node access_G) (nickname_of_thm (get_th fact)) |
48320
891a24a48155
improved meshing of MaSh and Meng--Paulson if some MaSh suggestions are cut-off (the common case)
blanchet
parents:
48319
diff
changeset
|
790 |
|
50985 | 791 |
(* FUDGE *) |
792 |
fun weight_of_mepo_fact rank = |
|
793 |
Math.pow (0.62, log2 (Real.fromInt (rank + 1))) |
|
794 |
||
795 |
fun weight_mepo_facts facts = |
|
796 |
facts ~~ map weight_of_mepo_fact (0 upto length facts - 1) |
|
797 |
||
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
798 |
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
|
799 |
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
|
800 |
|
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
801 |
(* FUDGE *) |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
802 |
fun weight_of_proximity_fact rank = |
50398 | 803 |
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
|
804 |
|
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
805 |
fun weight_proximity_facts facts = |
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
806 |
facts ~~ map weight_of_proximity_fact (0 upto length facts - 1) |
50382 | 807 |
|
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
808 |
val max_proximity_facts = 100 |
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
809 |
|
51134 | 810 |
fun find_mash_suggestions _ _ [] _ _ raw_unknown = ([], raw_unknown) |
811 |
| find_mash_suggestions ctxt max_facts suggs facts chained raw_unknown = |
|
50952 | 812 |
let |
51134 | 813 |
val raw_mash = find_suggested_facts ctxt facts suggs |
50952 | 814 |
val unknown_chained = |
815 |
inter (Thm.eq_thm_prop o pairself snd) chained raw_unknown |
|
816 |
val proximity = |
|
51135 | 817 |
facts |> sort (crude_thm_ord o pairself snd o swap) |
50952 | 818 |
|> take max_proximity_facts |
819 |
val mess = |
|
820 |
[(0.90 (* FUDGE *), (map (rpair 1.0) unknown_chained, [])), |
|
821 |
(0.08 (* FUDGE *), (weight_raw_mash_facts raw_mash, raw_unknown)), |
|
822 |
(0.02 (* FUDGE *), (weight_proximity_facts proximity, []))] |
|
823 |
val unknown = |
|
824 |
raw_unknown |
|
825 |
|> fold (subtract (Thm.eq_thm_prop o pairself snd)) |
|
826 |
[unknown_chained, proximity] |
|
827 |
in (mesh_facts (Thm.eq_thm_prop o pairself snd) max_facts mess, unknown) end |
|
50412 | 828 |
|
50858 | 829 |
fun mash_suggested_facts ctxt ({overlord, learn, ...} : params) prover max_facts |
830 |
hyp_ts concl_t facts = |
|
48301 | 831 |
let |
48302 | 832 |
val thy = Proof_Context.theory_of ctxt |
50826 | 833 |
val chained = facts |> filter (fn ((_, (scope, _)), _) => scope = Chained) |
50610 | 834 |
val (access_G, suggs) = |
835 |
peek_state ctxt (fn {access_G, ...} => |
|
836 |
if Graph.is_empty access_G then |
|
837 |
(access_G, []) |
|
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
838 |
else |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
839 |
let |
51176 | 840 |
val parents = maximal_wrt_access_graph access_G facts |
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
841 |
val feats = |
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
842 |
features_of ctxt prover thy (Local, General) (concl_t :: hyp_ts) |
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
843 |
val hints = |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
844 |
chained |> filter (is_fact_in_graph access_G snd) |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
845 |
|> map (nickname_of_thm o snd) |
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
846 |
in |
50969 | 847 |
(access_G, MaSh.query ctxt overlord learn max_facts |
848 |
(parents, feats, hints)) |
|
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
849 |
end) |
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
850 |
val unknown = facts |> filter_out (is_fact_in_graph access_G snd) |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
851 |
in |
51134 | 852 |
find_mash_suggestions ctxt max_facts suggs facts chained unknown |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
853 |
|> pairself (map fact_of_raw_fact) |
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
854 |
end |
48249 | 855 |
|
50631 | 856 |
fun learn_wrt_access_graph ctxt (name, parents, feats, deps) (learns, graph) = |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
857 |
let |
50631 | 858 |
fun maybe_learn_from from (accum as (parents, graph)) = |
48321 | 859 |
try_graph ctxt "updating graph" accum (fn () => |
860 |
(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
|
861 |
val graph = graph |> Graph.default_node (name, Isar_Proof) |
50631 | 862 |
val (parents, graph) = ([], graph) |> fold maybe_learn_from parents |
863 |
val (deps, _) = ([], graph) |> fold maybe_learn_from deps |
|
864 |
in ((name, parents, feats, deps) :: learns, graph) end |
|
48306 | 865 |
|
50631 | 866 |
fun relearn_wrt_access_graph ctxt (name, deps) (relearns, graph) = |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
867 |
let |
50631 | 868 |
fun maybe_relearn_from from (accum as (parents, graph)) = |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
869 |
try_graph ctxt "updating graph" accum (fn () => |
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
870 |
(from :: parents, Graph.add_edge_acyclic (from, name) graph)) |
50610 | 871 |
val graph = graph |> update_access_graph_node (name, Automatic_Proof) |
50631 | 872 |
val (deps, _) = ([], graph) |> fold maybe_relearn_from deps |
873 |
in ((name, deps) :: relearns, graph) end |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
874 |
|
50610 | 875 |
fun flop_wrt_access_graph name = |
876 |
update_access_graph_node (name, Isar_Proof_wegen_Prover_Flop) |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
877 |
|
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
|
878 |
val learn_timeout_slack = 2.0 |
48318 | 879 |
|
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
|
880 |
fun launch_thread timeout task = |
48383 | 881 |
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
|
882 |
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
|
883 |
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
|
884 |
val death_time = Time.+ (birth_time, hard_timeout) |
48442 | 885 |
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
|
886 |
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
|
887 |
|
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
|
888 |
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
|
889 |
used_ths = |
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
890 |
launch_thread (timeout |> the_default one_day) (fn () => |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
891 |
let |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
892 |
val thy = Proof_Context.theory_of ctxt |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
893 |
val name = freshish_name () |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
894 |
val feats = features_of ctxt prover thy (Local, General) [t] |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
895 |
in |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
896 |
peek_state ctxt (fn {access_G, ...} => |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
897 |
let |
51176 | 898 |
val parents = maximal_wrt_access_graph access_G facts |
50861
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
899 |
val deps = |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
900 |
used_ths |> filter (is_fact_in_graph access_G I) |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
901 |
|> map nickname_of_thm |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
902 |
in |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
903 |
MaSh.learn ctxt overlord [(name, parents, feats, deps)] |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
904 |
end); |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
905 |
(true, "") |
fa4253914e98
honor unknown chained in MaSh and a few other tweaks
blanchet
parents:
50860
diff
changeset
|
906 |
end) |
48383 | 907 |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
908 |
(* In the following functions, chunks are risers w.r.t. "thm_less_eq". *) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
909 |
|
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
910 |
fun chunks_and_parents_for chunks th = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
911 |
let |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
912 |
fun insert_parent new parents = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
913 |
let val parents = parents |> filter_out (fn p => thm_less_eq (p, new)) in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
914 |
parents |> forall (fn p => not (thm_less_eq (new, p))) parents |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
915 |
? cons new |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
916 |
end |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
917 |
fun rechunk seen (rest as th' :: ths) = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
918 |
if thm_less_eq (th', th) then (rev seen, rest) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
919 |
else rechunk (th' :: seen) ths |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
920 |
fun do_chunk [] accum = accum |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
921 |
| do_chunk (chunk as hd_chunk :: _) (chunks, parents) = |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
922 |
if thm_less_eq (hd_chunk, th) then |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
923 |
(chunk :: chunks, insert_parent hd_chunk parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
924 |
else if thm_less_eq (List.last chunk, th) then |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
925 |
let val (front, back as hd_back :: _) = rechunk [] chunk in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
926 |
(front :: back :: chunks, insert_parent hd_back parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
927 |
end |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
928 |
else |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
929 |
(chunk :: chunks, parents) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
930 |
in |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
931 |
fold_rev do_chunk chunks ([], []) |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
932 |
|>> cons [] |
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
933 |
||> map nickname_of_thm |
51181
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
934 |
end |
d0fa18638478
implement (more) accurate computation of parents
blanchet
parents:
51180
diff
changeset
|
935 |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
936 |
fun attach_parents_to_facts _ [] = [] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
937 |
| attach_parents_to_facts old_facts (facts as (_, th) :: _) = |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
938 |
let |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
939 |
fun do_facts _ [] = [] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
940 |
| do_facts (_, parents) [fact] = [(parents, fact)] |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
941 |
| do_facts (chunks, parents) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
942 |
((fact as (_, th)) :: (facts as (_, th') :: _)) = |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
943 |
let |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
944 |
val chunks = app_hd (cons th) chunks |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
945 |
val chunks_and_parents' = |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
946 |
if thm_less_eq (th, th') andalso |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
947 |
thy_name_of_thm th = thy_name_of_thm th' then |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
948 |
(chunks, [nickname_of_thm th]) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
949 |
else |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
950 |
chunks_and_parents_for chunks th' |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
951 |
in (parents, fact) :: do_facts chunks_and_parents' facts end |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
952 |
in |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
953 |
old_facts @ facts |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
954 |
|> do_facts (chunks_and_parents_for [[]] th) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
955 |
|> drop (length old_facts) |
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
956 |
end |
51177 | 957 |
|
50450
358b6020f8b6
generalized notion of active area, where sendback is just one application;
wenzelm
parents:
50440
diff
changeset
|
958 |
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
|
959 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
960 |
val commit_timeout = seconds 30.0 |
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
961 |
|
50485
3c6ac2da2f45
merge aliased theorems in MaSh dependencies, modulo symmetry of equality
blanchet
parents:
50484
diff
changeset
|
962 |
(* The timeout is understood in a very relaxed fashion. *) |
48404 | 963 |
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
|
964 |
auto_level run_prover learn_timeout facts = |
48304 | 965 |
let |
48318 | 966 |
val timer = Timer.startRealTimer () |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
967 |
fun next_commit_time () = |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
968 |
Time.+ (Timer.checkRealTimer timer, commit_timeout) |
50610 | 969 |
val {access_G, ...} = peek_state ctxt I |
51177 | 970 |
val is_in_access_G = is_fact_in_graph access_G snd |
971 |
val no_new_facts = forall is_in_access_G facts |
|
48308 | 972 |
in |
51177 | 973 |
if no_new_facts andalso not run_prover then |
48404 | 974 |
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
|
975 |
"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
|
976 |
" 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
|
977 |
(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
|
978 |
"\n\nHint: Try " ^ sendback learn_proverN ^ |
50751 | 979 |
" to learn from an automatic prover." |
48404 | 980 |
else |
981 |
"") |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
982 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
983 |
"" |
48308 | 984 |
else |
48304 | 985 |
let |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
986 |
val name_tabs = build_name_tables nickname_of_thm facts |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
987 |
fun deps_of status th = |
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
988 |
if status = Non_Rec_Def orelse status = Rec_Def then |
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
989 |
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
|
990 |
else if run_prover then |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
991 |
prover_dependencies_of ctxt params prover auto_level facts name_tabs |
50484
8ec31bdb9d36
adopt the neutral "prover" terminology for MaSh rather than the ambiguous/wrong ATP terminology (which sometimes excludes SMT solvers)
blanchet
parents:
50450
diff
changeset
|
992 |
th |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
993 |
|> (fn (false, _) => NONE |
51177 | 994 |
| (true, deps) => trim_dependencies deps) |
48404 | 995 |
else |
50735
6b232d76cbc9
refined class handling, to prevent cycles in fact graph
blanchet
parents:
50732
diff
changeset
|
996 |
isar_dependencies_of name_tabs th |
51177 | 997 |
|> trim_dependencies |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
998 |
fun do_commit [] [] [] state = state |
50631 | 999 |
| do_commit learns relearns flops {access_G, dirty} = |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1000 |
let |
50610 | 1001 |
val was_empty = Graph.is_empty access_G |
50631 | 1002 |
val (learns, access_G) = |
1003 |
([], access_G) |> fold (learn_wrt_access_graph ctxt) learns |
|
1004 |
val (relearns, access_G) = |
|
1005 |
([], access_G) |> fold (relearn_wrt_access_graph ctxt) relearns |
|
50610 | 1006 |
val access_G = access_G |> fold flop_wrt_access_graph flops |
48699 | 1007 |
val dirty = |
50631 | 1008 |
case (was_empty, dirty, relearns) of |
1009 |
(false, SOME names, []) => SOME (map #1 learns @ names) |
|
48699 | 1010 |
| _ => NONE |
48404 | 1011 |
in |
50632
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
1012 |
MaSh.learn ctxt overlord (rev learns); |
12c097ff3241
slightly more elegant naming convention (to keep low-level and high-level APIs separated)
blanchet
parents:
50631
diff
changeset
|
1013 |
MaSh.relearn ctxt overlord relearns; |
50610 | 1014 |
{access_G = access_G, dirty = dirty} |
48404 | 1015 |
end |
50631 | 1016 |
fun commit last learns relearns flops = |
48404 | 1017 |
(if debug andalso auto_level = 0 then |
1018 |
Output.urgent_message "Committing..." |
|
1019 |
else |
|
1020 |
(); |
|
50631 | 1021 |
map_state ctxt (do_commit (rev learns) relearns flops); |
48404 | 1022 |
if not last andalso auto_level = 0 then |
50631 | 1023 |
let val num_proofs = length learns + length relearns in |
48404 | 1024 |
"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
|
1025 |
(if run_prover then "automatic" else "Isar") ^ " proof" ^ |
48404 | 1026 |
plural_s num_proofs ^ " in the last " ^ |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1027 |
string_from_time commit_timeout ^ "." |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1028 |
|> Output.urgent_message |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1029 |
end |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1030 |
else |
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1031 |
()) |
51177 | 1032 |
fun learn_new_fact _ (accum as (_, (_, _, true))) = accum |
1033 |
| learn_new_fact (parents, ((_, stature as (_, status)), th)) |
|
1034 |
(learns, (n, next_commit, _)) = |
|
48318 | 1035 |
let |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1036 |
val name = nickname_of_thm th |
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
1037 |
val feats = |
48385 | 1038 |
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
|
1039 |
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
|
1040 |
val n = n |> not (null deps) ? Integer.add 1 |
50631 | 1041 |
val learns = (name, parents, feats, deps) :: learns |
1042 |
val (learns, next_commit) = |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1043 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
50631 | 1044 |
(commit false learns [] []; ([], next_commit_time ())) |
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
1045 |
else |
50631 | 1046 |
(learns, next_commit) |
50557 | 1047 |
val timed_out = |
1048 |
case learn_timeout of |
|
1049 |
SOME timeout => Time.> (Timer.checkRealTimer timer, timeout) |
|
1050 |
| NONE => false |
|
51177 | 1051 |
in (learns, (n, next_commit, timed_out)) end |
48404 | 1052 |
val n = |
51177 | 1053 |
if no_new_facts then |
48404 | 1054 |
0 |
1055 |
else |
|
1056 |
let |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1057 |
val new_facts = |
51184
e2569dde59c8
reintroduced crucial sorting accidentally lost in 962190eab40d
blanchet
parents:
51183
diff
changeset
|
1058 |
facts |> sort (crude_thm_ord o pairself snd) |
e2569dde59c8
reintroduced crucial sorting accidentally lost in 962190eab40d
blanchet
parents:
51183
diff
changeset
|
1059 |
|> attach_parents_to_facts [] |
51177 | 1060 |
|> filter_out (is_in_access_G o snd) |
1061 |
val (learns, (n, _, _)) = |
|
1062 |
([], (0, next_commit_time (), false)) |
|
51182
962190eab40d
provide two modes for MaSh driver: linearized or real visibility
blanchet
parents:
51181
diff
changeset
|
1063 |
|> fold learn_new_fact new_facts |
50631 | 1064 |
in commit true learns [] []; n end |
48404 | 1065 |
fun relearn_old_fact _ (accum as (_, (_, _, true))) = accum |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
1066 |
| relearn_old_fact ((_, (_, status)), th) |
50631 | 1067 |
((relearns, flops), (n, next_commit, _)) = |
48404 | 1068 |
let |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1069 |
val name = nickname_of_thm th |
50631 | 1070 |
val (n, relearns, flops) = |
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
1071 |
case deps_of status th of |
50631 | 1072 |
SOME deps => (n + 1, (name, deps) :: relearns, flops) |
1073 |
| NONE => (n, relearns, name :: flops) |
|
1074 |
val (relearns, flops, next_commit) = |
|
48404 | 1075 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
50631 | 1076 |
(commit false [] relearns flops; |
1077 |
([], [], next_commit_time ())) |
|
48404 | 1078 |
else |
50631 | 1079 |
(relearns, flops, next_commit) |
50557 | 1080 |
val timed_out = |
1081 |
case learn_timeout of |
|
1082 |
SOME timeout => Time.> (Timer.checkRealTimer timer, timeout) |
|
1083 |
| NONE => false |
|
50631 | 1084 |
in ((relearns, flops), (n, next_commit, timed_out)) end |
48404 | 1085 |
val n = |
51177 | 1086 |
if not run_prover then |
48404 | 1087 |
n |
1088 |
else |
|
1089 |
let |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
1090 |
val max_isar = 1000 * max_dependencies |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1091 |
fun kind_of_proof th = |
50624
4d0997abce79
improved thm order hack, in case the default names are overridden
blanchet
parents:
50623
diff
changeset
|
1092 |
try (Graph.get_node access_G) (nickname_of_thm th) |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1093 |
|> the_default Isar_Proof |
48406 | 1094 |
fun priority_of (_, th) = |
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
1095 |
random_range 0 max_isar |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1096 |
+ (case kind_of_proof th of |
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1097 |
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
|
1098 |
| 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
|
1099 |
| Isar_Proof_wegen_Prover_Flop => max_isar) |
50754
74a6adcb96ac
also generate queries for goals with too many Isar dependencies
blanchet
parents:
50751
diff
changeset
|
1100 |
- 500 * length (isar_dependencies_of name_tabs th) |
48404 | 1101 |
val old_facts = |
51177 | 1102 |
facts |> filter is_in_access_G |
1103 |
|> map (`priority_of) |
|
1104 |
|> sort (int_ord o pairself fst) |
|
1105 |
|> map snd |
|
50631 | 1106 |
val ((relearns, flops), (n, _, _)) = |
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
1107 |
(([], []), (n, next_commit_time (), false)) |
48404 | 1108 |
|> fold relearn_old_fact old_facts |
50631 | 1109 |
in commit true [] relearns flops; n end |
48318 | 1110 |
in |
48404 | 1111 |
if verbose orelse auto_level < 2 then |
1112 |
"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
|
1113 |
(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
|
1114 |
(if verbose then |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1115 |
" 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
|
1116 |
else |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1117 |
"") ^ "." |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1118 |
else |
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1119 |
"" |
48318 | 1120 |
end |
48308 | 1121 |
end |
48304 | 1122 |
|
48404 | 1123 |
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
|
1124 |
run_prover = |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1125 |
let |
48396 | 1126 |
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
|
1127 |
val ctxt = ctxt |> Config.put instantiate_inducts false |
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
1128 |
val facts = |
48396 | 1129 |
nearly_all_facts ctxt false fact_override Symtab.empty css chained [] |
1130 |
@{prop True} |
|
48404 | 1131 |
val num_facts = length facts |
1132 |
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
|
1133 |
fun learn auto_level run_prover = |
50557 | 1134 |
mash_learn_facts ctxt params prover auto_level run_prover NONE facts |
48404 | 1135 |
|> Output.urgent_message |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1136 |
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
|
1137 |
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
|
1138 |
("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
|
1139 |
plural_s num_facts ^ " for automatic proofs (" ^ quote prover ^ |
50557 | 1140 |
(case timeout of |
1141 |
SOME timeout => " timeout: " ^ string_from_time timeout |
|
1142 |
| 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
|
1143 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1144 |
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
|
1145 |
"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
|
1146 |
\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
|
1147 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1148 |
learn 0 true) |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1149 |
else |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1150 |
("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
|
1151 |
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
|
1152 |
|> Output.urgent_message; |
72519bf5f135
simplify MaSh term patterns + add missing global facts if there aren't too many
blanchet
parents:
50339
diff
changeset
|
1153 |
learn 0 false) |
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
1154 |
end |
48249 | 1155 |
|
50311 | 1156 |
fun is_mash_enabled () = (getenv "MASH" = "yes") |
50570 | 1157 |
fun mash_can_suggest_facts ctxt = |
50610 | 1158 |
not (Graph.is_empty (#access_G (peek_state ctxt I))) |
50311 | 1159 |
|
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1160 |
(* 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
|
1161 |
later for various reasons. *) |
50965 | 1162 |
fun generous_max_facts max_facts = max_facts + Int.min (50, max_facts) |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1163 |
|
50814 | 1164 |
val mepo_weight = 0.5 |
1165 |
val mash_weight = 0.5 |
|
1166 |
||
48318 | 1167 |
(* The threshold should be large enough so that MaSh doesn't kick in for Auto |
1168 |
Sledgehammer and Try. *) |
|
1169 |
val min_secs_for_learning = 15 |
|
1170 |
||
48321 | 1171 |
fun relevant_facts ctxt (params as {learn, fact_filter, timeout, ...}) prover |
1172 |
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
|
1173 |
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
|
1174 |
error ("Unknown fact filter: " ^ quote (the fact_filter) ^ ".") |
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1175 |
else if only then |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
1176 |
let val facts = facts |> map fact_of_raw_fact in |
51010 | 1177 |
[("", facts)] |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
1178 |
end |
48321 | 1179 |
else if max_facts <= 0 orelse null facts then |
51010 | 1180 |
[("", [])] |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1181 |
else |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1182 |
let |
48327
568b3193e53e
don't include hidden facts in relevance filter + tweak MaSh learning
blanchet
parents:
48326
diff
changeset
|
1183 |
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
|
1184 |
if learn andalso not (Async_Manager.has_running_threads MaShN) andalso |
50557 | 1185 |
(timeout = NONE orelse |
1186 |
Time.toSeconds (the timeout) >= min_secs_for_learning) then |
|
1187 |
let |
|
1188 |
val timeout = Option.map (time_mult learn_timeout_slack) timeout |
|
1189 |
in |
|
1190 |
launch_thread (timeout |> the_default one_day) |
|
48404 | 1191 |
(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
|
1192 |
timeout facts)) |
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1193 |
end |
48318 | 1194 |
else |
1195 |
() |
|
51024
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1196 |
val effective_fact_filter = |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1197 |
case fact_filter of |
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
1198 |
SOME ff => (() |> ff <> mepoN ? maybe_learn; ff) |
48318 | 1199 |
| NONE => |
51024
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1200 |
if is_mash_enabled () then |
48407 | 1201 |
(maybe_learn (); |
1202 |
if mash_can_suggest_facts ctxt then meshN else mepoN) |
|
1203 |
else |
|
1204 |
mepoN |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1205 |
val add_ths = Attrib.eval_thms ctxt add |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
1206 |
fun in_add (_, th) = member Thm.eq_thm_prop add_ths th |
51003
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1207 |
fun add_and_take accepts = |
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1208 |
(case add_ths of |
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1209 |
[] => accepts |
51004
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
1210 |
| _ => (facts |> filter in_add |> map fact_of_raw_fact) @ |
5f2788c38127
distinguish raw and non-raw facts, using raw for 10 000s of facts and non-raw after selection of some hundreds
blanchet
parents:
51003
diff
changeset
|
1211 |
(accepts |> filter_out in_add)) |
48293 | 1212 |
|> take max_facts |
48406 | 1213 |
fun mepo () = |
50382 | 1214 |
mepo_suggested_facts ctxt params prover max_facts NONE hyp_ts concl_t |
1215 |
facts |
|
1216 |
|> weight_mepo_facts |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1217 |
fun mash () = |
50383
4274b25ff4e7
take proximity into account for MaSh + fix a debilitating bug in feature generation
blanchet
parents:
50382
diff
changeset
|
1218 |
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
|
1219 |
hyp_ts concl_t facts |
50440
ca99c269ca3a
don't have MaSh pretend it knows facts it doesn't know
blanchet
parents:
50438
diff
changeset
|
1220 |
|>> weight_mash_facts |
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
1221 |
val mess = |
51003
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1222 |
(* the order is important for the "case" expression below *) |
51024
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1223 |
[] |> (if effective_fact_filter <> mepoN then |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1224 |
cons (mash_weight, (mash ())) |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1225 |
else |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1226 |
I) |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1227 |
|> (if effective_fact_filter <> mashN then |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1228 |
cons (mepo_weight, (mepo (), [])) |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1229 |
else |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1230 |
I) |
51003
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1231 |
val mesh = |
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1232 |
mesh_facts (Thm.eq_thm_prop o pairself snd) max_facts mess |
198cb05fb35b
report (MeSh, MePo, MaSh) triple, to be able to use different filters in different slices
blanchet
parents:
51001
diff
changeset
|
1233 |
|> add_and_take |
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1234 |
in |
51024
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1235 |
case (fact_filter, mess) of |
98fb341d32e3
distinguish MeSh and smart -- with smart, allow combinations of MaSh, MeSh, and MePo in different slices -- and use MaSh also with SMT solvers, based on evaluation
blanchet
parents:
51020
diff
changeset
|
1236 |
(NONE, [(_, (mepo, _)), (_, (mash, _))]) => |
51010 | 1237 |
[(meshN, mesh), (mepoN, mepo |> map fst |> add_and_take), |
1238 |
(mashN, mash |> map fst |> add_and_take)] |
|
1239 |
| _ => [("", mesh)] |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1240 |
end |
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1241 |
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1242 |
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
|
1243 |
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
|
1244 |
|
48248 | 1245 |
end; |