| author | wenzelm |
| Wed, 19 Sep 2012 17:07:25 +0200 | |
| changeset 49445 | 638cefe3ee99 |
| parent 48699 | a89b83204c24 |
| child 49997 | dbbf9578e712 |
| permissions | -rw-r--r-- |
| 48380 | 1 |
(* Title: HOL/Tools/Sledgehammer/sledgehammer_mash.ML |
| 48248 | 2 |
Author: Jasmin Blanchette, TU Muenchen |
3 |
||
4 |
Sledgehammer's machine-learning-based relevance filter (MaSh). |
|
5 |
*) |
|
6 |
||
| 48381 | 7 |
signature SLEDGEHAMMER_MASH = |
| 48248 | 8 |
sig |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
9 |
type stature = ATP_Problem_Generate.stature |
|
48296
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
10 |
type fact = Sledgehammer_Fact.fact |
|
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
11 |
type fact_override = Sledgehammer_Fact.fact_override |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
12 |
type params = Sledgehammer_Provers.params |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
13 |
type relevance_fudge = Sledgehammer_Provers.relevance_fudge |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
14 |
type prover_result = Sledgehammer_Provers.prover_result |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
15 |
|
| 48308 | 16 |
val trace : bool Config.T |
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
17 |
val MaShN : string |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
18 |
val mepoN : string |
|
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
19 |
val mashN : string |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
20 |
val meshN : string |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
21 |
val unlearnN : string |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
22 |
val learn_isarN : string |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
23 |
val learn_atpN : string |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
24 |
val relearn_isarN : string |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
25 |
val relearn_atpN : string |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
26 |
val fact_filters : string list |
|
48303
f1d135d0ea69
improved MaSh string escaping and make more operations string-based
blanchet
parents:
48302
diff
changeset
|
27 |
val escape_meta : string -> string |
|
f1d135d0ea69
improved MaSh string escaping and make more operations string-based
blanchet
parents:
48302
diff
changeset
|
28 |
val escape_metas : string list -> string |
| 48308 | 29 |
val unescape_meta : string -> string |
30 |
val unescape_metas : string -> string list |
|
| 48406 | 31 |
val extract_query : string -> string * (string * real) list |
| 48378 | 32 |
val nickname_of : thm -> string |
| 48406 | 33 |
val suggested_facts : |
34 |
(string * 'a) list -> ('b * thm) list -> (('b * thm) * 'a) list
|
|
| 48321 | 35 |
val mesh_facts : |
| 48406 | 36 |
int -> ((('a * thm) * real) list * ('a * thm) list) list -> ('a * thm) list
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
37 |
val theory_ord : theory * theory -> order |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
38 |
val thm_ord : thm * thm -> order |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
39 |
val goal_of_thm : theory -> thm -> thm |
| 48321 | 40 |
val run_prover_for_mash : |
| 48318 | 41 |
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
|
42 |
val features_of : |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
43 |
Proof.context -> string -> theory -> stature -> term list -> string list |
| 48404 | 44 |
val isar_dependencies_of : unit Symtab.table -> thm -> string list option |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
45 |
val atp_dependencies_of : |
| 48404 | 46 |
Proof.context -> params -> string -> int -> fact list -> unit Symtab.table |
| 48665 | 47 |
-> thm -> bool * string list option |
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
48 |
val mash_CLEAR : Proof.context -> unit |
| 48308 | 49 |
val mash_ADD : |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
50 |
Proof.context -> bool |
|
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
51 |
-> (string * string list * string list * string list) list -> unit |
| 48404 | 52 |
val mash_REPROVE : |
53 |
Proof.context -> bool -> (string * string list) list -> unit |
|
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
54 |
val mash_QUERY : |
| 48406 | 55 |
Proof.context -> bool -> int -> string list * string list |
56 |
-> (string * real) list |
|
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
57 |
val mash_unlearn : Proof.context -> unit |
| 48318 | 58 |
val mash_could_suggest_facts : unit -> bool |
| 48321 | 59 |
val mash_can_suggest_facts : Proof.context -> bool |
| 48406 | 60 |
val mash_suggested_facts : |
| 48321 | 61 |
Proof.context -> params -> string -> int -> term list -> term |
| 48435 | 62 |
-> fact list -> (fact * real) list * fact list |
| 48383 | 63 |
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
|
64 |
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
|
65 |
-> unit |
|
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
66 |
val mash_learn : |
|
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
67 |
Proof.context -> params -> fact_override -> thm list -> bool -> unit |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
68 |
val relevant_facts : |
| 48292 | 69 |
Proof.context -> params -> string -> int -> fact_override -> term list |
|
48296
e7f01b7e244e
gracefully handle the case of empty theories when going up the accessibility chain
blanchet
parents:
48293
diff
changeset
|
70 |
-> term -> fact list -> fact list |
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
71 |
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
|
72 |
val running_learners : unit -> unit |
| 48248 | 73 |
end; |
74 |
||
| 48381 | 75 |
structure Sledgehammer_MaSh : SLEDGEHAMMER_MASH = |
| 48248 | 76 |
struct |
| 48249 | 77 |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
78 |
open ATP_Util |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
79 |
open ATP_Problem_Generate |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
80 |
open Sledgehammer_Util |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
81 |
open Sledgehammer_Fact |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
82 |
open Sledgehammer_Provers |
| 48318 | 83 |
open Sledgehammer_Minimize |
| 48381 | 84 |
open Sledgehammer_MePo |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
85 |
|
| 48308 | 86 |
val trace = |
| 48380 | 87 |
Attrib.setup_config_bool @{binding sledgehammer_mash_trace} (K false)
|
| 48308 | 88 |
fun trace_msg ctxt msg = if Config.get ctxt trace then tracing (msg ()) else () |
89 |
||
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
90 |
val MaShN = "MaSh" |
|
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
91 |
|
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
92 |
val mepoN = "mepo" |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
93 |
val mashN = "mash" |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
94 |
val meshN = "mesh" |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
95 |
|
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
96 |
val fact_filters = [meshN, mepoN, mashN] |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
97 |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
98 |
val unlearnN = "unlearn" |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
99 |
val learn_isarN = "learn_isar" |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
100 |
val learn_atpN = "learn_atp" |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
101 |
val relearn_isarN = "relearn_isar" |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
102 |
val relearn_atpN = "relearn_atp" |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
103 |
|
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
104 |
fun mash_home () = getenv "MASH_HOME" |
|
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
|
105 |
fun mash_model_dir () = |
| 48309 | 106 |
getenv "ISABELLE_HOME_USER" ^ "/mash" |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
107 |
|> tap (Isabelle_System.mkdir o Path.explode) |
|
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
|
108 |
val mash_state_dir = mash_model_dir |
| 48436 | 109 |
fun mash_state_file () = mash_state_dir () ^ "/state" |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
110 |
|
| 48330 | 111 |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
112 |
(*** Isabelle helpers ***) |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
113 |
|
| 48308 | 114 |
fun meta_char c = |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
115 |
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
|
116 |
c = #")" orelse c = #"," then |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
117 |
String.str c |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
118 |
else |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
119 |
(* fixed width, in case more digits follow *) |
|
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
120 |
"%" ^ stringN_of_int 3 (Char.ord c) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
121 |
|
| 48308 | 122 |
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
|
123 |
| unmeta_chars accum (#"%" :: d1 :: d2 :: d3 :: cs) = |
| 48308 | 124 |
(case Int.fromString (String.implode [d1, d2, d3]) of |
125 |
SOME n => unmeta_chars (Char.chr n :: accum) cs |
|
126 |
| NONE => "" (* error *)) |
|
|
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
127 |
| unmeta_chars _ (#"%" :: _) = "" (* error *) |
| 48308 | 128 |
| unmeta_chars accum (c :: cs) = unmeta_chars (c :: accum) cs |
129 |
||
130 |
val escape_meta = String.translate meta_char |
|
|
48303
f1d135d0ea69
improved MaSh string escaping and make more operations string-based
blanchet
parents:
48302
diff
changeset
|
131 |
val escape_metas = map escape_meta #> space_implode " " |
|
48315
82d6e46c673f
fixed order of accessibles + other tweaks to MaSh
blanchet
parents:
48314
diff
changeset
|
132 |
val unescape_meta = String.explode #> unmeta_chars [] |
|
82d6e46c673f
fixed order of accessibles + other tweaks to MaSh
blanchet
parents:
48314
diff
changeset
|
133 |
val unescape_metas = |
|
82d6e46c673f
fixed order of accessibles + other tweaks to MaSh
blanchet
parents:
48314
diff
changeset
|
134 |
space_explode " " #> filter_out (curry (op =) "") #> map unescape_meta |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
135 |
|
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
136 |
datatype proof_kind = Isar_Proof | ATP_Proof | Isar_Proof_wegen_ATP_Flop |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
137 |
|
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
138 |
fun str_of_proof_kind Isar_Proof = "i" |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
139 |
| str_of_proof_kind ATP_Proof = "a" |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
140 |
| str_of_proof_kind Isar_Proof_wegen_ATP_Flop = "x" |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
141 |
|
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
142 |
fun proof_kind_of_str "i" = Isar_Proof |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
143 |
| proof_kind_of_str "a" = ATP_Proof |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
144 |
| proof_kind_of_str "x" = Isar_Proof_wegen_ATP_Flop |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
145 |
|
| 48406 | 146 |
fun extract_node line = |
147 |
case space_explode ":" line of |
|
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
148 |
[head, parents] => |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
149 |
(case space_explode " " head of |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
150 |
[kind, name] => |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
151 |
SOME (unescape_meta name, unescape_metas parents, |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
152 |
try proof_kind_of_str kind |> the_default Isar_Proof) |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
153 |
| _ => NONE) |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
154 |
| _ => NONE |
| 48406 | 155 |
|
156 |
fun extract_suggestion sugg = |
|
157 |
case space_explode "=" sugg of |
|
158 |
[name, weight] => |
|
159 |
SOME (unescape_meta name, Real.fromString weight |> the_default 0.0) |
|
160 |
| _ => NONE |
|
161 |
||
| 48311 | 162 |
fun extract_query line = |
163 |
case space_explode ":" line of |
|
| 48406 | 164 |
[goal, suggs] => |
165 |
(unescape_meta goal, |
|
166 |
map_filter extract_suggestion (space_explode " " suggs)) |
|
| 48312 | 167 |
| _ => ("", [])
|
| 48311 | 168 |
|
| 48378 | 169 |
fun parent_of_local_thm th = |
170 |
let |
|
171 |
val thy = th |> Thm.theory_of_thm |
|
172 |
val facts = thy |> Global_Theory.facts_of |
|
173 |
val space = facts |> Facts.space_of |
|
174 |
fun id_of s = #id (Name_Space.the_entry space s) |
|
175 |
fun max_id (s', _) (s, id) = |
|
176 |
let val id' = id_of s' in if id > id' then (s, id) else (s', id') end |
|
177 |
in ("", ~1) |> Facts.fold_static max_id facts |> fst end
|
|
178 |
||
179 |
val local_prefix = "local" ^ Long_Name.separator |
|
180 |
||
181 |
fun nickname_of th = |
|
|
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
182 |
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
|
183 |
let val hint = Thm.get_name_hint th in |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
184 |
(* FIXME: There must be a better way to detect local facts. *) |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
185 |
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
|
186 |
SOME suf => |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
187 |
parent_of_local_thm th ^ Long_Name.separator ^ Long_Name.separator ^ suf |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
188 |
| 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
|
189 |
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
|
190 |
else |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
191 |
backquote_thm th |
| 48378 | 192 |
|
| 48330 | 193 |
fun suggested_facts suggs facts = |
194 |
let |
|
| 48378 | 195 |
fun add_fact (fact as (_, th)) = Symtab.default (nickname_of th, fact) |
| 48330 | 196 |
val tab = Symtab.empty |> fold add_fact facts |
| 48406 | 197 |
fun find_sugg (name, weight) = |
198 |
Symtab.lookup tab name |> Option.map (rpair weight) |
|
199 |
in map_filter find_sugg suggs end |
|
| 48311 | 200 |
|
| 48406 | 201 |
fun sum_avg [] = 0 |
| 48407 | 202 |
| sum_avg xs = |
203 |
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
|
204 |
|
| 48406 | 205 |
fun normalize_scores [] = [] |
206 |
| normalize_scores ((fact, score) :: tail) = |
|
207 |
(fact, 1.0) :: map (apsnd (curry Real.* (1.0 / score))) tail |
|
|
48313
0faafdffa662
mesh facts by taking into consideration whether a fact is known to MeSh
blanchet
parents:
48312
diff
changeset
|
208 |
|
| 48406 | 209 |
fun mesh_facts max_facts [(sels, unks)] = |
210 |
map fst (take max_facts sels) @ take (max_facts - length sels) unks |
|
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
211 |
| mesh_facts max_facts mess = |
|
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
212 |
let |
| 48406 | 213 |
val mess = mess |> map (apfst (normalize_scores #> `length)) |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
214 |
val fact_eq = Thm.eq_thm o pairself snd |
| 48406 | 215 |
fun score_at sels = try (nth sels) #> Option.map snd |
|
48320
891a24a48155
improved meshing of MaSh and Meng--Paulson if some MaSh suggestions are cut-off (the common case)
blanchet
parents:
48319
diff
changeset
|
216 |
fun score_in fact ((sel_len, sels), unks) = |
| 48406 | 217 |
case find_index (curry fact_eq fact o fst) sels of |
|
48320
891a24a48155
improved meshing of MaSh and Meng--Paulson if some MaSh suggestions are cut-off (the common case)
blanchet
parents:
48319
diff
changeset
|
218 |
~1 => (case find_index (curry fact_eq fact) unks of |
| 48406 | 219 |
~1 => score_at sels sel_len |
|
48320
891a24a48155
improved meshing of MaSh and Meng--Paulson if some MaSh suggestions are cut-off (the common case)
blanchet
parents:
48319
diff
changeset
|
220 |
| _ => NONE) |
| 48406 | 221 |
| rank => score_at sels rank |
222 |
fun weight_of fact = mess |> map_filter (score_in fact) |> sum_avg |
|
223 |
val facts = |
|
224 |
fold (union fact_eq o map fst o take max_facts o snd o fst) mess [] |
|
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
225 |
in |
| 48406 | 226 |
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
|
227 |
|> map snd |> take max_facts |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
228 |
end |
| 48312 | 229 |
|
|
48395
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
230 |
val thy_feature_name_of = prefix "y" |
|
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
231 |
val const_name_of = prefix "c" |
|
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
232 |
val type_name_of = prefix "t" |
|
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
233 |
val class_name_of = prefix "s" |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
234 |
|
| 48324 | 235 |
fun theory_ord p = |
236 |
if Theory.eq_thy p then |
|
237 |
EQUAL |
|
238 |
else if Theory.subthy p then |
|
239 |
LESS |
|
240 |
else if Theory.subthy (swap p) then |
|
241 |
GREATER |
|
242 |
else case int_ord (pairself (length o Theory.ancestors_of) p) of |
|
243 |
EQUAL => string_ord (pairself Context.theory_name p) |
|
244 |
| order => order |
|
245 |
||
246 |
val thm_ord = theory_ord o pairself theory_of_thm |
|
247 |
||
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
248 |
val freezeT = Type.legacy_freeze_type |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
249 |
|
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
250 |
fun freeze (t $ u) = freeze t $ freeze u |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
251 |
| 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
|
252 |
| freeze (Var ((s, _), T)) = Free (s, freezeT T) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
253 |
| freeze (Const (s, T)) = Const (s, freezeT T) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
254 |
| freeze (Free (s, T)) = Free (s, freezeT T) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
255 |
| freeze t = t |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
256 |
|
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
257 |
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
|
258 |
|
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
259 |
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
|
260 |
let |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
261 |
val problem = |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
262 |
{state = Proof.init ctxt, goal = goal, subgoal = 1, subgoal_count = 1,
|
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
263 |
facts = facts |> map (apfst (apfst (fn name => name ()))) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
264 |
|> map Untranslated_Fact} |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
265 |
in |
|
48399
4bacc8983b3d
learn from SMT proofs when they can be minimized by Metis
blanchet
parents:
48398
diff
changeset
|
266 |
get_minimizing_prover ctxt MaSh (K (K ())) prover params (K (K (K ""))) |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
267 |
problem |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
268 |
end |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
269 |
|
| 48326 | 270 |
val bad_types = [@{type_name prop}, @{type_name bool}, @{type_name fun}]
|
271 |
||
| 48398 | 272 |
val logical_consts = |
273 |
[@{const_name prop}, @{const_name Pure.conjunction}] @ atp_logical_consts
|
|
274 |
||
| 48318 | 275 |
fun interesting_terms_types_and_classes ctxt prover term_max_depth |
276 |
type_max_depth ts = |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
277 |
let |
| 48318 | 278 |
fun is_bad_const (x as (s, _)) args = |
| 48398 | 279 |
member (op =) logical_consts s orelse |
| 48318 | 280 |
fst (is_built_in_const_for_prover ctxt prover x args) |
| 48304 | 281 |
fun add_classes @{sort type} = I
|
282 |
| add_classes S = union (op =) (map class_name_of S) |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
283 |
fun do_add_type (Type (s, Ts)) = |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
284 |
(not (member (op =) bad_types s) ? insert (op =) (type_name_of s)) |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
285 |
#> fold do_add_type Ts |
| 48304 | 286 |
| do_add_type (TFree (_, S)) = add_classes S |
287 |
| do_add_type (TVar (_, S)) = add_classes S |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
288 |
fun add_type T = type_max_depth >= 0 ? do_add_type T |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
289 |
fun mk_app s args = |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
290 |
if member (op <>) args "" then s ^ "(" ^ space_implode "," args ^ ")"
|
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
291 |
else s |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
292 |
fun patternify ~1 _ = "" |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
293 |
| patternify depth t = |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
294 |
case strip_comb t of |
| 48398 | 295 |
(Const (x as (s, _)), args) => |
296 |
if is_bad_const x args then "" |
|
297 |
else mk_app (const_name_of s) (map (patternify (depth - 1)) args) |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
298 |
| _ => "" |
| 48406 | 299 |
fun add_pattern depth t = |
300 |
case patternify depth t of "" => I | s => insert (op =) s |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
301 |
fun add_term_patterns ~1 _ = I |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
302 |
| add_term_patterns depth t = |
| 48406 | 303 |
add_pattern depth t #> add_term_patterns (depth - 1) t |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
304 |
val add_term = add_term_patterns term_max_depth |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
305 |
fun add_patterns t = |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
306 |
let val (head, args) = strip_comb t in |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
307 |
(case head of |
| 48398 | 308 |
Const (_, T) => add_term t #> add_type T |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
309 |
| Free (_, T) => add_type T |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
310 |
| Var (_, T) => add_type T |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
311 |
| Abs (_, T, body) => add_type T #> add_patterns body |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
312 |
| _ => I) |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
313 |
#> fold add_patterns args |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
314 |
end |
| 48326 | 315 |
in [] |> fold add_patterns ts end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
316 |
|
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
317 |
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
|
318 |
|
| 48297 | 319 |
val term_max_depth = 1 |
320 |
val type_max_depth = 1 |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
321 |
|
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
322 |
(* TODO: Generate type classes for types? *) |
| 48385 | 323 |
fun features_of ctxt prover thy (scope, status) ts = |
|
48303
f1d135d0ea69
improved MaSh string escaping and make more operations string-based
blanchet
parents:
48302
diff
changeset
|
324 |
thy_feature_name_of (Context.theory_name thy) :: |
| 48318 | 325 |
interesting_terms_types_and_classes ctxt prover term_max_depth type_max_depth |
326 |
ts |
|
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
327 |
|> forall is_lambda_free ts ? cons "no_lams" |
|
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
328 |
|> forall (not o exists_Const is_exists) ts ? cons "no_skos" |
| 48385 | 329 |
|> scope <> Global ? cons "local" |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
330 |
|> (case string_of_status status of "" => I | s => cons s) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
331 |
|
| 48665 | 332 |
(* Too many dependencies is a sign that a crazy decision procedure is at work. |
333 |
There isn't much to learn from such proofs. *) |
|
334 |
val max_dependencies = 100 |
|
335 |
val atp_dependency_default_max_facts = 50 |
|
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
336 |
|
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
337 |
(* "type_definition_xxx" facts are characterized by their use of "CollectI". *) |
| 48441 | 338 |
val typedef_deps = [@{thm CollectI} |> nickname_of]
|
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
339 |
|
|
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
340 |
(* "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
|
341 |
val typedef_ths = |
|
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
342 |
@{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
|
343 |
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
|
344 |
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
|
345 |
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
|
346 |
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
|
347 |
type_definition.Abs_image} |
|
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
348 |
|> map nickname_of |
|
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
349 |
|
| 48441 | 350 |
fun is_size_def [dep] th = |
351 |
(case first_field ".recs" dep of |
|
352 |
SOME (pref, _) => |
|
353 |
(case first_field ".size" (nickname_of th) of |
|
354 |
SOME (pref', _) => pref = pref' |
|
355 |
| NONE => false) |
|
356 |
| NONE => false) |
|
357 |
| is_size_def _ _ = false |
|
358 |
||
359 |
fun trim_dependencies th deps = |
|
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
360 |
if length deps > max_dependencies then |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
361 |
NONE |
|
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
362 |
else |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
363 |
SOME (if deps = typedef_deps orelse |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
364 |
exists (member (op =) typedef_ths) deps orelse |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
365 |
is_size_def deps th then |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
366 |
[] |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
367 |
else |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
368 |
deps) |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
369 |
|
| 48441 | 370 |
fun isar_dependencies_of all_names th = |
371 |
th |> thms_in_proof (SOME all_names) |> trim_dependencies th |
|
| 48404 | 372 |
|
373 |
fun atp_dependencies_of ctxt (params as {verbose, max_facts, ...}) prover
|
|
374 |
auto_level facts all_names th = |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
375 |
case isar_dependencies_of all_names th of |
| 48665 | 376 |
SOME [] => (false, SOME []) |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
377 |
| isar_deps => |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
378 |
let |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
379 |
val thy = Proof_Context.theory_of ctxt |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
380 |
val goal = goal_of_thm thy th |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
381 |
val (_, hyp_ts, concl_t) = ATP_Util.strip_subgoal ctxt goal 1 |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
382 |
val facts = facts |> filter (fn (_, th') => thm_ord (th', th) = LESS) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
383 |
fun fix_name ((_, stature), th) = ((fn () => nickname_of th, stature), th) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
384 |
fun is_dep dep (_, th) = nickname_of th = dep |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
385 |
fun add_isar_dep facts dep accum = |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
386 |
if exists (is_dep dep) accum then |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
387 |
accum |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
388 |
else case find_first (is_dep dep) facts of |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
389 |
SOME ((name, status), th) => accum @ [((name, status), th)] |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
390 |
| NONE => accum (* shouldn't happen *) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
391 |
val facts = |
| 48406 | 392 |
facts |> mepo_suggested_facts ctxt params prover |
| 48665 | 393 |
(max_facts |> the_default atp_dependency_default_max_facts) |
| 48404 | 394 |
NONE hyp_ts concl_t |
395 |
|> fold (add_isar_dep facts) (these isar_deps) |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
396 |
|> map fix_name |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
397 |
in |
| 48404 | 398 |
if verbose andalso auto_level = 0 then |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
399 |
let val num_facts = length facts in |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
400 |
"MaSh: " ^ quote prover ^ " on " ^ quote (nickname_of th) ^ |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
401 |
" 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
|
402 |
"." |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
403 |
|> Output.urgent_message |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
404 |
end |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
405 |
else |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
406 |
(); |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
407 |
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
|
408 |
{outcome = NONE, used_facts, ...} =>
|
| 48404 | 409 |
(if verbose andalso auto_level = 0 then |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
410 |
let val num_facts = length used_facts in |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
411 |
"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
|
412 |
plural_s num_facts ^ "." |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
413 |
|> Output.urgent_message |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
414 |
end |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
415 |
else |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
416 |
(); |
| 48665 | 417 |
case used_facts |> map fst |> trim_dependencies th of |
418 |
NONE => (false, isar_deps) |
|
419 |
| atp_deps => (true, atp_deps)) |
|
420 |
| _ => (false, isar_deps) |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
421 |
end |
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
422 |
|
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
423 |
|
| 48302 | 424 |
(*** Low-level communication with MaSh ***) |
425 |
||
|
48656
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
426 |
fun wipe_out_file file = (try (File.rm o Path.explode) file; ()) |
|
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
|
427 |
|
| 48699 | 428 |
fun write_file banner (xs, f) file = |
| 48318 | 429 |
let val path = Path.explode file in |
| 48699 | 430 |
case banner of SOME s => File.write path s | NONE => (); |
| 48323 | 431 |
xs |> chunk_list 500 |
432 |
|> List.app (File.append path o space_implode "" o map f) |
|
| 48318 | 433 |
end |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
434 |
|
|
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
|
435 |
fun run_mash_tool ctxt overlord save max_suggs write_cmds read_suggs = |
| 48311 | 436 |
let |
|
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
|
437 |
val (temp_dir, serial) = |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
438 |
if overlord then (getenv "ISABELLE_HOME_USER", "") |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
439 |
else (getenv "ISABELLE_TMP", serial_string ()) |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
440 |
val log_file = if overlord then temp_dir ^ "/mash_log" else "/dev/null" |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
441 |
val err_file = temp_dir ^ "/mash_err" ^ serial |
| 48318 | 442 |
val sugg_file = temp_dir ^ "/mash_suggs" ^ serial |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
443 |
val cmd_file = temp_dir ^ "/mash_commands" ^ serial |
|
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
|
444 |
val core = |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
445 |
"--inputFile " ^ cmd_file ^ " --predictions " ^ sugg_file ^ |
|
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 |
" --numberOfPredictions " ^ string_of_int max_suggs ^ |
|
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 |
(if save then " --saveModel" else "") |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
448 |
val command = |
|
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 |
mash_home () ^ "/mash --quiet --outputDir " ^ mash_model_dir () ^ |
|
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 |
" --log " ^ log_file ^ " " ^ core ^ " >& " ^ err_file |
|
48656
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
451 |
|
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
452 |
|> tap (fn _ => trace_msg ctxt (fn () => |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
453 |
case try File.read (Path.explode err_file) of |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
454 |
NONE => "Done" |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
455 |
| SOME "" => "Done" |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
456 |
| SOME s => "Error: " ^ elide_string 1000 s)) |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
457 |
fun run_on () = |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
458 |
(Isabelle_System.bash command; |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
459 |
read_suggs (fn () => |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
460 |
try File.read_lines (Path.explode sugg_file) |> these)) |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
461 |
fun clean_up () = |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
462 |
if overlord then () |
|
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
463 |
else List.app wipe_out_file [err_file, sugg_file, cmd_file] |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
464 |
in |
| 48699 | 465 |
write_file (SOME "") ([], K "") sugg_file; |
466 |
write_file (SOME "") write_cmds cmd_file; |
|
|
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
467 |
trace_msg ctxt (fn () => "Running " ^ command); |
|
48656
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
468 |
with_cleanup clean_up run_on () |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
469 |
end |
|
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
470 |
|
| 48404 | 471 |
fun str_of_add (name, parents, feats, deps) = |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
472 |
"! " ^ escape_meta name ^ ": " ^ escape_metas parents ^ "; " ^ |
| 48311 | 473 |
escape_metas feats ^ "; " ^ escape_metas deps ^ "\n" |
474 |
||
| 48404 | 475 |
fun str_of_reprove (name, deps) = |
476 |
"p " ^ escape_meta name ^ ": " ^ escape_metas deps ^ "\n" |
|
477 |
||
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
478 |
fun str_of_query (parents, feats) = |
| 48406 | 479 |
"? " ^ escape_metas parents ^ "; " ^ escape_metas feats ^ "\n" |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
480 |
|
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
481 |
fun mash_CLEAR ctxt = |
|
48394
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
482 |
let val path = mash_model_dir () |> Path.explode in |
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
483 |
trace_msg ctxt (K "MaSh CLEAR"); |
|
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
|
484 |
File.fold_dir (fn file => fn _ => |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
485 |
try File.rm (Path.append path (Path.basic file))) |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
486 |
path NONE; |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
487 |
() |
| 48309 | 488 |
end |
| 48302 | 489 |
|
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
490 |
fun mash_ADD _ _ [] = () |
| 48404 | 491 |
| mash_ADD ctxt overlord adds = |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
492 |
(trace_msg ctxt (fn () => "MaSh ADD " ^ |
| 48404 | 493 |
elide_string 1000 (space_implode " " (map #1 adds))); |
494 |
run_mash_tool ctxt overlord true 0 (adds, str_of_add) (K ())) |
|
495 |
||
496 |
fun mash_REPROVE _ _ [] = () |
|
497 |
| mash_REPROVE ctxt overlord reps = |
|
498 |
(trace_msg ctxt (fn () => "MaSh REPROVE " ^ |
|
499 |
elide_string 1000 (space_implode " " (map #1 reps))); |
|
500 |
run_mash_tool ctxt overlord true 0 (reps, str_of_reprove) (K ())) |
|
| 48302 | 501 |
|
| 48318 | 502 |
fun mash_QUERY ctxt overlord max_suggs (query as (_, feats)) = |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
503 |
(trace_msg ctxt (fn () => "MaSh QUERY " ^ space_implode " " feats); |
|
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
|
504 |
run_mash_tool ctxt overlord false max_suggs |
| 48323 | 505 |
([query], str_of_query) |
|
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
|
506 |
(fn suggs => |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
507 |
case suggs () 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
|
508 |
[] => [] |
|
82fc8c956cdc
fixed various issues with MaSh's file handling + tune output + generate local facts again + handle nameless facts gracefully
blanchet
parents:
48392
diff
changeset
|
509 |
| suggs => snd (extract_query (List.last suggs))) |
| 48311 | 510 |
handle List.Empty => []) |
| 48302 | 511 |
|
512 |
||
|
48251
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
513 |
(*** High-level communication with MaSh ***) |
|
6cdcfbddc077
moved most of MaSh exporter code to Sledgehammer
blanchet
parents:
48249
diff
changeset
|
514 |
|
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
515 |
(* FIXME: Here a "Graph.update_node" function would be useful *) |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
516 |
fun update_fact_graph_node (name, kind) = |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
517 |
Graph.default_node (name, Isar_Proof) |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
518 |
#> kind <> Isar_Proof ? Graph.map_node name (K kind) |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
519 |
|
| 48321 | 520 |
fun try_graph ctxt when def f = |
521 |
f () |
|
522 |
handle Graph.CYCLES (cycle :: _) => |
|
523 |
(trace_msg ctxt (fn () => |
|
524 |
"Cycle involving " ^ commas cycle ^ " when " ^ when); def) |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
525 |
| Graph.DUP name => |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
526 |
(trace_msg ctxt (fn () => |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
527 |
"Duplicate fact " ^ quote name ^ " when " ^ when); def) |
| 48321 | 528 |
| Graph.UNDEF name => |
529 |
(trace_msg ctxt (fn () => |
|
530 |
"Unknown fact " ^ quote name ^ " when " ^ when); def) |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
531 |
| exn => |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
532 |
if Exn.is_interrupt exn then |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
533 |
reraise exn |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
534 |
else |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
535 |
(trace_msg ctxt (fn () => |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
536 |
"Internal error when " ^ when ^ ":\n" ^ |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
537 |
ML_Compiler.exn_message exn); def) |
| 48321 | 538 |
|
| 48406 | 539 |
fun graph_info G = |
540 |
string_of_int (length (Graph.keys G)) ^ " node(s), " ^ |
|
541 |
string_of_int (fold (Integer.add o length o snd) (Graph.dest G) 0) ^ |
|
542 |
" edge(s), " ^ |
|
543 |
string_of_int (length (Graph.minimals G)) ^ " minimal, " ^ |
|
544 |
string_of_int (length (Graph.maximals G)) ^ " maximal" |
|
545 |
||
| 48699 | 546 |
type mash_state = {fact_G : unit Graph.T, dirty : string list option}
|
| 48301 | 547 |
|
| 48699 | 548 |
val empty_state = {fact_G = Graph.empty, dirty = SOME []}
|
| 48301 | 549 |
|
550 |
local |
|
551 |
||
|
48390
4147f2bc4442
add versioning to MaSh state + cleanup dead code
blanchet
parents:
48389
diff
changeset
|
552 |
val version = "*** MaSh 0.0 ***" |
|
4147f2bc4442
add versioning to MaSh state + cleanup dead code
blanchet
parents:
48389
diff
changeset
|
553 |
|
|
4147f2bc4442
add versioning to MaSh state + cleanup dead code
blanchet
parents:
48389
diff
changeset
|
554 |
fun load _ (state as (true, _)) = state |
|
4147f2bc4442
add versioning to MaSh state + cleanup dead code
blanchet
parents:
48389
diff
changeset
|
555 |
| load ctxt _ = |
| 48436 | 556 |
let val path = mash_state_file () |> Path.explode in |
| 48302 | 557 |
(true, |
558 |
case try File.read_lines path of |
|
| 48406 | 559 |
SOME (version' :: node_lines) => |
| 48302 | 560 |
let |
|
48322
8a8d71e34297
fixed MaSh state load code so it works even if the facts are read in disorder
blanchet
parents:
48321
diff
changeset
|
561 |
fun add_edge_to name parent = |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
562 |
Graph.default_node (parent, Isar_Proof) |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
563 |
#> Graph.add_edge (parent, name) |
| 48406 | 564 |
fun add_node line = |
565 |
case extract_node line of |
|
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
566 |
NONE => I (* shouldn't happen *) |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
567 |
| SOME (name, parents, kind) => |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
568 |
update_fact_graph_node (name, kind) |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
569 |
#> fold (add_edge_to name) parents |
| 48400 | 570 |
val fact_G = |
|
48322
8a8d71e34297
fixed MaSh state load code so it works even if the facts are read in disorder
blanchet
parents:
48321
diff
changeset
|
571 |
try_graph ctxt "loading state" Graph.empty (fn () => |
| 48406 | 572 |
Graph.empty |> version' = version ? fold add_node node_lines) |
573 |
in |
|
574 |
trace_msg ctxt (fn () => |
|
575 |
"Loaded fact graph (" ^ graph_info fact_G ^ ")");
|
|
| 48699 | 576 |
{fact_G = fact_G, dirty = SOME []}
|
| 48406 | 577 |
end |
| 48304 | 578 |
| _ => empty_state) |
| 48302 | 579 |
end |
| 48249 | 580 |
|
| 48699 | 581 |
fun save _ (state as {dirty = SOME [], ...}) = state
|
582 |
| save ctxt {fact_G, dirty} =
|
|
583 |
let |
|
584 |
fun str_of_entry (name, parents, kind) = |
|
585 |
str_of_proof_kind kind ^ " " ^ escape_meta name ^ ": " ^ |
|
586 |
escape_metas parents ^ "\n" |
|
587 |
fun append_entry (name, (kind, (parents, _))) = |
|
588 |
cons (name, Graph.Keys.dest parents, kind) |
|
589 |
val (banner, entries) = |
|
590 |
case dirty of |
|
591 |
SOME names => |
|
592 |
(NONE, fold (append_entry o Graph.get_entry fact_G) names []) |
|
593 |
| NONE => (SOME (version ^ "\n"), Graph.fold append_entry fact_G []) |
|
594 |
in |
|
595 |
write_file banner (entries, str_of_entry) (mash_state_file ()); |
|
596 |
trace_msg ctxt (fn () => |
|
597 |
"Saved fact graph (" ^ graph_info fact_G ^
|
|
598 |
(case dirty of |
|
599 |
SOME dirty => |
|
600 |
"; " ^ string_of_int (length dirty) ^ " dirty fact(s)" |
|
601 |
| _ => "") ^ ")"); |
|
602 |
{fact_G = fact_G, dirty = SOME []}
|
|
603 |
end |
|
| 48301 | 604 |
|
| 48302 | 605 |
val global_state = |
| 48381 | 606 |
Synchronized.var "Sledgehammer_MaSh.global_state" (false, empty_state) |
| 48301 | 607 |
|
608 |
in |
|
609 |
||
| 48321 | 610 |
fun mash_map ctxt f = |
| 48699 | 611 |
Synchronized.change global_state (load ctxt ##> (f #> save ctxt)) |
| 48302 | 612 |
|
|
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
613 |
fun mash_peek ctxt f = |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
614 |
Synchronized.change_result global_state (load ctxt #> `snd #>> f) |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
615 |
|
| 48321 | 616 |
fun mash_get ctxt = |
|
48390
4147f2bc4442
add versioning to MaSh state + cleanup dead code
blanchet
parents:
48389
diff
changeset
|
617 |
Synchronized.change_result global_state (load ctxt #> `snd) |
| 48302 | 618 |
|
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
619 |
fun mash_unlearn ctxt = |
| 48302 | 620 |
Synchronized.change global_state (fn _ => |
|
48656
5caa414ce9a2
cleaner temporary file cleanup for MaSh, based on tried-and-trusted code
blanchet
parents:
48531
diff
changeset
|
621 |
(mash_CLEAR ctxt; (* also removes the state file *) |
| 48436 | 622 |
(true, empty_state))) |
| 48301 | 623 |
|
624 |
end |
|
625 |
||
| 48318 | 626 |
fun mash_could_suggest_facts () = mash_home () <> "" |
| 48400 | 627 |
fun mash_can_suggest_facts ctxt = not (Graph.is_empty (#fact_G (mash_get ctxt))) |
| 48249 | 628 |
|
| 48407 | 629 |
fun num_keys keys = Graph.Keys.fold (K (Integer.add 1)) keys 0 |
| 48400 | 630 |
|
| 48407 | 631 |
fun maximal_in_graph fact_G facts = |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
632 |
let |
| 48378 | 633 |
val facts = [] |> fold (cons o nickname_of o snd) facts |
| 48407 | 634 |
val tab = Symtab.empty |> fold (fn name => Symtab.default (name, ())) facts |
635 |
fun insert_new seen name = |
|
636 |
not (Symtab.defined seen name) ? insert (op =) name |
|
637 |
fun find_maxes _ (maxs, []) = map snd maxs |
|
638 |
| find_maxes seen (maxs, new :: news) = |
|
639 |
find_maxes |
|
640 |
(seen |> num_keys (Graph.imm_succs fact_G new) > 1 |
|
641 |
? Symtab.default (new, ())) |
|
642 |
(if Symtab.defined tab new then |
|
643 |
let |
|
644 |
val newp = Graph.all_preds fact_G [new] |
|
645 |
fun is_ancestor x yp = member (op =) yp x |
|
646 |
val maxs = |
|
647 |
maxs |> filter (fn (_, max) => not (is_ancestor max newp)) |
|
648 |
in |
|
649 |
if exists (is_ancestor new o fst) maxs then |
|
650 |
(maxs, news) |
|
651 |
else |
|
652 |
((newp, new) |
|
653 |
:: filter_out (fn (_, max) => is_ancestor max newp) maxs, |
|
654 |
news) |
|
655 |
end |
|
656 |
else |
|
657 |
(maxs, Graph.Keys.fold (insert_new seen) |
|
658 |
(Graph.imm_preds fact_G new) news)) |
|
659 |
in find_maxes Symtab.empty ([], Graph.maximals fact_G) end |
|
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
660 |
|
| 48318 | 661 |
(* Generate more suggestions than requested, because some might be thrown out |
662 |
later for various reasons and "meshing" gives better results with some |
|
663 |
slack. *) |
|
|
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
664 |
fun max_suggs_of max_facts = max_facts + Int.min (50, max_facts) |
| 48318 | 665 |
|
| 48400 | 666 |
fun is_fact_in_graph fact_G (_, th) = |
667 |
can (Graph.get_node fact_G) (nickname_of th) |
|
|
48320
891a24a48155
improved meshing of MaSh and Meng--Paulson if some MaSh suggestions are cut-off (the common case)
blanchet
parents:
48319
diff
changeset
|
668 |
|
| 48442 | 669 |
fun interleave 0 _ _ = [] |
670 |
| interleave n [] ys = take n ys |
|
671 |
| interleave n xs [] = take n xs |
|
672 |
| interleave 1 (x :: _) _ = [x] |
|
673 |
| interleave n (x :: xs) (y :: ys) = x :: y :: interleave (n - 2) xs ys |
|
| 48435 | 674 |
|
| 48406 | 675 |
fun mash_suggested_facts ctxt ({overlord, ...} : params) prover max_facts hyp_ts
|
676 |
concl_t facts = |
|
| 48301 | 677 |
let |
| 48302 | 678 |
val thy = Proof_Context.theory_of ctxt |
|
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
679 |
val (fact_G, suggs) = |
| 48699 | 680 |
mash_peek ctxt (fn {fact_G, ...} =>
|
|
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
681 |
if Graph.is_empty fact_G then |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
682 |
(fact_G, []) |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
683 |
else |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
684 |
let |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
685 |
val parents = maximal_in_graph fact_G facts |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
686 |
val feats = |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
687 |
features_of ctxt prover thy (Local, General) (concl_t :: hyp_ts) |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
688 |
in |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
689 |
(fact_G, mash_QUERY ctxt overlord (max_suggs_of max_facts) |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
690 |
(parents, feats)) |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
691 |
end) |
| 48435 | 692 |
val sels = |
| 48408 | 693 |
facts |> suggested_facts suggs |
694 |
(* The weights currently returned by "mash.py" are too extreme to |
|
695 |
make any sense. *) |
|
| 48435 | 696 |
|> map fst |
697 |
val (unk_global, unk_local) = |
|
698 |
facts |> filter_out (is_fact_in_graph fact_G) |
|
| 48442 | 699 |
|> List.partition (fn ((_, (scope, _)), _) => scope = Global) |
700 |
in (interleave max_facts unk_local sels |> weight_mepo_facts, unk_global) end |
|
| 48249 | 701 |
|
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
702 |
fun add_wrt_fact_graph ctxt (name, parents, feats, deps) (adds, graph) = |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
703 |
let |
|
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
704 |
fun maybe_add_from from (accum as (parents, graph)) = |
| 48321 | 705 |
try_graph ctxt "updating graph" accum (fn () => |
706 |
(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
|
707 |
val graph = graph |> Graph.default_node (name, Isar_Proof) |
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
708 |
val (parents, graph) = ([], graph) |> fold maybe_add_from parents |
| 48407 | 709 |
val (deps, _) = ([], graph) |> fold maybe_add_from deps |
| 48404 | 710 |
in ((name, parents, feats, deps) :: adds, graph) end |
| 48306 | 711 |
|
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
712 |
fun reprove_wrt_fact_graph ctxt (name, deps) (reps, graph) = |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
713 |
let |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
714 |
fun maybe_rep_from from (accum as (parents, graph)) = |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
715 |
try_graph ctxt "updating graph" accum (fn () => |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
716 |
(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
|
717 |
val graph = graph |> update_fact_graph_node (name, ATP_Proof) |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
718 |
val (deps, _) = ([], graph) |> fold maybe_rep_from deps |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
719 |
in ((name, deps) :: reps, graph) end |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
720 |
|
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
721 |
fun flop_wrt_fact_graph name = |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
722 |
update_fact_graph_node (name, Isar_Proof_wegen_ATP_Flop) |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
723 |
|
|
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
|
724 |
val learn_timeout_slack = 2.0 |
| 48318 | 725 |
|
|
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
|
726 |
fun launch_thread timeout task = |
| 48383 | 727 |
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
|
728 |
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
|
729 |
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
|
730 |
val death_time = Time.+ (birth_time, hard_timeout) |
| 48442 | 731 |
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
|
732 |
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
|
733 |
|
| 48400 | 734 |
fun freshish_name () = |
735 |
Date.fmt ".%Y_%m_%d_%H_%M_%S__" (Date.fromTimeLocal (Time.now ())) ^ |
|
736 |
serial_string () |
|
737 |
||
|
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
|
738 |
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
|
739 |
used_ths = |
|
83dc102041e6
learn on explicit "min" command but do the learning in a thread, since it may take a couple of seconds
blanchet
parents:
48383
diff
changeset
|
740 |
if is_smt_prover ctxt prover then |
|
83dc102041e6
learn on explicit "min" command but do the learning in a thread, since it may take a couple of seconds
blanchet
parents:
48383
diff
changeset
|
741 |
() |
|
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
|
742 |
else |
|
48403
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
743 |
launch_thread timeout (fn () => |
|
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
744 |
let |
|
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
745 |
val thy = Proof_Context.theory_of ctxt |
|
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
746 |
val name = freshish_name () |
|
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
747 |
val feats = features_of ctxt prover thy (Local, General) [t] |
|
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
748 |
val deps = used_ths |> map nickname_of |
|
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
749 |
in |
| 48699 | 750 |
mash_peek ctxt (fn {fact_G, ...} =>
|
|
48434
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
751 |
let val parents = maximal_in_graph fact_G facts in |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
752 |
mash_ADD ctxt overlord [(name, parents, feats, deps)] |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
753 |
end); |
|
aaaec69db3db
ensure all calls to "mash" program are synchronous
blanchet
parents:
48433
diff
changeset
|
754 |
(true, "") |
|
48403
1f214c653c80
don't store fresh names in fact graph, since these cannot be the parents of any other facts
blanchet
parents:
48401
diff
changeset
|
755 |
end) |
| 48383 | 756 |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
757 |
fun sendback sub = |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
758 |
Markup.markup Isabelle_Markup.sendback (sledgehammerN ^ " " ^ sub) |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
759 |
|
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
760 |
val commit_timeout = seconds 30.0 |
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
761 |
|
| 48318 | 762 |
(* The timeout is understood in a very slack fashion. *) |
| 48404 | 763 |
fun mash_learn_facts ctxt (params as {debug, verbose, overlord, ...}) prover
|
764 |
auto_level atp learn_timeout facts = |
|
| 48304 | 765 |
let |
| 48318 | 766 |
val timer = Timer.startRealTimer () |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
767 |
fun next_commit_time () = |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
768 |
Time.+ (Timer.checkRealTimer timer, commit_timeout) |
| 48699 | 769 |
val {fact_G, ...} = mash_get ctxt
|
| 48400 | 770 |
val (old_facts, new_facts) = |
|
48667
ac58317ef11f
rule out same "technical" theories for MePo as for MaSh
blanchet
parents:
48665
diff
changeset
|
771 |
facts |> List.partition (is_fact_in_graph fact_G) |
| 48400 | 772 |
||> sort (thm_ord o pairself snd) |
| 48308 | 773 |
in |
| 48404 | 774 |
if null new_facts andalso (not atp orelse null old_facts) then |
775 |
if auto_level < 2 then |
|
776 |
"No new " ^ (if atp then "ATP" else "Isar") ^ " proofs to learn." ^ |
|
777 |
(if auto_level = 0 andalso not atp then |
|
778 |
"\n\nHint: Try " ^ sendback learn_atpN ^ " to learn from ATP proofs." |
|
779 |
else |
|
780 |
"") |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
781 |
else |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
782 |
"" |
| 48308 | 783 |
else |
| 48304 | 784 |
let |
|
48315
82d6e46c673f
fixed order of accessibles + other tweaks to MaSh
blanchet
parents:
48314
diff
changeset
|
785 |
val all_names = |
|
48438
3e45c98fe127
distinguish between recursive and nonrecursive definitions + clean up typedef dependencies in MaSh
blanchet
parents:
48436
diff
changeset
|
786 |
facts |> map snd |> map (rpair () o nickname_of) |> Symtab.make |
|
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
787 |
fun deps_of status th = |
|
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
788 |
if status = Non_Rec_Def orelse status = Rec_Def then |
|
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
789 |
SOME [] |
|
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
790 |
else if atp then |
|
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
791 |
atp_dependencies_of ctxt params prover auto_level facts all_names th |
| 48665 | 792 |
|> (fn (false, _) => NONE | (true, deps) => deps) |
| 48404 | 793 |
else |
|
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
794 |
isar_dependencies_of all_names th |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
795 |
fun do_commit [] [] [] state = state |
| 48699 | 796 |
| do_commit adds reps flops {fact_G, dirty} =
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
797 |
let |
| 48699 | 798 |
val was_empty = Graph.is_empty fact_G |
| 48404 | 799 |
val (adds, fact_G) = |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
800 |
([], fact_G) |> fold (add_wrt_fact_graph ctxt) adds |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
801 |
val (reps, fact_G) = |
|
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
802 |
([], fact_G) |> fold (reprove_wrt_fact_graph ctxt) reps |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
803 |
val fact_G = fact_G |> fold flop_wrt_fact_graph flops |
| 48699 | 804 |
val dirty = |
805 |
case (was_empty, dirty, reps) of |
|
806 |
(false, SOME names, []) => SOME (map #1 adds @ names) |
|
807 |
| _ => NONE |
|
| 48404 | 808 |
in |
809 |
mash_ADD ctxt overlord (rev adds); |
|
810 |
mash_REPROVE ctxt overlord reps; |
|
| 48699 | 811 |
{fact_G = fact_G, dirty = dirty}
|
| 48404 | 812 |
end |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
813 |
fun commit last adds reps flops = |
| 48404 | 814 |
(if debug andalso auto_level = 0 then |
815 |
Output.urgent_message "Committing..." |
|
816 |
else |
|
817 |
(); |
|
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
818 |
mash_map ctxt (do_commit (rev adds) reps flops); |
| 48404 | 819 |
if not last andalso auto_level = 0 then |
820 |
let val num_proofs = length adds + length reps in |
|
821 |
"Learned " ^ string_of_int num_proofs ^ " " ^ |
|
822 |
(if atp then "ATP" else "Isar") ^ " proof" ^ |
|
823 |
plural_s num_proofs ^ " in the last " ^ |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
824 |
string_from_time commit_timeout ^ "." |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
825 |
|> Output.urgent_message |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
826 |
end |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
827 |
else |
|
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
828 |
()) |
| 48404 | 829 |
fun learn_new_fact _ (accum as (_, (_, _, _, true))) = accum |
|
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
830 |
| learn_new_fact ((_, stature as (_, status)), th) |
| 48404 | 831 |
(adds, (parents, n, next_commit, _)) = |
| 48318 | 832 |
let |
| 48378 | 833 |
val name = nickname_of th |
|
48332
271a4a6af734
optimize parent computation in MaSh + remove temporary files
blanchet
parents:
48330
diff
changeset
|
834 |
val feats = |
| 48385 | 835 |
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
|
836 |
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
|
837 |
val n = n |> not (null deps) ? Integer.add 1 |
| 48404 | 838 |
val adds = (name, parents, feats, deps) :: adds |
839 |
val (adds, next_commit) = |
|
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
840 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
841 |
(commit false adds [] []; ([], next_commit_time ())) |
|
48392
ca998fa08cd9
added "learn_from_atp" command to MaSh, for patient users
blanchet
parents:
48390
diff
changeset
|
842 |
else |
| 48404 | 843 |
(adds, next_commit) |
844 |
val timed_out = Time.> (Timer.checkRealTimer timer, learn_timeout) |
|
845 |
in (adds, ([name], n, next_commit, timed_out)) end |
|
846 |
val n = |
|
847 |
if null new_facts then |
|
848 |
0 |
|
849 |
else |
|
850 |
let |
|
851 |
val last_th = new_facts |> List.last |> snd |
|
852 |
(* crude approximation *) |
|
853 |
val ancestors = |
|
854 |
old_facts |
|
855 |
|> filter (fn (_, th) => thm_ord (th, last_th) <> GREATER) |
|
| 48407 | 856 |
val parents = maximal_in_graph fact_G ancestors |
| 48404 | 857 |
val (adds, (_, n, _, _)) = |
858 |
([], (parents, 0, next_commit_time (), false)) |
|
859 |
|> fold learn_new_fact new_facts |
|
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
860 |
in commit true adds [] []; n end |
| 48404 | 861 |
fun relearn_old_fact _ (accum as (_, (_, _, true))) = accum |
|
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
862 |
| relearn_old_fact ((_, (_, status)), th) |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
863 |
((reps, flops), (n, next_commit, _)) = |
| 48404 | 864 |
let |
865 |
val name = nickname_of th |
|
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
866 |
val (n, reps, flops) = |
|
48439
67a6bcbd3587
removed MaSh junk arising from primrec definitions
blanchet
parents:
48438
diff
changeset
|
867 |
case deps_of status th of |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
868 |
SOME deps => (n + 1, (name, deps) :: reps, flops) |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
869 |
| NONE => (n, reps, name :: flops) |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
870 |
val (reps, flops, next_commit) = |
| 48404 | 871 |
if Time.> (Timer.checkRealTimer timer, next_commit) then |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
872 |
(commit false [] reps flops; ([], [], next_commit_time ())) |
| 48404 | 873 |
else |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
874 |
(reps, flops, next_commit) |
| 48404 | 875 |
val timed_out = Time.> (Timer.checkRealTimer timer, learn_timeout) |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
876 |
in ((reps, flops), (n, next_commit, timed_out)) end |
| 48404 | 877 |
val n = |
| 48433 | 878 |
if not atp orelse null old_facts then |
| 48404 | 879 |
n |
880 |
else |
|
881 |
let |
|
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
882 |
val max_isar = 1000 * max_dependencies |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
883 |
fun kind_of_proof th = |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
884 |
try (Graph.get_node fact_G) (nickname_of th) |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
885 |
|> the_default Isar_Proof |
| 48406 | 886 |
fun priority_of (_, th) = |
|
48668
5d63c23b4042
remember which MaSh proofs were found using ATPs
blanchet
parents:
48667
diff
changeset
|
887 |
random_range 0 max_isar |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
888 |
+ (case kind_of_proof th of |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
889 |
Isar_Proof => 0 |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
890 |
| ATP_Proof => 2 * max_isar |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
891 |
| Isar_Proof_wegen_ATP_Flop => max_isar) |
| 48404 | 892 |
- 500 * (th |> isar_dependencies_of all_names |
893 |
|> Option.map length |
|
894 |
|> the_default max_dependencies) |
|
895 |
val old_facts = |
|
| 48406 | 896 |
old_facts |> map (`priority_of) |
| 48404 | 897 |
|> sort (int_ord o pairself fst) |
898 |
|> map snd |
|
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
899 |
val ((reps, flops), (n, _, _)) = |
|
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
900 |
(([], []), (n, next_commit_time (), false)) |
| 48404 | 901 |
|> fold relearn_old_fact old_facts |
|
48669
cdcdb0547f29
remember ATP flops to avoid repeating them too quickly
blanchet
parents:
48668
diff
changeset
|
902 |
in commit true [] reps flops; n end |
| 48318 | 903 |
in |
| 48404 | 904 |
if verbose orelse auto_level < 2 then |
905 |
"Learned " ^ string_of_int n ^ " nontrivial " ^ |
|
906 |
(if atp then "ATP" 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
|
907 |
(if verbose then |
|
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
908 |
" 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
|
909 |
else |
|
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
910 |
"") ^ "." |
|
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
911 |
else |
|
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
912 |
"" |
| 48318 | 913 |
end |
| 48308 | 914 |
end |
| 48304 | 915 |
|
| 48404 | 916 |
fun mash_learn ctxt (params as {provers, timeout, ...}) fact_override chained
|
917 |
atp = |
|
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
918 |
let |
| 48396 | 919 |
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
|
920 |
val ctxt = ctxt |> Config.put instantiate_inducts false |
|
85a7fb65507a
learning should honor the fact override and the chained facts
blanchet
parents:
48394
diff
changeset
|
921 |
val facts = |
| 48396 | 922 |
nearly_all_facts ctxt false fact_override Symtab.empty css chained [] |
923 |
@{prop True}
|
|
| 48404 | 924 |
val num_facts = length facts |
925 |
val prover = hd provers |
|
926 |
fun learn auto_level atp = |
|
927 |
mash_learn_facts ctxt params prover auto_level atp infinite_timeout facts |
|
928 |
|> Output.urgent_message |
|
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
929 |
in |
| 48404 | 930 |
(if atp then |
931 |
("MaShing through " ^ string_of_int num_facts ^ " fact" ^
|
|
932 |
plural_s num_facts ^ " for ATP proofs (" ^ quote prover ^ " timeout: " ^
|
|
933 |
string_from_time timeout ^ ").\n\nCollecting Isar proofs first..." |
|
934 |
|> Output.urgent_message; |
|
935 |
learn 1 false; |
|
936 |
"Now collecting ATP proofs. This may take several hours. You can \ |
|
937 |
\safely stop the learning process at any point." |
|
938 |
|> Output.urgent_message; |
|
939 |
learn 0 true) |
|
940 |
else |
|
941 |
("MaShing through " ^ string_of_int num_facts ^ " fact" ^
|
|
942 |
plural_s num_facts ^ " for Isar proofs..." |
|
943 |
|> Output.urgent_message; |
|
944 |
learn 0 false)) |
|
|
48316
252f45c04042
drastic overhaul of MaSh data structures + fixed a few performance issues
blanchet
parents:
48315
diff
changeset
|
945 |
end |
| 48249 | 946 |
|
| 48318 | 947 |
(* The threshold should be large enough so that MaSh doesn't kick in for Auto |
948 |
Sledgehammer and Try. *) |
|
949 |
val min_secs_for_learning = 15 |
|
950 |
||
| 48321 | 951 |
fun relevant_facts ctxt (params as {learn, fact_filter, timeout, ...}) prover
|
952 |
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
|
953 |
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
|
954 |
error ("Unknown fact filter: " ^ quote (the fact_filter) ^ ".")
|
|
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
955 |
else if only then |
| 48289 | 956 |
facts |
| 48321 | 957 |
else if max_facts <= 0 orelse null facts then |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
958 |
[] |
|
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
959 |
else |
|
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
960 |
let |
|
48327
568b3193e53e
don't include hidden facts in relevance filter + tweak MaSh learning
blanchet
parents:
48326
diff
changeset
|
961 |
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
|
962 |
if learn andalso not (Async_Manager.has_running_threads MaShN) andalso |
|
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
|
963 |
Time.toSeconds timeout >= min_secs_for_learning then |
|
83dc102041e6
learn on explicit "min" command but do the learning in a thread, since it may take a couple of seconds
blanchet
parents:
48383
diff
changeset
|
964 |
let val timeout = time_mult learn_timeout_slack timeout in |
|
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
|
965 |
launch_thread timeout |
| 48404 | 966 |
(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
|
967 |
timeout facts)) |
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
968 |
end |
| 48318 | 969 |
else |
970 |
() |
|
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
971 |
val fact_filter = |
|
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
972 |
case fact_filter of |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
973 |
SOME ff => (() |> ff <> mepoN ? maybe_learn; ff) |
| 48318 | 974 |
| NONE => |
| 48407 | 975 |
if is_smt_prover ctxt prover then |
976 |
mepoN |
|
977 |
else if mash_could_suggest_facts () then |
|
978 |
(maybe_learn (); |
|
979 |
if mash_can_suggest_facts ctxt then meshN else mepoN) |
|
980 |
else |
|
981 |
mepoN |
|
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
982 |
val add_ths = Attrib.eval_thms ctxt add |
| 48292 | 983 |
fun prepend_facts ths accepts = |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
984 |
((facts |> filter (member Thm.eq_thm_prop ths o snd)) @ |
| 48292 | 985 |
(accepts |> filter_out (member Thm.eq_thm_prop ths o snd))) |
| 48293 | 986 |
|> take max_facts |
| 48406 | 987 |
fun mepo () = |
988 |
facts |> mepo_suggested_facts ctxt params prover max_facts NONE hyp_ts |
|
989 |
concl_t |
|
990 |
|> weight_mepo_facts |
|
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
991 |
fun mash () = |
| 48406 | 992 |
mash_suggested_facts ctxt params prover max_facts hyp_ts concl_t facts |
|
48314
ee33ba3c0e05
added option to control which fact filter is used
blanchet
parents:
48313
diff
changeset
|
993 |
val mess = |
| 48406 | 994 |
[] |> (if fact_filter <> mashN then cons (mepo (), []) else I) |
|
48379
2b5ad61e2ccc
renamed "iter" fact filter to "MePo" (Meng--Paulson)
blanchet
parents:
48378
diff
changeset
|
995 |
|> (if fact_filter <> mepoN then cons (mash ()) else I) |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
996 |
in |
|
48313
0faafdffa662
mesh facts by taking into consideration whether a fact is known to MeSh
blanchet
parents:
48312
diff
changeset
|
997 |
mesh_facts max_facts mess |
|
48288
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
998 |
|> not (null add_ths) ? prepend_facts add_ths |
|
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
999 |
end |
|
255c6e1fd505
rationalize relevance filter, slowing moving code from Iter to MaSh
blanchet
parents:
48251
diff
changeset
|
1000 |
|
|
48319
340187063d84
use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents:
48318
diff
changeset
|
1001 |
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
|
1002 |
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
|
1003 |
|
| 48248 | 1004 |
end; |