src/HOL/TPTP/MaSh_Export.thy
author blanchet
Tue, 10 Jul 2012 23:36:03 +0200
changeset 48239 0016290f904c
parent 48235 40655464a93b
child 48245 854a47677335
permissions -rw-r--r--
generate Meng--Paulson facts for evaluation purposes

(*  Title:      HOL/TPTP/MaSh_Export.thy
    Author:     Jasmin Blanchette, TU Muenchen
*)

header {* MaSh Exporter *}

theory MaSh_Export
imports ATP_Theory_Export
uses "mash_export.ML"
begin

sledgehammer_params [provers = e, max_relevant = 500]

ML {*
open MaSh_Export
*}

ML {*
val do_it = false (* switch to "true" to generate the files *);
val thy = @{theory List}
*}

ML {*
if do_it then generate_meng_paulson_suggestions @{context} thy "/tmp/mash_meng_paulson_suggestions"
else ()
*}

ML {*
if do_it then generate_mash_commands thy "/tmp/mash_commands"
else ()
*}

ML {*
if do_it then generate_mash_features thy false "/tmp/mash_features"
else ()
*}

ML {*
if do_it then generate_mash_accessibility thy false "/tmp/mash_accessibility"
else ()
*}

ML {*
if do_it then generate_mash_dependencies thy false "/tmp/mash_dependencies"
else ()
*}

end