src/HOL/TPTP/MaSh_Export_Base.thy
author wenzelm
Tue, 25 Aug 2020 15:02:56 +0200
changeset 72207 b2f6fdff21fa
parent 69605 a96320074298
child 73942 57423714c29d
permissions -rw-r--r--
test HOL-Nitpick_Examples with Isabelle/Scala instead of external process: much faster;

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