src/HOL/Mirabelle/Mirabelle.thy
author wenzelm
Wed, 04 Nov 2009 20:31:36 +0100
changeset 33411 a07558eb5029
parent 32564 378528d2f7eb
child 39155 3e94ebe282f1
permissions -rw-r--r--
worker_next: treat wait for work_available as Sleeping, not Waiting; max_threads: simple adaptive scheme between m and 2 * m;

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

theory Mirabelle
imports Pure
uses "Tools/mirabelle.ML"
begin

(* no multithreading, no parallel proofs *)
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