be more cautious wrt. simp rules: sup1_iff, sup2_iff, inf1_iff, inf2_iff, SUP1_iff, SUP2_iff, INF1_iff, INF2_iff are no longer simp by default
(* 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