src/HOL/Tools/Mirabelle/Mirabelle.thy
author boehmes
Fri, 21 Aug 2009 13:21:19 +0200
changeset 32385 594890623c46
parent 32383 521065a499c6
permissions -rw-r--r--
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
     1 (* Title: Mirabelle.thy
     2    Author: Jasmin Blanchette and Sascha Boehme
     3 *)
     4 
     5 theory Mirabelle
     6 imports Pure
     7 uses "Tools/mirabelle.ML"
     8 begin
     9 
    10 (* no multithreading, no parallel proofs *)
    11 ML {* Multithreading.max_threads := 1 *}
    12 ML {* Goal.parallel_proofs := 0 *}
    13 
    14 ML {* Toplevel.add_hook Mirabelle.step_hook *}
    15 
    16 setup Mirabelle.setup
    17 
    18 ML {*
    19 signature MIRABELLE_ACTION =
    20 sig
    21   val invoke : (string * string) list -> theory -> theory
    22 end
    23 *}
    24 
    25 end