1(*  Title:      HOL/TPTP/ATP_Problem_Import.thy
2    Author:     Jasmin Blanchette, TU Muenchen
3*)
4
5section \<open>ATP Problem Importer\<close>
6
7theory ATP_Problem_Import
8imports Complex_Main TPTP_Interpret "HOL-Library.Refute"
9begin
10
11ML_file "sledgehammer_tactics.ML"
12
13ML \<open>Proofterm.proofs := 0\<close>
14
15declare [[show_consts]] (* for Refute *)
16declare [[smt_oracle]]
17
18declare [[unify_search_bound = 60]]
19declare [[unify_trace_bound = 60]]
20
21ML_file "atp_problem_import.ML"
22
23(*
24ML {* ATP_Problem_Import.isabelle_tptp_file @{theory} 50 "$TPTP/Problems/PUZ/PUZ107^5.p" *}
25ML {* ATP_Problem_Import.isabelle_hot_tptp_file @{theory} 20 "$TPTP/Problems/SYO/SYO304^5.p" *}
26*)
27
28end
29