author | boehmes |
Wed, 24 Nov 2010 10:39:58 +0100 | |
changeset 40681 | 872b08416fb4 |
parent 40664 | e023788a91a1 |
child 40806 | 59d96f777da3 |
permissions | -rw-r--r-- |
36898 | 1 |
(* Title: HOL/SMT.thy |
2 |
Author: Sascha Boehme, TU Muenchen |
|
3 |
*) |
|
4 |
||
5 |
header {* Bindings to Satisfiability Modulo Theories (SMT) solvers *} |
|
6 |
||
7 |
theory SMT |
|
8 |
imports List |
|
9 |
uses |
|
39483
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
10 |
"Tools/Datatype/datatype_selectors.ML" |
40424
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
11 |
"Tools/SMT/smt_failure.ML" |
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
12 |
"Tools/SMT/smt_config.ML" |
40662
798aad2229c0
added prove reconstruction for injective functions;
boehmes
parents:
40424
diff
changeset
|
13 |
"Tools/SMT/smt_utils.ML" |
40424
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
14 |
"Tools/SMT/smt_monomorph.ML" |
40277 | 15 |
("Tools/SMT/smt_builtin.ML") |
36898 | 16 |
("Tools/SMT/smt_normalize.ML") |
17 |
("Tools/SMT/smt_translate.ML") |
|
18 |
("Tools/SMT/smt_solver.ML") |
|
19 |
("Tools/SMT/smtlib_interface.ML") |
|
20 |
("Tools/SMT/z3_proof_parser.ML") |
|
21 |
("Tools/SMT/z3_proof_tools.ML") |
|
22 |
("Tools/SMT/z3_proof_literals.ML") |
|
40662
798aad2229c0
added prove reconstruction for injective functions;
boehmes
parents:
40424
diff
changeset
|
23 |
("Tools/SMT/z3_proof_methods.ML") |
36898 | 24 |
("Tools/SMT/z3_proof_reconstruction.ML") |
25 |
("Tools/SMT/z3_model.ML") |
|
26 |
("Tools/SMT/z3_interface.ML") |
|
40162
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
27 |
("Tools/SMT/smt_setup_solvers.ML") |
36898 | 28 |
begin |
29 |
||
30 |
||
31 |
||
36902
c6bae4456741
use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents:
36899
diff
changeset
|
32 |
subsection {* Triggers for quantifier instantiation *} |
36898 | 33 |
|
34 |
text {* |
|
35 |
Some SMT solvers support triggers for quantifier instantiation. |
|
36 |
Each trigger consists of one ore more patterns. A pattern may either |
|
37124 | 37 |
be a list of positive subterms (each being tagged by "pat"), or a |
38 |
list of negative subterms (each being tagged by "nopat"). |
|
39 |
||
40 |
When an SMT solver finds a term matching a positive pattern (a |
|
41 |
pattern with positive subterms only), it instantiates the |
|
42 |
corresponding quantifier accordingly. Negative patterns inhibit |
|
43 |
quantifier instantiations. Each pattern should mention all preceding |
|
44 |
bound variables. |
|
36898 | 45 |
*} |
46 |
||
47 |
datatype pattern = Pattern |
|
48 |
||
37124 | 49 |
definition pat :: "'a \<Rightarrow> pattern" where "pat _ = Pattern" |
50 |
definition nopat :: "'a \<Rightarrow> pattern" where "nopat _ = Pattern" |
|
36898 | 51 |
|
37124 | 52 |
definition trigger :: "pattern list list \<Rightarrow> bool \<Rightarrow> bool" |
36898 | 53 |
where "trigger _ P = P" |
54 |
||
55 |
||
56 |
||
40664 | 57 |
subsection {* Quantifier weights *} |
58 |
||
59 |
text {* |
|
60 |
Weight annotations to quantifiers influence the priority of quantifier |
|
61 |
instantiations. They should be handled with care for solvers, which support |
|
62 |
them, because incorrect choices of weights might render a problem unsolvable. |
|
63 |
*} |
|
64 |
||
65 |
definition weight :: "int \<Rightarrow> bool \<Rightarrow> bool" where "weight _ P = P" |
|
66 |
||
67 |
text {* |
|
68 |
Weights must be non-negative. The value @{text 0} is equivalent to providing |
|
69 |
no weight at all. |
|
70 |
||
71 |
Weights should only be used at quantifiers and only inside triggers (if the |
|
72 |
quantifier has triggers). Valid usages of weights are as follows: |
|
73 |
||
74 |
\begin{itemize} |
|
75 |
\item |
|
76 |
@{term "\<forall>x. trigger [[pat (P x)]] (weight 2 (P x))"} |
|
77 |
\item |
|
78 |
@{term "\<forall>x. weight 3 (P x)"} |
|
79 |
\end{itemize} |
|
80 |
*} |
|
81 |
||
82 |
||
83 |
||
36902
c6bae4456741
use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents:
36899
diff
changeset
|
84 |
subsection {* Higher-order encoding *} |
36898 | 85 |
|
86 |
text {* |
|
87 |
Application is made explicit for constants occurring with varying |
|
88 |
numbers of arguments. This is achieved by the introduction of the |
|
89 |
following constant. |
|
90 |
*} |
|
91 |
||
37153
8feed34275ce
renamed constant "apply" to "fun_app" (which is closer to the related "fun_upd")
boehmes
parents:
37151
diff
changeset
|
92 |
definition fun_app where "fun_app f x = f x" |
36898 | 93 |
|
94 |
text {* |
|
95 |
Some solvers support a theory of arrays which can be used to encode |
|
96 |
higher-order functions. The following set of lemmas specifies the |
|
97 |
properties of such (extensional) arrays. |
|
98 |
*} |
|
99 |
||
100 |
lemmas array_rules = ext fun_upd_apply fun_upd_same fun_upd_other |
|
37157 | 101 |
fun_upd_upd fun_app_def |
36898 | 102 |
|
103 |
||
104 |
||
36902
c6bae4456741
use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents:
36899
diff
changeset
|
105 |
subsection {* First-order logic *} |
36898 | 106 |
|
107 |
text {* |
|
108 |
Some SMT solvers require a strict separation between formulas and |
|
109 |
terms. When translating higher-order into first-order problems, |
|
110 |
all uninterpreted constants (those not builtin in the target solver) |
|
111 |
are treated as function symbols in the first-order sense. Their |
|
112 |
occurrences as head symbols in atoms (i.e., as predicate symbols) is |
|
113 |
turned into terms by equating such atoms with @{term True} using the |
|
114 |
following term-level equation symbol. |
|
115 |
*} |
|
116 |
||
37124 | 117 |
definition term_eq :: "bool \<Rightarrow> bool \<Rightarrow> bool" where "term_eq x y = (x = y)" |
36898 | 118 |
|
119 |
||
120 |
||
37151 | 121 |
subsection {* Integer division and modulo for Z3 *} |
122 |
||
123 |
definition z3div :: "int \<Rightarrow> int \<Rightarrow> int" where |
|
124 |
"z3div k l = (if 0 \<le> l then k div l else -(k div (-l)))" |
|
125 |
||
126 |
definition z3mod :: "int \<Rightarrow> int \<Rightarrow> int" where |
|
127 |
"z3mod k l = (if 0 \<le> l then k mod l else k mod (-l))" |
|
128 |
||
129 |
lemma div_by_z3div: "k div l = ( |
|
130 |
if k = 0 \<or> l = 0 then 0 |
|
131 |
else if (0 < k \<and> 0 < l) \<or> (k < 0 \<and> 0 < l) then z3div k l |
|
132 |
else z3div (-k) (-l))" |
|
133 |
by (auto simp add: z3div_def) |
|
134 |
||
135 |
lemma mod_by_z3mod: "k mod l = ( |
|
136 |
if l = 0 then k |
|
137 |
else if k = 0 then 0 |
|
138 |
else if (0 < k \<and> 0 < l) \<or> (k < 0 \<and> 0 < l) then z3mod k l |
|
139 |
else - z3mod (-k) (-l))" |
|
140 |
by (auto simp add: z3mod_def) |
|
141 |
||
142 |
||
143 |
||
36902
c6bae4456741
use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents:
36899
diff
changeset
|
144 |
subsection {* Setup *} |
36898 | 145 |
|
40277 | 146 |
use "Tools/SMT/smt_builtin.ML" |
36898 | 147 |
use "Tools/SMT/smt_normalize.ML" |
148 |
use "Tools/SMT/smt_translate.ML" |
|
149 |
use "Tools/SMT/smt_solver.ML" |
|
150 |
use "Tools/SMT/smtlib_interface.ML" |
|
151 |
use "Tools/SMT/z3_interface.ML" |
|
152 |
use "Tools/SMT/z3_proof_parser.ML" |
|
153 |
use "Tools/SMT/z3_proof_tools.ML" |
|
154 |
use "Tools/SMT/z3_proof_literals.ML" |
|
40662
798aad2229c0
added prove reconstruction for injective functions;
boehmes
parents:
40424
diff
changeset
|
155 |
use "Tools/SMT/z3_proof_methods.ML" |
36898 | 156 |
use "Tools/SMT/z3_proof_reconstruction.ML" |
157 |
use "Tools/SMT/z3_model.ML" |
|
40162
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
158 |
use "Tools/SMT/smt_setup_solvers.ML" |
36898 | 159 |
|
160 |
setup {* |
|
40424
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
161 |
SMT_Config.setup #> |
36898 | 162 |
SMT_Solver.setup #> |
163 |
Z3_Proof_Reconstruction.setup #> |
|
40162
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
164 |
SMT_Setup_Solvers.setup |
36898 | 165 |
*} |
166 |
||
167 |
||
168 |
||
36902
c6bae4456741
use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents:
36899
diff
changeset
|
169 |
subsection {* Configuration *} |
36898 | 170 |
|
171 |
text {* |
|
36899
bcd6fce5bf06
layered SMT setup, adapted SMT clients, added further tests, made Z3 proof abstraction configurable
boehmes
parents:
36898
diff
changeset
|
172 |
The current configuration can be printed by the command |
bcd6fce5bf06
layered SMT setup, adapted SMT clients, added further tests, made Z3 proof abstraction configurable
boehmes
parents:
36898
diff
changeset
|
173 |
@{text smt_status}, which shows the values of most options. |
36898 | 174 |
*} |
175 |
||
176 |
||
177 |
||
178 |
subsection {* General configuration options *} |
|
179 |
||
180 |
text {* |
|
181 |
The option @{text smt_solver} can be used to change the target SMT |
|
182 |
solver. The possible values are @{text cvc3}, @{text yices}, and |
|
183 |
@{text z3}. It is advisable to locally install the selected solver, |
|
184 |
although this is not necessary for @{text cvc3} and @{text z3}, which |
|
185 |
can also be used over an Internet-based service. |
|
186 |
||
187 |
When using local SMT solvers, the path to their binaries should be |
|
188 |
declared by setting the following environment variables: |
|
189 |
@{text CVC3_SOLVER}, @{text YICES_SOLVER}, and @{text Z3_SOLVER}. |
|
190 |
*} |
|
191 |
||
192 |
declare [[ smt_solver = z3 ]] |
|
193 |
||
194 |
text {* |
|
195 |
Since SMT solvers are potentially non-terminating, there is a timeout |
|
196 |
(given in seconds) to restrict their runtime. A value greater than |
|
197 |
120 (seconds) is in most cases not advisable. |
|
198 |
*} |
|
199 |
||
200 |
declare [[ smt_timeout = 20 ]] |
|
201 |
||
40162
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
202 |
text {* |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
203 |
In general, the binding to SMT solvers runs as an oracle, i.e, the SMT |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
204 |
solvers are fully trusted without additional checks. The following |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
205 |
option can cause the SMT solver to run in proof-producing mode, giving |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
206 |
a checkable certificate. This is currently only implemented for Z3. |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
207 |
*} |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
208 |
|
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
209 |
declare [[ smt_oracle = false ]] |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
210 |
|
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
211 |
text {* |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
212 |
Each SMT solver provides several commandline options to tweak its |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
213 |
behaviour. They can be passed to the solver by setting the following |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
214 |
options. |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
215 |
*} |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
216 |
|
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
217 |
declare [[ cvc3_options = "", yices_options = "", z3_options = "" ]] |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
218 |
|
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
219 |
text {* |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
220 |
Enable the following option to use built-in support for datatypes and |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
221 |
records. Currently, this is only implemented for Z3 running in oracle |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
222 |
mode. |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
223 |
*} |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
224 |
|
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
225 |
declare [[ smt_datatypes = false ]] |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
226 |
|
36898 | 227 |
|
228 |
||
229 |
subsection {* Certificates *} |
|
230 |
||
231 |
text {* |
|
232 |
By setting the option @{text smt_certificates} to the name of a file, |
|
233 |
all following applications of an SMT solver a cached in that file. |
|
234 |
Any further application of the same SMT solver (using the very same |
|
235 |
configuration) re-uses the cached certificate instead of invoking the |
|
236 |
solver. An empty string disables caching certificates. |
|
237 |
||
238 |
The filename should be given as an explicit path. It is good |
|
239 |
practice to use the name of the current theory (with ending |
|
240 |
@{text ".certs"} instead of @{text ".thy"}) as the certificates file. |
|
241 |
*} |
|
242 |
||
243 |
declare [[ smt_certificates = "" ]] |
|
244 |
||
245 |
text {* |
|
246 |
The option @{text smt_fixed} controls whether only stored |
|
247 |
certificates are should be used or invocation of an SMT solver is |
|
248 |
allowed. When set to @{text true}, no SMT solver will ever be |
|
249 |
invoked and only the existing certificates found in the configured |
|
250 |
cache are used; when set to @{text false} and there is no cached |
|
251 |
certificate for some proposition, then the configured SMT solver is |
|
252 |
invoked. |
|
253 |
*} |
|
254 |
||
255 |
declare [[ smt_fixed = false ]] |
|
256 |
||
257 |
||
258 |
||
259 |
subsection {* Tracing *} |
|
260 |
||
261 |
text {* |
|
40424
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
262 |
The SMT method, when applied, traces important information. To |
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
263 |
make it entirely silent, set the following option to @{text false}. |
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
264 |
*} |
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
265 |
|
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
266 |
declare [[ smt_verbose = true ]] |
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
267 |
|
7550b2cba1cb
better modularization: moved SMT configuration options and diagnostics as well as SMT failure and exception into separate structures (both of which are loaded first and consequently are available to other SMT structures)
boehmes
parents:
40277
diff
changeset
|
268 |
text {* |
36898 | 269 |
For tracing the generated problem file given to the SMT solver as |
270 |
well as the returned result of the solver, the option |
|
271 |
@{text smt_trace} should be set to @{text true}. |
|
272 |
*} |
|
273 |
||
274 |
declare [[ smt_trace = false ]] |
|
275 |
||
276 |
text {* |
|
40162
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
277 |
From the set of assumptions given to the SMT solver, those assumptions |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
278 |
used in the proof are traced when the following option is set to |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
279 |
@{term true}. This only works for Z3 when it runs in non-oracle mode |
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
280 |
(see options @{text smt_solver} and @{text smt_oracle} above). |
36898 | 281 |
*} |
282 |
||
40162
7f58a9a843c2
joined setup of SMT solvers in one place; turned Z3-specific options into SMT options (renamed configuration options from z3_* to smt_*); more detailed SMT exception; improved SMT filter interface
boehmes
parents:
39483
diff
changeset
|
283 |
declare [[ smt_trace_used_facts = false ]] |
39298
5aefb5bc8a93
added preliminary support for SMT datatypes (for now restricted to tuples and lists); only the Z3 interface (in oracle mode) makes use of it, there is especially no Z3 proof reconstruction support for datatypes yet
boehmes
parents:
37818
diff
changeset
|
284 |
|
36898 | 285 |
|
286 |
||
36902
c6bae4456741
use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents:
36899
diff
changeset
|
287 |
subsection {* Schematic rules for Z3 proof reconstruction *} |
36898 | 288 |
|
289 |
text {* |
|
290 |
Several prof rules of Z3 are not very well documented. There are two |
|
291 |
lemma groups which can turn failing Z3 proof reconstruction attempts |
|
292 |
into succeeding ones: the facts in @{text z3_rule} are tried prior to |
|
293 |
any implemented reconstruction procedure for all uncertain Z3 proof |
|
294 |
rules; the facts in @{text z3_simp} are only fed to invocations of |
|
295 |
the simplifier when reconstructing theory-specific proof steps. |
|
296 |
*} |
|
297 |
||
298 |
lemmas [z3_rule] = |
|
299 |
refl eq_commute conj_commute disj_commute simp_thms nnf_simps |
|
300 |
ring_distribs field_simps times_divide_eq_right times_divide_eq_left |
|
301 |
if_True if_False not_not |
|
302 |
||
303 |
lemma [z3_rule]: |
|
304 |
"(P \<longrightarrow> Q) = (Q \<or> \<not>P)" |
|
305 |
"(\<not>P \<longrightarrow> Q) = (P \<or> Q)" |
|
306 |
"(\<not>P \<longrightarrow> Q) = (Q \<or> P)" |
|
307 |
by auto |
|
308 |
||
309 |
lemma [z3_rule]: |
|
310 |
"((P = Q) \<longrightarrow> R) = (R | (Q = (\<not>P)))" |
|
311 |
by auto |
|
312 |
||
313 |
lemma [z3_rule]: |
|
314 |
"((\<not>P) = P) = False" |
|
315 |
"(P = (\<not>P)) = False" |
|
316 |
"(P \<noteq> Q) = (Q = (\<not>P))" |
|
317 |
"(P = Q) = ((\<not>P \<or> Q) \<and> (P \<or> \<not>Q))" |
|
318 |
"(P \<noteq> Q) = ((\<not>P \<or> \<not>Q) \<and> (P \<or> Q))" |
|
319 |
by auto |
|
320 |
||
321 |
lemma [z3_rule]: |
|
322 |
"(if P then P else \<not>P) = True" |
|
323 |
"(if \<not>P then \<not>P else P) = True" |
|
324 |
"(if P then True else False) = P" |
|
325 |
"(if P then False else True) = (\<not>P)" |
|
326 |
"(if \<not>P then x else y) = (if P then y else x)" |
|
327 |
by auto |
|
328 |
||
329 |
lemma [z3_rule]: |
|
330 |
"P = Q \<or> P \<or> Q" |
|
331 |
"P = Q \<or> \<not>P \<or> \<not>Q" |
|
332 |
"(\<not>P) = Q \<or> \<not>P \<or> Q" |
|
333 |
"(\<not>P) = Q \<or> P \<or> \<not>Q" |
|
334 |
"P = (\<not>Q) \<or> \<not>P \<or> Q" |
|
335 |
"P = (\<not>Q) \<or> P \<or> \<not>Q" |
|
336 |
"P \<noteq> Q \<or> P \<or> \<not>Q" |
|
337 |
"P \<noteq> Q \<or> \<not>P \<or> Q" |
|
338 |
"P \<noteq> (\<not>Q) \<or> P \<or> Q" |
|
339 |
"(\<not>P) \<noteq> Q \<or> P \<or> Q" |
|
340 |
"P \<or> Q \<or> P \<noteq> (\<not>Q)" |
|
341 |
"P \<or> Q \<or> (\<not>P) \<noteq> Q" |
|
342 |
"P \<or> \<not>Q \<or> P \<noteq> Q" |
|
343 |
"\<not>P \<or> Q \<or> P \<noteq> Q" |
|
344 |
by auto |
|
345 |
||
346 |
lemma [z3_rule]: |
|
347 |
"0 + (x::int) = x" |
|
348 |
"x + 0 = x" |
|
349 |
"0 * x = 0" |
|
350 |
"1 * x = x" |
|
351 |
"x + y = y + x" |
|
352 |
by auto |
|
353 |
||
37124 | 354 |
|
355 |
||
356 |
hide_type (open) pattern |
|
37153
8feed34275ce
renamed constant "apply" to "fun_app" (which is closer to the related "fun_upd")
boehmes
parents:
37151
diff
changeset
|
357 |
hide_const Pattern term_eq |
40681
872b08416fb4
be more precise: only treat constant 'distinct' applied to an explicit list as built-in
boehmes
parents:
40664
diff
changeset
|
358 |
hide_const (open) trigger pat nopat weight fun_app z3div z3mod |
37124 | 359 |
|
39483
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
360 |
|
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
361 |
|
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
362 |
subsection {* Selectors for datatypes *} |
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
363 |
|
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
364 |
setup {* Datatype_Selectors.setup *} |
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
365 |
|
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
366 |
declare [[ selector Pair 1 = fst, selector Pair 2 = snd ]] |
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
367 |
declare [[ selector Cons 1 = hd, selector Cons 2 = tl ]] |
9f0e5684f04b
add full support for datatypes to the SMT interface (only used by Z3 in oracle mode so far); added store to keep track of datatype selector functions
boehmes
parents:
39298
diff
changeset
|
368 |
|
36898 | 369 |
end |