src/HOL/SMT.thy
author wenzelm
Tue, 24 Jul 2012 21:36:53 +0200
changeset 48487 94a9650f79fb
parent 47701 157e6108a342
child 48892 0b2407f406e8
permissions -rw-r--r--
tuned order;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
     1
(*  Title:      HOL/SMT.thy
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
     2
    Author:     Sascha Boehme, TU Muenchen
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
     3
*)
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
     4
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
     5
header {* Bindings to Satisfiability Modulo Theories (SMT) solvers *}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
     6
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
     7
theory SMT
41426
09615ed31f04 re-implemented support for datatypes (including records and typedefs);
boehmes
parents: 41328
diff changeset
     8
imports Record
46950
d0181abdbdac declare command keywords via theory header, including strict checking outside Pure;
wenzelm
parents: 45392
diff changeset
     9
keywords "smt_status" :: diag
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    10
uses
41124
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41121
diff changeset
    11
  "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
    12
  "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
    13
  "Tools/SMT/smt_config.ML"
40277
4e3a3461c1a6 added crafted list of SMT built-in constants
boehmes
parents: 40274
diff changeset
    14
  ("Tools/SMT/smt_builtin.ML")
41426
09615ed31f04 re-implemented support for datatypes (including records and typedefs);
boehmes
parents: 41328
diff changeset
    15
  ("Tools/SMT/smt_datatypes.ML")
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    16
  ("Tools/SMT/smt_normalize.ML")
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    17
  ("Tools/SMT/smt_translate.ML")
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    18
  ("Tools/SMT/smt_solver.ML")
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    19
  ("Tools/SMT/smtlib_interface.ML")
