src/HOL/Mirabelle/Mirabelle.thy
author blanchet
Tue, 21 Dec 2010 10:24:56 +0100
changeset 41358 d5e91925916e
parent 39155 3e94ebe282f1
child 42071 04577a7e0c51
permissions -rw-r--r--
renamed "sledgehammer_tactic.ML" to "sledgehammer_tactics.ML" (cf. module name); use it in "Mirabelle.thy"

(*  Title:      HOL/Mirabelle/Mirabelle.thy
    Author:     Jasmin Blanchette and Sascha Boehme, TU Munich
*)

theory Mirabelle
imports Sledgehammer
uses "Tools/mirabelle.ML"
     "Tools/sledgehammer_tactics.ML"
begin

(* no multithreading, no parallel proofs *)  (* FIXME *)
ML {* Multithreading.max_threads := 1 *}
ML {* Goal.parallel_proofs := 0 *}

ML {* Toplevel.add_hook Mirabelle.step_hook *}

setup Mirabelle.setup

ML {*
signature MIRABELLE_ACTION =
sig
  val invoke : (string * string) list -> theory -> theory
end
*}

end