src/HOL/TPTP/MaSh_Export.thy
author blanchet
Wed, 18 Jul 2012 08:44:05 +0200
changeset 48333 2250197977dc
parent 48304 50e64af9c829
child 48379 2b5ad61e2ccc
permissions -rw-r--r--
repair MaSh exporter

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

header {* MaSh Exporter *}

theory MaSh_Export
imports Complex_Main
uses "mash_export.ML"
begin

sledgehammer_params
  [provers = e, max_relevant = 40, strict, dont_slice, type_enc = poly_guards??,
   lam_trans = combs_and_lifting, timeout = 5, dont_preplay, minimize]

ML {*
open MaSh_Export
*}

ML {*
val do_it = false (* switch to "true" to generate the files *)
val thy = @{theory List}
val params as {provers, ...} = Sledgehammer_Isar.default_params @{context} []
val prover = hd provers
*}

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

ML {*
if do_it then
  generate_features @{context} prover thy false "/tmp/mash_features"
else
  ()
*}

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

ML {*
if do_it then
  generate_commands @{context} prover thy "/tmp/mash_commands"
else
  ()
*}

ML {*
if do_it then
  generate_iter_suggestions @{context} params thy 500 "/tmp/mash_iter_suggestions"
else
  ()
*}

ML {*
if do_it then
  generate_atp_dependencies @{context} params thy false "/tmp/mash_atp_dependencies"
else
  ()
*}


end