src/HOL/Mirabelle/Mirabelle.thy
author blanchet
Wed, 23 Mar 2011 10:06:27 +0100
changeset 42071 04577a7e0c51
parent 41358 d5e91925916e
child 42616 92715b528e78
permissions -rw-r--r--
move "TPTP" wrapper and "Sledgehammer as a tactic" to "HOL/ex" default to "e" rather than "vampire" since E is part of the Isabelle bundle

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

theory Mirabelle
imports Sledgehammer
uses "Tools/mirabelle.ML"
     "../ex/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