src/HOL/TPTP/MaSh_Import.thy
author blanchet
Wed, 18 Jul 2012 08:44:03 +0200
changeset 48284 a3cb8901d60c
parent 48251 6cdcfbddc077
permissions -rw-r--r--
clean up dependencies

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

header {* MaSh Importer *}

theory MaSh_Import
imports MaSh_Export
uses "mash_import.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]

declare [[sledgehammer_instantiate_inducts]]

ML {*
open MaSh_Import
*}

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

ML {*
if do_it then
  import_and_evaluate_mash_suggestions @{context} params thy "/tmp/mash_suggestions_list"
else
  ()
*}

end