| author | blanchet | 
| Fri, 05 Sep 2014 00:41:01 +0200 | |
| changeset 58187 | d2ddd401d74d | 
| parent 58072 | a86c962de77f | 
| child 58360 | dee1fd1cc631 | 
| permissions | -rw-r--r-- | 
| 58061 | 1 | (* Title: HOL/SMT.thy | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 2 | Author: Sascha Boehme, TU Muenchen | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 3 | *) | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 4 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 5 | header {* Bindings to Satisfiability Modulo Theories (SMT) solvers based on SMT-LIB 2 *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 6 | |
| 58061 | 7 | theory SMT | 
| 57230 | 8 | imports Divides | 
| 58061 | 9 | keywords "smt_status" :: diag | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 10 | begin | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 11 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 12 | subsection {* Triggers for quantifier instantiation *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 13 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 14 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 15 | Some SMT solvers support patterns as a quantifier instantiation | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 16 | heuristics. Patterns may either be positive terms (tagged by "pat") | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 17 | triggering quantifier instantiations -- when the solver finds a | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 18 | term matching a positive pattern, it instantiates the corresponding | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 19 | quantifier accordingly -- or negative terms (tagged by "nopat") | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 20 | inhibiting quantifier instantiations. A list of patterns | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 21 | of the same kind is called a multipattern, and all patterns in a | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 22 | multipattern are considered conjunctively for quantifier instantiation. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 23 | A list of multipatterns is called a trigger, and their multipatterns | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 24 | act disjunctively during quantifier instantiation. Each multipattern | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 25 | should mention at least all quantified variables of the preceding | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 26 | quantifier block. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 27 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 28 | |
| 57230 | 29 | typedecl 'a symb_list | 
| 30 | ||
| 31 | consts | |
| 32 | Symb_Nil :: "'a symb_list" | |
| 33 | Symb_Cons :: "'a \<Rightarrow> 'a symb_list \<Rightarrow> 'a symb_list" | |
| 34 | ||
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 35 | typedecl pattern | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 36 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 37 | consts | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 38 | pat :: "'a \<Rightarrow> pattern" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 39 | nopat :: "'a \<Rightarrow> pattern" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 40 | |
| 57230 | 41 | definition trigger :: "pattern symb_list symb_list \<Rightarrow> bool \<Rightarrow> bool" where | 
| 42 | "trigger _ P = P" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 43 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 44 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 45 | subsection {* Higher-order encoding *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 46 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 47 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 48 | Application is made explicit for constants occurring with varying | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 49 | numbers of arguments. This is achieved by the introduction of the | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 50 | following constant. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 51 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 52 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 53 | definition fun_app :: "'a \<Rightarrow> 'a" where "fun_app f = f" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 54 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 55 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 56 | Some solvers support a theory of arrays which can be used to encode | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 57 | higher-order functions. The following set of lemmas specifies the | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 58 | properties of such (extensional) arrays. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 59 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 60 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 61 | lemmas array_rules = ext fun_upd_apply fun_upd_same fun_upd_other fun_upd_upd fun_app_def | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 62 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 63 | |
| 56103 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 64 | subsection {* Normalization *}
 | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 65 | |
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 66 | lemma case_bool_if[abs_def]: "case_bool x y P = (if P then x else y)" | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 67 | by simp | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 68 | |
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 69 | lemmas Ex1_def_raw = Ex1_def[abs_def] | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 70 | lemmas Ball_def_raw = Ball_def[abs_def] | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 71 | lemmas Bex_def_raw = Bex_def[abs_def] | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 72 | lemmas abs_if_raw = abs_if[abs_def] | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 73 | lemmas min_def_raw = min_def[abs_def] | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 74 | lemmas max_def_raw = max_def[abs_def] | 
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 75 | |
| 
6689512f3710
move lemmas to theory file, towards textual proof reconstruction
 blanchet parents: 
56102diff
changeset | 76 | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 77 | subsection {* Integer division and modulo for Z3 *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 78 | |
| 56102 | 79 | text {*
 | 
| 80 | The following Z3-inspired definitions are overspecified for the case where @{text "l = 0"}. This
 | |
| 81 | Schönheitsfehler is corrected in the @{text div_as_z3div} and @{text mod_as_z3mod} theorems.
 | |
| 82 | *} | |
| 83 | ||
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 84 | definition z3div :: "int \<Rightarrow> int \<Rightarrow> int" where | 
| 56102 | 85 | "z3div k l = (if l \<ge> 0 then k div l else - (k div - l))" | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 86 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 87 | definition z3mod :: "int \<Rightarrow> int \<Rightarrow> int" where | 
| 56102 | 88 | "z3mod k l = k mod (if l \<ge> 0 then l else - l)" | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 89 | |
| 56101 | 90 | lemma div_as_z3div: | 
| 56102 | 91 | "\<forall>k l. k div l = (if l = 0 then 0 else if l > 0 then z3div k l else z3div (- k) (- l))" | 
| 56101 | 92 | by (simp add: z3div_def) | 
| 93 | ||
| 94 | lemma mod_as_z3mod: | |
| 56102 | 95 | "\<forall>k l. k mod l = (if l = 0 then k else if l > 0 then z3mod k l else - z3mod (- k) (- l))" | 
| 56101 | 96 | by (simp add: z3mod_def) | 
| 97 | ||
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 98 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 99 | subsection {* Setup *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 100 | |
| 58061 | 101 | ML_file "Tools/SMT/smt_util.ML" | 
| 102 | ML_file "Tools/SMT/smt_failure.ML" | |
| 103 | ML_file "Tools/SMT/smt_config.ML" | |
| 104 | ML_file "Tools/SMT/smt_builtin.ML" | |
| 105 | ML_file "Tools/SMT/smt_datatypes.ML" | |
| 106 | ML_file "Tools/SMT/smt_normalize.ML" | |
| 107 | ML_file "Tools/SMT/smt_translate.ML" | |
| 108 | ML_file "Tools/SMT/smtlib.ML" | |
| 109 | ML_file "Tools/SMT/smtlib_interface.ML" | |
| 110 | ML_file "Tools/SMT/smtlib_proof.ML" | |
| 111 | ML_file "Tools/SMT/smtlib_isar.ML" | |
| 112 | ML_file "Tools/SMT/z3_proof.ML" | |
| 113 | ML_file "Tools/SMT/z3_isar.ML" | |
| 114 | ML_file "Tools/SMT/smt_solver.ML" | |
| 115 | ML_file "Tools/SMT/z3_interface.ML" | |
| 116 | ML_file "Tools/SMT/z3_replay_util.ML" | |
| 117 | ML_file "Tools/SMT/z3_replay_literals.ML" | |
| 118 | ML_file "Tools/SMT/z3_replay_rules.ML" | |
| 119 | ML_file "Tools/SMT/z3_replay_methods.ML" | |
| 120 | ML_file "Tools/SMT/z3_replay.ML" | |
| 121 | ML_file "Tools/SMT/verit_proof.ML" | |
| 122 | ML_file "Tools/SMT/verit_isar.ML" | |
| 123 | ML_file "Tools/SMT/verit_proof_parse.ML" | |
| 124 | ML_file "Tools/SMT/smt_systems.ML" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 125 | |
| 58061 | 126 | method_setup smt = {*
 | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 127 | Scan.optional Attrib.thms [] >> | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 128 | (fn thms => fn ctxt => | 
| 58061 | 129 | METHOD (fn facts => HEADGOAL (SMT_Solver.smt_tac ctxt (thms @ facts)))) | 
| 58072 | 130 | *} "apply an SMT solver to the current goal" | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 131 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 132 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 133 | subsection {* Configuration *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 134 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 135 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 136 | The current configuration can be printed by the command | 
| 58061 | 137 | @{text smt_status}, which shows the values of most options.
 | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 138 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 139 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 140 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 141 | subsection {* General configuration options *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 142 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 143 | text {*
 | 
| 58061 | 144 | The option @{text smt_solver} can be used to change the target SMT
 | 
| 145 | solver. The possible values can be obtained from the @{text smt_status}
 | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 146 | command. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 147 | |
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 148 | Due to licensing restrictions, Z3 is not enabled by default. Z3 is free | 
| 57237 
bc51864c2ac4
took out broken support for Yices from SMT2 stack -- see 'NEWS' for rationale
 blanchet parents: 
57230diff
changeset | 149 | for non-commercial applications and can be enabled by setting Isabelle | 
| 
bc51864c2ac4
took out broken support for Yices from SMT2 stack -- see 'NEWS' for rationale
 blanchet parents: 
57230diff
changeset | 150 | system option @{text z3_non_commercial} to @{text yes}.
 | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 151 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 152 | |
| 58061 | 153 | declare [[smt_solver = z3]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 154 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 155 | text {*
 | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 156 | Since SMT solvers are potentially nonterminating, there is a timeout | 
| 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 157 | (given in seconds) to restrict their runtime. | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 158 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 159 | |
| 58061 | 160 | declare [[smt_timeout = 20]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 161 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 162 | text {*
 | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 163 | SMT solvers apply randomized heuristics. In case a problem is not | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 164 | solvable by an SMT solver, changing the following option might help. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 165 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 166 | |
| 58061 | 167 | declare [[smt_random_seed = 1]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 168 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 169 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 170 | In general, the binding to SMT solvers runs as an oracle, i.e, the SMT | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 171 | solvers are fully trusted without additional checks. The following | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 172 | option can cause the SMT solver to run in proof-producing mode, giving | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 173 | a checkable certificate. This is currently only implemented for Z3. | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 174 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 175 | |
| 58061 | 176 | declare [[smt_oracle = false]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 177 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 178 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 179 | Each SMT solver provides several commandline options to tweak its | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 180 | behaviour. They can be passed to the solver by setting the following | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 181 | options. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 182 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 183 | |
| 58061 | 184 | declare [[cvc3_options = ""]] | 
| 185 | declare [[cvc4_options = ""]] | |
| 186 | declare [[veriT_options = ""]] | |
| 187 | declare [[z3_options = ""]] | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 188 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 189 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 190 | The SMT method provides an inference mechanism to detect simple triggers | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 191 | in quantified formulas, which might increase the number of problems | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 192 | solvable by SMT solvers (note: triggers guide quantifier instantiations | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 193 | in the SMT solver). To turn it on, set the following option. | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 194 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 195 | |
| 58061 | 196 | declare [[smt_infer_triggers = false]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 197 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 198 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 199 | Enable the following option to use built-in support for div/mod, datatypes, | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 200 | and records in Z3. Currently, this is implemented only in oracle mode. | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 201 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 202 | |
| 58061 | 203 | declare [[z3_extensions = false]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 204 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 205 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 206 | subsection {* Certificates *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 207 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 208 | text {*
 | 
| 58061 | 209 | By setting the option @{text smt_certificates} to the name of a file,
 | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 210 | all following applications of an SMT solver a cached in that file. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 211 | Any further application of the same SMT solver (using the very same | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 212 | configuration) re-uses the cached certificate instead of invoking the | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 213 | solver. An empty string disables caching certificates. | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 214 | |
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 215 | The filename should be given as an explicit path. It is good | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 216 | practice to use the name of the current theory (with ending | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 217 | @{text ".certs"} instead of @{text ".thy"}) as the certificates file.
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 218 | Certificate files should be used at most once in a certain theory context, | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 219 | to avoid race conditions with other concurrent accesses. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 220 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 221 | |
| 58061 | 222 | declare [[smt_certificates = ""]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 223 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 224 | text {*
 | 
| 58061 | 225 | The option @{text smt_read_only_certificates} controls whether only
 | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 226 | stored certificates are should be used or invocation of an SMT solver | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 227 | is allowed. When set to @{text true}, no SMT solver will ever be
 | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 228 | invoked and only the existing certificates found in the configured | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 229 | cache are used;  when set to @{text false} and there is no cached
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 230 | certificate for some proposition, then the configured SMT solver is | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 231 | invoked. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 232 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 233 | |
| 58061 | 234 | declare [[smt_read_only_certificates = false]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 235 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 236 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 237 | subsection {* Tracing *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 238 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 239 | text {*
 | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 240 | The SMT method, when applied, traces important information. To | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 241 | make it entirely silent, set the following option to @{text false}.
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 242 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 243 | |
| 58061 | 244 | declare [[smt_verbose = true]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 245 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 246 | text {*
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 247 | For tracing the generated problem file given to the SMT solver as | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 248 | well as the returned result of the solver, the option | 
| 58061 | 249 | @{text smt_trace} should be set to @{text true}.
 | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 250 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 251 | |
| 58061 | 252 | declare [[smt_trace = false]] | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 253 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 254 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 255 | subsection {* Schematic rules for Z3 proof reconstruction *}
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 256 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 257 | text {*
 | 
| 57696 
fb71c6f100f8
do not embed 'nat' into 'int's in 'smt2' method -- this is highly inefficient and decreases the Sledgehammer success rate significantly
 blanchet parents: 
57246diff
changeset | 258 | Several prof rules of Z3 are not very well documented. There are two | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 259 | lemma groups which can turn failing Z3 proof reconstruction attempts | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 260 | into succeeding ones: the facts in @{text z3_rule} are tried prior to
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 261 | any implemented reconstruction procedure for all uncertain Z3 proof | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 262 | rules;  the facts in @{text z3_simp} are only fed to invocations of
 | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 263 | the simplifier when reconstructing theory-specific proof steps. | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 264 | *} | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 265 | |
| 58061 | 266 | lemmas [z3_rule] = | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 267 | refl eq_commute conj_commute disj_commute simp_thms nnf_simps | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 268 | ring_distribs field_simps times_divide_eq_right times_divide_eq_left | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 269 | if_True if_False not_not | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 270 | |
| 58061 | 271 | lemma [z3_rule]: | 
| 57169 | 272 | "(P \<and> Q) = (\<not> (\<not> P \<or> \<not> Q))" | 
| 273 | "(P \<and> Q) = (\<not> (\<not> Q \<or> \<not> P))" | |
| 274 | "(\<not> P \<and> Q) = (\<not> (P \<or> \<not> Q))" | |
| 275 | "(\<not> P \<and> Q) = (\<not> (\<not> Q \<or> P))" | |
| 276 | "(P \<and> \<not> Q) = (\<not> (\<not> P \<or> Q))" | |
| 277 | "(P \<and> \<not> Q) = (\<not> (Q \<or> \<not> P))" | |
| 278 | "(\<not> P \<and> \<not> Q) = (\<not> (P \<or> Q))" | |
| 279 | "(\<not> P \<and> \<not> Q) = (\<not> (Q \<or> P))" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 280 | by auto | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 281 | |
| 58061 | 282 | lemma [z3_rule]: | 
| 57169 | 283 | "(P \<longrightarrow> Q) = (Q \<or> \<not> P)" | 
| 284 | "(\<not> P \<longrightarrow> Q) = (P \<or> Q)" | |
| 285 | "(\<not> P \<longrightarrow> Q) = (Q \<or> P)" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 286 | "(True \<longrightarrow> P) = P" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 287 | "(P \<longrightarrow> True) = True" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 288 | "(False \<longrightarrow> P) = True" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 289 | "(P \<longrightarrow> P) = True" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 290 | by auto | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 291 | |
| 58061 | 292 | lemma [z3_rule]: | 
| 57169 | 293 | "((P = Q) \<longrightarrow> R) = (R | (Q = (\<not> P)))" | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 294 | by auto | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 295 | |
| 58061 | 296 | lemma [z3_rule]: | 
| 57169 | 297 | "(\<not> True) = False" | 
| 298 | "(\<not> False) = True" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 299 | "(x = x) = True" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 300 | "(P = True) = P" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 301 | "(True = P) = P" | 
| 57169 | 302 | "(P = False) = (\<not> P)" | 
| 303 | "(False = P) = (\<not> P)" | |
| 304 | "((\<not> P) = P) = False" | |
| 305 | "(P = (\<not> P)) = False" | |
| 306 | "((\<not> P) = (\<not> Q)) = (P = Q)" | |
| 307 | "\<not> (P = (\<not> Q)) = (P = Q)" | |
| 308 | "\<not> ((\<not> P) = Q) = (P = Q)" | |
| 309 | "(P \<noteq> Q) = (Q = (\<not> P))" | |
| 310 | "(P = Q) = ((\<not> P \<or> Q) \<and> (P \<or> \<not> Q))" | |
| 311 | "(P \<noteq> Q) = ((\<not> P \<or> \<not> Q) \<and> (P \<or> Q))" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 312 | by auto | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 313 | |
| 58061 | 314 | lemma [z3_rule]: | 
| 57169 | 315 | "(if P then P else \<not> P) = True" | 
| 316 | "(if \<not> P then \<not> P else P) = True" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 317 | "(if P then True else False) = P" | 
| 57169 | 318 | "(if P then False else True) = (\<not> P)" | 
| 319 | "(if P then Q else True) = ((\<not> P) \<or> Q)" | |
| 320 | "(if P then Q else True) = (Q \<or> (\<not> P))" | |
| 321 | "(if P then Q else \<not> Q) = (P = Q)" | |
| 322 | "(if P then Q else \<not> Q) = (Q = P)" | |
| 323 | "(if P then \<not> Q else Q) = (P = (\<not> Q))" | |
| 324 | "(if P then \<not> Q else Q) = ((\<not> Q) = P)" | |
| 325 | "(if \<not> P then x else y) = (if P then y else x)" | |
| 326 | "(if P then (if Q then x else y) else x) = (if P \<and> (\<not> Q) then y else x)" | |
| 327 | "(if P then (if Q then x else y) else x) = (if (\<not> Q) \<and> P then y else x)" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 328 | "(if P then (if Q then x else y) else y) = (if P \<and> Q then x else y)" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 329 | "(if P then (if Q then x else y) else y) = (if Q \<and> P then x else y)" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 330 | "(if P then x else if P then y else z) = (if P then x else z)" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 331 | "(if P then x else if Q then x else y) = (if P \<or> Q then x else y)" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 332 | "(if P then x else if Q then x else y) = (if Q \<or> P then x else y)" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 333 | "(if P then x = y else x = z) = (x = (if P then y else z))" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 334 | "(if P then x = y else y = z) = (y = (if P then x else z))" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 335 | "(if P then x = y else z = y) = (y = (if P then x else z))" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 336 | by auto | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 337 | |
| 58061 | 338 | lemma [z3_rule]: | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 339 | "0 + (x::int) = x" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 340 | "x + 0 = x" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 341 | "x + x = 2 * x" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 342 | "0 * x = 0" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 343 | "1 * x = x" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 344 | "x + y = y + x" | 
| 57230 | 345 | by (auto simp add: mult_2) | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 346 | |
| 58061 | 347 | lemma [z3_rule]: (* for def-axiom *) | 
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 348 | "P = Q \<or> P \<or> Q" | 
| 57169 | 349 | "P = Q \<or> \<not> P \<or> \<not> Q" | 
| 350 | "(\<not> P) = Q \<or> \<not> P \<or> Q" | |
| 351 | "(\<not> P) = Q \<or> P \<or> \<not> Q" | |
| 352 | "P = (\<not> Q) \<or> \<not> P \<or> Q" | |
| 353 | "P = (\<not> Q) \<or> P \<or> \<not> Q" | |
| 354 | "P \<noteq> Q \<or> P \<or> \<not> Q" | |
| 355 | "P \<noteq> Q \<or> \<not> P \<or> Q" | |
| 356 | "P \<noteq> (\<not> Q) \<or> P \<or> Q" | |
| 357 | "(\<not> P) \<noteq> Q \<or> P \<or> Q" | |
| 358 | "P \<or> Q \<or> P \<noteq> (\<not> Q)" | |
| 359 | "P \<or> Q \<or> (\<not> P) \<noteq> Q" | |
| 360 | "P \<or> \<not> Q \<or> P \<noteq> Q" | |
| 361 | "\<not> P \<or> Q \<or> P \<noteq> Q" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 362 | "P \<or> y = (if P then x else y)" | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 363 | "P \<or> (if P then x else y) = y" | 
| 57169 | 364 | "\<not> P \<or> x = (if P then x else y)" | 
| 365 | "\<not> P \<or> (if P then x else y) = x" | |
| 366 | "P \<or> R \<or> \<not> (if P then Q else R)" | |
| 367 | "\<not> P \<or> Q \<or> \<not> (if P then Q else R)" | |
| 368 | "\<not> (if P then Q else R) \<or> \<not> P \<or> Q" | |
| 369 | "\<not> (if P then Q else R) \<or> P \<or> R" | |
| 370 | "(if P then Q else R) \<or> \<not> P \<or> \<not> Q" | |
| 371 | "(if P then Q else R) \<or> P \<or> \<not> R" | |
| 372 | "(if P then \<not> Q else R) \<or> \<not> P \<or> Q" | |
| 373 | "(if P then Q else \<not> R) \<or> P \<or> R" | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 374 | by auto | 
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 375 | |
| 57230 | 376 | hide_type (open) symb_list pattern | 
| 377 | hide_const (open) Symb_Nil Symb_Cons trigger pat nopat fun_app z3div z3mod | |
| 56078 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 378 | |
| 
624faeda77b5
moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
 blanchet parents: diff
changeset | 379 | end |