| author | wenzelm | 
| Fri, 21 Apr 2017 18:57:30 +0200 | |
| changeset 65541 | ae09b9f5980b | 
| parent 63432 | ba7901e94e7b | 
| child 69605 | a96320074298 | 
| permissions | -rw-r--r-- | 
| 35827 | 1 | (* Title: HOL/Sledgehammer.thy | 
| 38027 | 2 | Author: Lawrence C. Paulson, Cambridge University Computer Laboratory | 
| 38028 | 3 | Author: Jia Meng, Cambridge University Computer Laboratory and NICTA | 
| 35865 | 4 | Author: Jasmin Blanchette, TU Muenchen | 
| 21254 
d53f76357f41
incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
 wenzelm parents: diff
changeset | 5 | *) | 
| 
d53f76357f41
incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
 wenzelm parents: diff
changeset | 6 | |
| 60758 | 7 | section \<open>Sledgehammer: Isabelle--ATP Linkup\<close> | 
| 21254 
d53f76357f41
incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
 wenzelm parents: diff
changeset | 8 | |
| 35827 | 9 | theory Sledgehammer | 
| 58061 | 10 | imports Presburger SMT | 
| 63432 | 11 | keywords | 
| 12 | "sledgehammer" :: diag and | |
| 13 | "sledgehammer_params" :: thy_decl | |
| 21254 
d53f76357f41
incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
 wenzelm parents: diff
changeset | 14 | begin | 
| 
d53f76357f41
incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
 wenzelm parents: diff
changeset | 15 | |
| 54838 
16511f84913c
reconstruct SPASS-Pirate steps of the form 'x ~= C x' (or more complicated)
 blanchet parents: 
52641diff
changeset | 16 | lemma size_ne_size_imp_ne: "size x \<noteq> size y \<Longrightarrow> x \<noteq> y" | 
| 58481 | 17 | by (erule contrapos_nn) (rule arg_cong) | 
| 54838 
16511f84913c
reconstruct SPASS-Pirate steps of the form 'x ~= C x' (or more complicated)
 blanchet parents: 
52641diff
changeset | 18 | |
| 59471 
ca459352d8c5
more explicit indication of Async_Manager_Legacy as Proof General legacy;
 wenzelm parents: 
58889diff
changeset | 19 | ML_file "Tools/Sledgehammer/async_manager_legacy.ML" | 
| 48891 | 20 | ML_file "Tools/Sledgehammer/sledgehammer_util.ML" | 
| 21 | ML_file "Tools/Sledgehammer/sledgehammer_fact.ML" | |
| 55287 | 22 | ML_file "Tools/Sledgehammer/sledgehammer_proof_methods.ML" | 
| 55211 | 23 | ML_file "Tools/Sledgehammer/sledgehammer_isar_annotate.ML" | 
| 55202 
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
 blanchet parents: 
55201diff
changeset | 24 | ML_file "Tools/Sledgehammer/sledgehammer_isar_proof.ML" | 
| 
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
 blanchet parents: 
55201diff
changeset | 25 | ML_file "Tools/Sledgehammer/sledgehammer_isar_preplay.ML" | 
| 
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
 blanchet parents: 
55201diff
changeset | 26 | ML_file "Tools/Sledgehammer/sledgehammer_isar_compress.ML" | 
| 
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
 blanchet parents: 
55201diff
changeset | 27 | ML_file "Tools/Sledgehammer/sledgehammer_isar_minimize.ML" | 
| 
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
 blanchet parents: 
55201diff
changeset | 28 | ML_file "Tools/Sledgehammer/sledgehammer_isar.ML" | 
| 55201 | 29 | ML_file "Tools/Sledgehammer/sledgehammer_prover.ML" | 
| 55205 | 30 | ML_file "Tools/Sledgehammer/sledgehammer_prover_atp.ML" | 
| 58061 | 31 | ML_file "Tools/Sledgehammer/sledgehammer_prover_smt.ML" | 
| 55202 
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
 blanchet parents: 
55201diff
changeset | 32 | ML_file "Tools/Sledgehammer/sledgehammer_prover_minimize.ML" | 
| 48891 | 33 | ML_file "Tools/Sledgehammer/sledgehammer_mepo.ML" | 
| 34 | ML_file "Tools/Sledgehammer/sledgehammer_mash.ML" | |
| 55202 
824c48a539c9
renamed many Sledgehammer ML files to clarify structure
 blanchet parents: 
55201diff
changeset | 35 | ML_file "Tools/Sledgehammer/sledgehammer.ML" | 
| 55198 | 36 | ML_file "Tools/Sledgehammer/sledgehammer_commands.ML" | 
| 48891 | 37 | |
| 21254 
d53f76357f41
incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
 wenzelm parents: diff
changeset | 38 | end |