src/HOL/TPTP/MaSh_Import.thy
author blanchet
Wed, 11 Jul 2012 21:43:19 +0200
changeset 48250 1065c307fafe
parent 48245 854a47677335
child 48251 6cdcfbddc077
permissions -rw-r--r--
further ML structure split to permit finer-grained loading/reordering (problem to solve: MaSh needs most of Sledgehammer)

(*  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

declare [[sledgehammer_instantiate_inducts]]

ML {*
open MaSh_Import
*}

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

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

end