val no_attrs : facts_config =
{usings_as_params = false,
simps_prefix = NONE,
intros_prefix = NONE,
elims_prefix = NONE,
dests_prefix = NONE} val full_attrs : facts_config =
{usings_as_params = false,
simps_prefix = SOME "simp: ",
intros_prefix = SOME "intro: ",
elims_prefix = SOME "elim: ",
dests_prefix = SOME "dest: "} val clas_attrs : facts_config =
{usings_as_params = false,
simps_prefix = NONE,
intros_prefix = SOME "intro: ",
elims_prefix = SOME "elim: ",
dests_prefix = SOME "dest: "} val simp_attrs : facts_config =
{usings_as_params = false,
simps_prefix = SOME "add: ",
intros_prefix = NONE,
elims_prefix = NONE,
dests_prefix = NONE} val metis_attrs : facts_config =
{usings_as_params = true,
simps_prefix = SOME "",
intros_prefix = SOME "",
elims_prefix = SOME "",
dests_prefix = SOME ""}
local
fun parse_method ctxt s =
enclose "("")" s
|> Token.explode (Thy_Header.get_keywords' ctxt) Position.start
|> filter Token.is_proper
|> Scan.read Token.stopper Method.parse
|> (fn SOME (Method.Source src, _) => src | _ => raise Fail "expected Source")
fun run_tac timeout_opt tac st = letval with_timeout =
(case timeout_opt of SOME timeout => Timeout.apply_physical timeout | NONE => I) in with_timeout (Seq.pull o tac) st |> Option.map fst end
val num_goals = Thm.nprems_of o #goal o Proof.goal
fun apply_recursive recurse elapsed0 timeout_opt apply st =
(case Timing.timing (Option.join o try (run_tac timeout_opt apply)) st of
({elapsed, ...}, SOME st') => if recurse andalso num_goals st' > 0 andalso num_goals st' < num_goals st then letval timeout_opt1 = (Option.map (fn timeout => timeout - elapsed) timeout_opt) in apply_recursive recurse (elapsed0 + elapsed) timeout_opt1 apply st' end else (elapsed0 + elapsed, st')
|_ => (elapsed0, st))
in
fun apply_raw_named_method (name : string) all_goals (facts_config: facts_config)
(silence_methods : Proof.context -> Proof.context) timeout_opt (facts : Try0.facts)
(st : Proof.state) : Try0.result option = let val st = Proof.map_contexts silence_methods st val ctxt = Proof.context_of st
val (unused_simps, simps_attrs) = if null (#simps facts) then
([], "") else
(case #simps_prefix facts_config of
NONE => (#simps facts, "")
| SOME prefix => ([], " " ^ prefix ^ implode_space (map string_of_xref (#simps facts))))
val (unused_intros, intros_attrs) = if null (#intros facts) then
([], "") else
(case #intros_prefix facts_config of
NONE => (#intros facts, "")
| SOME prefix => ([], " " ^ prefix ^ implode_space (map string_of_xref (#intros facts))))
val (unused_elims, elims_attrs) = if null (#elims facts) then
([], "") else
(case #elims_prefix facts_config of
NONE => (#elims facts, "")
| SOME prefix => ([], " " ^ prefix ^ implode_space (map string_of_xref (#elims facts))))
val (unused_dests, dests_attrs) = if null (#dests facts) then
([], "") else
(case #dests_prefix facts_config of
NONE => (#dests facts, "")
| SOME prefix => ([], " " ^ prefix ^ implode_space (map string_of_xref (#dests facts))))
val (unused_usings, using_attrs) = if null (#usings facts) then
([], "") elseif #usings_as_params facts_config then
([], " " ^ implode_space (map string_of_xref (#usings facts))) else
(#usings facts, "")