src/HOL/TPTP/MaSh_Export_Base.thy
author wenzelm
Tue, 10 Nov 2020 12:48:56 +0100
changeset 72571 ab4a0b19648a
parent 69605 a96320074298
child 73942 57423714c29d
permissions -rw-r--r--
tuned signature;

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

section \<open>MaSh Exporter Base\<close>

theory MaSh_Export_Base
imports Main
begin

ML_file \<open>mash_export.ML\<close>

sledgehammer_params
  [provers = spass, max_facts = 32, strict, dont_slice, type_enc = mono_native,
   lam_trans = lifting, timeout = 2, dont_preplay, minimize]

declare [[sledgehammer_fact_duplicates = true]]
declare [[sledgehammer_instantiate_inducts = false]]

hide_fact (open) HOL.ext

ML \<open>
Multithreading.max_threads ()
\<close>

ML \<open>
open MaSh_Export
\<close>

ML \<open>
val do_it = false (* switch to "true" to generate the files *)
val thys = [\<^theory>\<open>List\<close>]
val params as {provers, ...} = Sledgehammer_Commands.default_params \<^theory> []
val prover = hd provers
val range = (1, NONE)
val step = 1
val max_suggestions = 1024
val dir = "List"
val prefix = "/tmp/" ^ dir ^ "/"
\<close>

end