src/HOL/TPTP/ATP_Theory_Export.thy
author blanchet
Mon, 09 Jul 2012 23:23:12 +0200
changeset 48216 9075d4636dd8
parent 48213 d20add034f64
child 48217 8994afe09c18
permissions -rw-r--r--
generate problem file

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

header {* ATP Theory Exporter *}

theory ATP_Theory_Export
imports (* Complex_Main *) "~~/src/HOL/Sledgehammer2d" (* ### *)
uses "atp_theory_export.ML"
begin

ML {*
open ATP_Problem;
open ATP_Theory_Export;
*}

ML {*
val do_it = true (* false ### *); (* switch to "true" to generate the files *)
val thy = @{theory Nat}; (* @{theory Complex_Main}; ### *)
val ctxt = @{context}
*}

ML {*
if do_it then
  "/tmp/mash_sample_problem.out"
  |> generate_mash_accessibility_file_for_theory thy
else
  ()
*}

ML {*
if do_it then
  "/tmp/mash_accessibility.out"
  |> generate_mash_accessibility_file_for_theory thy false
else
  ()
*}

ML {*
if do_it then
  "/tmp/mash_features.out"
  |> generate_mash_feature_file_for_theory thy false
else
  ()
*}

ML {*
if do_it then
  "/tmp/mash_dependencies.out"
  |> generate_mash_dependency_file_for_theory thy false
else
   ()
*}

ML {*
if do_it then
  "/tmp/infs_poly_guards_query_query.tptp"
  |> generate_tptp_inference_file_for_theory ctxt thy FOF
                                             "poly_guards_query_query"
else
  ()
*}

ML {*
if do_it then
  "/tmp/infs_poly_tags_query_query.tptp"
  |> generate_tptp_inference_file_for_theory ctxt thy FOF
                                             "poly_tags_query_query"
else
  ()
*}

ML {*
if do_it then
  "/tmp/axs_tc_native.dfg"
  |> generate_tptp_inference_file_for_theory ctxt thy (DFG Polymorphic)
                                             "tc_native"
else
  ()
*}

end