41328
6792a5c92a58 avoid ML structure aliases (especially single-letter abbreviations)
boehmes
parents: 41281
diff changeset
    20
  ("Tools/SMT/z3_interface.ML")
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    21
  ("Tools/SMT/z3_proof_parser.ML")
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    22
  ("Tools/SMT/z3_proof_tools.ML")
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    23
  ("Tools/SMT/z3_proof_literals.ML")
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents: 40424
diff changeset
    24
  ("Tools/SMT/z3_proof_methods.ML")
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    25
  ("Tools/SMT/z3_proof_reconstruction.ML")
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    26
  ("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
    27
  ("Tools/SMT/smt_setup_solvers.ML")
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    28
begin
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    29
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    30
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    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
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    33
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    34
text {*
41125
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    35
Some SMT solvers support patterns as a quantifier instantiation
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    36
heuristics.  Patterns may either be positive terms (tagged by "pat")
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    37
triggering quantifier instantiations -- when the solver finds a
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    38
term matching a positive pattern, it instantiates the corresponding
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    39
quantifier accordingly -- or negative terms (tagged by "nopat")
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    40
inhibiting quantifier instantiations.  A list of patterns
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    41
of the same kind is called a multipattern, and all patterns in a
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    42
multipattern are considered conjunctively for quantifier instantiation.
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    43
A list of multipatterns is called a trigger, and their multipatterns
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    44
act disjunctively during quantifier instantiation.  Each multipattern
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    45
should mention at least all quantified variables of the preceding
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
    46
quantifier block.
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    47
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    48
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    49
datatype pattern = Pattern
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    50
37124
fe22fc54b876 hide constants and types introduced by SMT,
boehmes
parents: 36902
diff changeset
    51
definition pat :: "'a \<Rightarrow> pattern" where "pat _ = Pattern"
fe22fc54b876 hide constants and types introduced by SMT,
boehmes
parents: 36902
diff changeset
    52
definition nopat :: "'a \<Rightarrow> pattern" where "nopat _ = Pattern"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    53
37124
fe22fc54b876 hide constants and types introduced by SMT,
boehmes
parents: 36902
diff changeset
    54
definition trigger :: "pattern list list \<Rightarrow> bool \<Rightarrow> bool"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    55
where "trigger _ P = P"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    56
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    57
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    58
40664
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    59
subsection {* Quantifier weights *}
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    60
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    61
text {*
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    62
Weight annotations to quantifiers influence the priority of quantifier
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    63
instantiations.  They should be handled with care for solvers, which support
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    64
them, because incorrect choices of weights might render a problem unsolvable.
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    65
*}
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    66
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    67
definition weight :: "int \<Rightarrow> bool \<Rightarrow> bool" where "weight _ P = P"
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    68
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    69
text {*
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    70
Weights must be non-negative.  The value @{text 0} is equivalent to providing
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    71
no weight at all.
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    72
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    73
Weights should only be used at quantifiers and only inside triggers (if the
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    74
quantifier has triggers).  Valid usages of weights are as follows:
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    75
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    76
\begin{itemize}
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    77
\item
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    78
@{term "\<forall>x. trigger [[pat (P x)]] (weight 2 (P x))"}
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    79
\item
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    80
@{term "\<forall>x. weight 3 (P x)"}
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    81
\end{itemize}
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    82
*}
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    83
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    84
e023788a91a1 added support for quantifier weight annotations
boehmes
parents: 40662
diff changeset
    85
36902
c6bae4456741 use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents: 36899
diff changeset
    86
subsection {* Higher-order encoding *}
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    87
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    88
text {*
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    89
Application is made explicit for constants occurring with varying
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    90
numbers of arguments.  This is achieved by the introduction of the
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    91
following constant.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    92
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    93
41127
2ea84c8535c6 re-implemented eta-expansion, lambda-lifting, and explicit application on terms (exploiting the control over the term structure);
boehmes
parents: 41126
diff changeset
    94
definition fun_app where "fun_app f = f"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    95
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    96
text {*
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    97
Some solvers support a theory of arrays which can be used to encode
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    98
higher-order functions.  The following set of lemmas specifies the
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
    99
properties of such (extensional) arrays.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   100
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   101
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   102
lemmas array_rules = ext fun_upd_apply fun_upd_same fun_upd_other
37157
86872cbae9e9 added function update examples and set examples
boehmes
parents: 37153
diff changeset
   103
  fun_upd_upd fun_app_def
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   104
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   105
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   106
36902
c6bae4456741 use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents: 36899
diff changeset
   107
subsection {* First-order logic *}
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   108
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   109
text {*
41059
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   110
Some SMT solvers only accept problems in first-order logic, i.e.,
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   111
where formulas and terms are syntactically separated. When
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   112
translating higher-order into first-order problems, all
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   113
uninterpreted constants (those not built-in in the target solver)
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   114
are treated as function symbols in the first-order sense.  Their
41059
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   115
occurrences as head symbols in atoms (i.e., as predicate symbols) are
41281
679118e35378 removed odd decoration of built-in symbols as Vars (instead provide built-in desctructor functions along with their inverse functions);
boehmes
parents: 41280
diff changeset
   116
turned into terms by logically equating such atoms with @{term True}.
679118e35378 removed odd decoration of built-in symbols as Vars (instead provide built-in desctructor functions along with their inverse functions);
boehmes
parents: 41280
diff changeset
   117
For technical reasons, @{term True} and @{term False} occurring inside
679118e35378 removed odd decoration of built-in symbols as Vars (instead provide built-in desctructor functions along with their inverse functions);
boehmes
parents: 41280
diff changeset
   118
terms are replaced by the following constants.
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   119
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   120
41281
679118e35378 removed odd decoration of built-in symbols as Vars (instead provide built-in desctructor functions along with their inverse functions);
boehmes
parents: 41280
diff changeset
   121
definition term_true where "term_true = True"
679118e35378 removed odd decoration of built-in symbols as Vars (instead provide built-in desctructor functions along with their inverse functions);
boehmes
parents: 41280
diff changeset
   122
definition term_false where "term_false = False"
679118e35378 removed odd decoration of built-in symbols as Vars (instead provide built-in desctructor functions along with their inverse functions);
boehmes
parents: 41280
diff changeset
   123
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   124
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   125
37151
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   126
subsection {* Integer division and modulo for Z3 *}
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   127
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   128
definition z3div :: "int \<Rightarrow> int \<Rightarrow> int" where
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   129
  "z3div k l = (if 0 \<le> l then k div l else -(k div (-l)))"
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   130
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   131
definition z3mod :: "int \<Rightarrow> int \<Rightarrow> int" where
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   132
  "z3mod k l = (if 0 \<le> l then k mod l else k mod (-l))"
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   133
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   134
3e9e8dfb3c98 use Z3's builtin support for div and mod
boehmes
parents: 37124
diff changeset
   135
36902
c6bae4456741 use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents: 36899
diff changeset
   136
subsection {* Setup *}
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   137
40277
4e3a3461c1a6 added crafted list of SMT built-in constants
boehmes
parents: 40274
diff changeset
   138
use "Tools/SMT/smt_builtin.ML"
41426
09615ed31f04 re-implemented support for datatypes (including records and typedefs);
boehmes
parents: 41328
diff changeset
   139
use "Tools/SMT/smt_datatypes.ML"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   140
use "Tools/SMT/smt_normalize.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   141
use "Tools/SMT/smt_translate.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   142
use "Tools/SMT/smt_solver.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   143
use "Tools/SMT/smtlib_interface.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   144
use "Tools/SMT/z3_interface.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   145
use "Tools/SMT/z3_proof_parser.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   146
use "Tools/SMT/z3_proof_tools.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   147
use "Tools/SMT/z3_proof_literals.ML"
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents: 40424
diff changeset
   148
use "Tools/SMT/z3_proof_methods.ML"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   149
use "Tools/SMT/z3_proof_reconstruction.ML"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   150
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
   151
use "Tools/SMT/smt_setup_solvers.ML"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   152
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   153
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
   154
  SMT_Config.setup #>
41059
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   155
  SMT_Normalize.setup #>
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   156
  SMTLIB_Interface.setup #>
d2b1fc1b8e19 centralized handling of built-in types and constants;
boehmes
parents: 40806
diff changeset
   157
  Z3_Interface.setup #>
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   158
  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
   159
  SMT_Setup_Solvers.setup
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   160
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   161
47701
157e6108a342 more standard method setup;
wenzelm
parents: 47152
diff changeset
   162
method_setup smt = {*
157e6108a342 more standard method setup;
wenzelm
parents: 47152
diff changeset
   163
  Scan.optional Attrib.thms [] >>
157e6108a342 more standard method setup;
wenzelm
parents: 47152
diff changeset
   164
    (fn thms => fn ctxt =>
157e6108a342 more standard method setup;
wenzelm
parents: 47152
diff changeset
   165
      METHOD (fn facts => HEADGOAL (SMT_Solver.smt_tac ctxt (thms @ facts))))
157e6108a342 more standard method setup;
wenzelm
parents: 47152
diff changeset
   166
*} "apply an SMT solver to the current goal"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   167
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   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
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   170
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   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
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   174
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   175
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   176
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   177
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   178
subsection {* General configuration options *}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   179
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   180
text {*
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   181
The option @{text smt_solver} can be used to change the target SMT
41432
3214c39777ab differentiate between local and remote SMT solvers (e.g., "z3" vs. "remote_z3");
boehmes
parents: 41426
diff changeset
   182
solver.  The possible values can be obtained from the @{text smt_status}
3214c39777ab differentiate between local and remote SMT solvers (e.g., "z3" vs. "remote_z3");
boehmes
parents: 41426
diff changeset
   183
command.
41459
f0db8f40d656 added hints about licensing restrictions and how to enable Z3
boehmes
parents: 41432
diff changeset
   184
f0db8f40d656 added hints about licensing restrictions and how to enable Z3
boehmes
parents: 41432
diff changeset
   185
Due to licensing restrictions, Yices and Z3 are not installed/enabled
f0db8f40d656 added hints about licensing restrictions and how to enable Z3
boehmes
parents: 41432
diff changeset
   186
by default.  Z3 is free for non-commercial applications and can be enabled
41462
5f4939d46b63 tuned text
boehmes
parents: 41459
diff changeset
   187
by simply setting the environment variable @{text Z3_NON_COMMERCIAL} to
5f4939d46b63 tuned text
boehmes
parents: 41459
diff changeset
   188
@{text yes}.
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   189
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   190
41601
fda8511006f9 made Z3 the default SMT solver again
boehmes
parents: 41462
diff changeset
   191
declare [[ smt_solver = z3 ]]
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   192
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   193
text {*
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   194
Since SMT solvers are potentially non-terminating, there is a timeout
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   195
(given in seconds) to restrict their runtime.  A value greater than
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   196
120 (seconds) is in most cases not advisable.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   197
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   198
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   199
declare [[ smt_timeout = 20 ]]
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   200
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
   201
text {*
41121
5c5d05963f93 added option to modify the random seed of SMT solvers
boehmes
parents: 41059
diff changeset
   202
SMT solvers apply randomized heuristics.  In case a problem is not
5c5d05963f93 added option to modify the random seed of SMT solvers
boehmes
parents: 41059
diff changeset
   203
solvable by an SMT solver, changing the following option might help.
5c5d05963f93 added option to modify the random seed of SMT solvers
boehmes
parents: 41059
diff changeset
   204
*}
5c5d05963f93 added option to modify the random seed of SMT solvers
boehmes
parents: 41059
diff changeset
   205
5c5d05963f93 added option to modify the random seed of SMT solvers
boehmes
parents: 41059
diff changeset
   206
declare [[ smt_random_seed = 1 ]]
5c5d05963f93 added option to modify the random seed of SMT solvers
boehmes
parents: 41059
diff changeset
   207
5c5d05963f93 added option to modify the random seed of SMT solvers
boehmes
parents: 41059
diff changeset
   208
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
   209
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
   210
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
   211
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
   212
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
   213
*}
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
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
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
   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
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
   218
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
   219
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
   220
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
   221
*}
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
41432
3214c39777ab differentiate between local and remote SMT solvers (e.g., "z3" vs. "remote_z3");
boehmes
parents: 41426
diff changeset
   223
declare [[ cvc3_options = "", remote_cvc3_options = "" ]]
3214c39777ab differentiate between local and remote SMT solvers (e.g., "z3" vs. "remote_z3");
boehmes
parents: 41426
diff changeset
   224
declare [[ yices_options = "" ]]
3214c39777ab differentiate between local and remote SMT solvers (e.g., "z3" vs. "remote_z3");
boehmes
parents: 41426
diff changeset
   225
declare [[ z3_options = "", remote_z3_options = "" ]]
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
   226
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
   227
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
   228
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
   229
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
   230
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
   231
*}
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
   232
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
   233
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
   234
41125
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   235
text {*
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   236
The SMT method provides an inference mechanism to detect simple triggers
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   237
in quantified formulas, which might increase the number of problems
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   238
solvable by SMT solvers (note: triggers guide quantifier instantiations
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   239
in the SMT solver).  To turn it on, set the following option.
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   240
*}
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   241
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   242
declare [[ smt_infer_triggers = false ]]
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   243
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   244
text {*
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   245
The SMT method monomorphizes the given facts, that is, it tries to
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   246
instantiate all schematic type variables with fixed types occurring
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   247
in the problem.  This is a (possibly nonterminating) fixed-point
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   248
construction whose cycles are limited by the following option.
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   249
*}
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   250
43230
dabf6e311213 clarified meaning of monomorphization configuration option by renaming it
boehmes
parents: 41762
diff changeset
   251
declare [[ monomorph_max_rounds = 5 ]]
41125
4a9eec045f2a added option to enable trigger inference;
boehmes
parents: 41124
diff changeset
   252
41762
00060198de12 limit the number of generated SMT monomorphization instances (in addition to the existing monomorphization limit which does not prevent seemingly infinite loops);
boehmes
parents: 41601
diff changeset
   253
text {*
00060198de12 limit the number of generated SMT monomorphization instances (in addition to the existing monomorphization limit which does not prevent seemingly infinite loops);
boehmes
parents: 41601
diff changeset
   254
In addition, the number of generated monomorphic instances is limited
00060198de12 limit the number of generated SMT monomorphization instances (in addition to the existing monomorphization limit which does not prevent seemingly infinite loops);
boehmes
parents: 41601
diff changeset
   255
by the following option.
00060198de12 limit the number of generated SMT monomorphization instances (in addition to the existing monomorphization limit which does not prevent seemingly infinite loops);
boehmes
parents: 41601
diff changeset
   256
*}
00060198de12 limit the number of generated SMT monomorphization instances (in addition to the existing monomorphization limit which does not prevent seemingly infinite loops);
boehmes
parents: 41601
diff changeset
   257
43230
dabf6e311213 clarified meaning of monomorphization configuration option by renaming it
boehmes
parents: 41762
diff changeset
   258
declare [[ monomorph_max_new_instances = 500 ]]
41762
00060198de12 limit the number of generated SMT monomorphization instances (in addition to the existing monomorphization limit which does not prevent seemingly infinite loops);
boehmes
parents: 41601
diff changeset
   259
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   260
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   261
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   262
subsection {* Certificates *}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   263
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   264
text {*
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   265
By setting the option @{text smt_certificates} to the name of a file,
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   266
all following applications of an SMT solver a cached in that file.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   267
Any further application of the same SMT solver (using the very same
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   268
configuration) re-uses the cached certificate instead of invoking the
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   269
solver.  An empty string disables caching certificates.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   270
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   271
The filename should be given as an explicit path.  It is good
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   272
practice to use the name of the current theory (with ending
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   273
@{text ".certs"} instead of @{text ".thy"}) as the certificates file.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   274
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   275
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   276
declare [[ smt_certificates = "" ]]
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   277
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   278
text {*
47152
446cfc760ccf renamed "smt_fixed" to "smt_read_only_certificates"
blanchet
parents: 46950
diff changeset
   279
The option @{text smt_read_only_certificates} controls whether only
446cfc760ccf renamed "smt_fixed" to "smt_read_only_certificates"
blanchet
parents: 46950
diff changeset
   280
stored certificates are should be used or invocation of an SMT solver
446cfc760ccf renamed "smt_fixed" to "smt_read_only_certificates"
blanchet
parents: 46950
diff changeset
   281
is allowed.  When set to @{text true}, no SMT solver will ever be
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   282
invoked and only the existing certificates found in the configured
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   283
cache are used;  when set to @{text false} and there is no cached
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   284
certificate for some proposition, then the configured SMT solver is
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   285
invoked.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   286
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   287
47152
446cfc760ccf renamed "smt_fixed" to "smt_read_only_certificates"
blanchet
parents: 46950
diff changeset
   288
declare [[ smt_read_only_certificates = false ]]
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   289
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   290
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   291
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   292
subsection {* Tracing *}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   293
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   294
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
   295
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
   296
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
   297
*}
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
   298
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
   299
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
   300
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
   301
text {*
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   302
For tracing the generated problem file given to the SMT solver as
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   303
well as the returned result of the solver, the option
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   304
@{text smt_trace} should be set to @{text true}.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   305
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   306
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   307
declare [[ smt_trace = false ]]
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   308
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   309
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
   310
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
   311
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
   312
@{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
   313
(see options @{text smt_solver} and @{text smt_oracle} above).
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   314
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   315
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
   316
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
   317
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   318
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   319
36902
c6bae4456741 use 'subsection' instead of 'section', to maintain 1 chapter per file in generated document
huffman
parents: 36899
diff changeset
   320
subsection {* Schematic rules for Z3 proof reconstruction *}
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   321
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   322
text {*
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   323
Several prof rules of Z3 are not very well documented.  There are two
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   324
lemma groups which can turn failing Z3 proof reconstruction attempts
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   325
into succeeding ones: the facts in @{text z3_rule} are tried prior to
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   326
any implemented reconstruction procedure for all uncertain Z3 proof
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   327
rules;  the facts in @{text z3_simp} are only fed to invocations of
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   328
the simplifier when reconstructing theory-specific proof steps.
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   329
*}
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   330
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   331
lemmas [z3_rule] =
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   332
  refl eq_commute conj_commute disj_commute simp_thms nnf_simps
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   333
  ring_distribs field_simps times_divide_eq_right times_divide_eq_left
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   334
  if_True if_False not_not
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   335
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   336
lemma [z3_rule]:
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   337
  "(P \<and> Q) = (\<not>(\<not>P \<or> \<not>Q))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   338
  "(P \<and> Q) = (\<not>(\<not>Q \<or> \<not>P))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   339
  "(\<not>P \<and> Q) = (\<not>(P \<or> \<not>Q))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   340
  "(\<not>P \<and> Q) = (\<not>(\<not>Q \<or> P))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   341
  "(P \<and> \<not>Q) = (\<not>(\<not>P \<or> Q))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   342
  "(P \<and> \<not>Q) = (\<not>(Q \<or> \<not>P))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   343
  "(\<not>P \<and> \<not>Q) = (\<not>(P \<or> Q))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   344
  "(\<not>P \<and> \<not>Q) = (\<not>(Q \<or> P))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   345
  by auto
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   346
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   347
lemma [z3_rule]:
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   348
  "(P \<longrightarrow> Q) = (Q \<or> \<not>P)"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   349
  "(\<not>P \<longrightarrow> Q) = (P \<or> Q)"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   350
  "(\<not>P \<longrightarrow> Q) = (Q \<or> P)"
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   351
  "(True \<longrightarrow> P) = P"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   352
  "(P \<longrightarrow> True) = True"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   353
  "(False \<longrightarrow> P) = True"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   354
  "(P \<longrightarrow> P) = True"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   355
  by auto
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   356
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   357
lemma [z3_rule]:
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   358
  "((P = Q) \<longrightarrow> R) = (R | (Q = (\<not>P)))"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   359
  by auto
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   360
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   361
lemma [z3_rule]:
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   362
  "(\<not>True) = False"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   363
  "(\<not>False) = True"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   364
  "(x = x) = True"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   365
  "(P = True) = P"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   366
  "(True = P) = P"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   367
  "(P = False) = (\<not>P)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   368
  "(False = P) = (\<not>P)"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   369
  "((\<not>P) = P) = False"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   370
  "(P = (\<not>P)) = False"
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   371
  "((\<not>P) = (\<not>Q)) = (P = Q)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   372
  "\<not>(P = (\<not>Q)) = (P = Q)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   373
  "\<not>((\<not>P) = Q) = (P = Q)"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   374
  "(P \<noteq> Q) = (Q = (\<not>P))"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   375
  "(P = Q) = ((\<not>P \<or> Q) \<and> (P \<or> \<not>Q))"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   376
  "(P \<noteq> Q) = ((\<not>P \<or> \<not>Q) \<and> (P \<or> Q))"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   377
  by auto
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   378
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   379
lemma [z3_rule]:
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   380
  "(if P then P else \<not>P) = True"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   381
  "(if \<not>P then \<not>P else P) = True"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   382
  "(if P then True else False) = P"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   383
  "(if P then False else True) = (\<not>P)"
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   384
  "(if P then Q else True) = ((\<not>P) \<or> Q)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   385
  "(if P then Q else True) = (Q \<or> (\<not>P))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   386
  "(if P then Q else \<not>Q) = (P = Q)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   387
  "(if P then Q else \<not>Q) = (Q = P)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   388
  "(if P then \<not>Q else Q) = (P = (\<not>Q))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   389
  "(if P then \<not>Q else Q) = ((\<not>Q) = P)"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   390
  "(if \<not>P then x else y) = (if P then y else x)"
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   391
  "(if P then (if Q then x else y) else x) = (if P \<and> (\<not>Q) then y else x)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   392
  "(if P then (if Q then x else y) else x) = (if (\<not>Q) \<and> P then y else x)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   393
  "(if P then (if Q then x else y) else y) = (if P \<and> Q then x else y)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   394
  "(if P then (if Q then x else y) else y) = (if Q \<and> P then x else y)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   395
  "(if P then x else if P then y else z) = (if P then x else z)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   396
  "(if P then x else if Q then x else y) = (if P \<or> Q then x else y)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   397
  "(if P then x else if Q then x else y) = (if Q \<or> P then x else y)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   398
  "(if P then x = y else x = z) = (x = (if P then y else z))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   399
  "(if P then x = y else y = z) = (y = (if P then x else z))"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   400
  "(if P then x = y else z = y) = (y = (if P then x else z))"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   401
  by auto
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   402
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   403
lemma [z3_rule]:
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   404
  "0 + (x::int) = x"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   405
  "x + 0 = x"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   406
  "x + x = 2 * x"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   407
  "0 * x = 0"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   408
  "1 * x = x"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   409
  "x + y = y + x"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   410
  by auto
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   411
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   412
lemma [z3_rule]:  (* for def-axiom *)
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   413
  "P = Q \<or> P \<or> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   414
  "P = Q \<or> \<not>P \<or> \<not>Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   415
  "(\<not>P) = Q \<or> \<not>P \<or> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   416
  "(\<not>P) = Q \<or> P \<or> \<not>Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   417
  "P = (\<not>Q) \<or> \<not>P \<or> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   418
  "P = (\<not>Q) \<or> P \<or> \<not>Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   419
  "P \<noteq> Q \<or> P \<or> \<not>Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   420
  "P \<noteq> Q \<or> \<not>P \<or> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   421
  "P \<noteq> (\<not>Q) \<or> P \<or> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   422
  "(\<not>P) \<noteq> Q \<or> P \<or> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   423
  "P \<or> Q \<or> P \<noteq> (\<not>Q)"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   424
  "P \<or> Q \<or> (\<not>P) \<noteq> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   425
  "P \<or> \<not>Q \<or> P \<noteq> Q"
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   426
  "\<not>P \<or> Q \<or> P \<noteq> Q"
44488
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   427
  "P \<or> y = (if P then x else y)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   428
  "P \<or> (if P then x else y) = y"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   429
  "\<not>P \<or> x = (if P then x else y)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   430
  "\<not>P \<or>  (if P then x else y) = x"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   431
  "P \<or> R \<or> \<not>(if P then Q else R)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   432
  "\<not>P \<or> Q \<or> \<not>(if P then Q else R)"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   433
  "\<not>(if P then Q else R) \<or> \<not>P \<or> Q"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   434
  "\<not>(if P then Q else R) \<or> P \<or> R"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   435
  "(if P then Q else R) \<or> \<not>P \<or> \<not>Q"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   436
  "(if P then Q else R) \<or> P \<or> \<not>R"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   437
  "(if P then \<not>Q else R) \<or> \<not>P \<or> Q"
587bf61a00a1 improved completeness and efficiency of Z3 proof reconstruction, especially by an improved handling of Skolemization
boehmes
parents: 44087
diff changeset
   438
  "(if P then Q else \<not>R) \<or> P \<or> R"
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   439
  by auto
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   440
37124
fe22fc54b876 hide constants and types introduced by SMT,
boehmes
parents: 36902
diff changeset
   441
fe22fc54b876 hide constants and types introduced by SMT,
boehmes
parents: 36902
diff changeset
   442
fe22fc54b876 hide constants and types introduced by SMT,
boehmes
parents: 36902
diff changeset
   443
hide_type (open) pattern
41281
679118e35378 removed odd decoration of built-in symbols as Vars (instead provide built-in desctructor functions along with their inverse functions);
boehmes
parents: 41280
diff changeset
   444
hide_const Pattern fun_app term_true term_false z3div z3mod
41280
a7de9d36f4f2 only linear occurrences of multiplication are treated as built-in (SMT solvers only support linear arithmetic in general);
boehmes
parents: 41174
diff changeset
   445
hide_const (open) trigger pat nopat weight
37124
fe22fc54b876 hide constants and types introduced by SMT,
boehmes
parents: 36902
diff changeset
   446
36898
8e55aa1306c5 integrated SMT into the HOL image
boehmes
parents:
diff changeset
   447
end