src/HOL/Tools/SMT/smt_solver.ML
author wenzelm
Fri, 06 Mar 2015 23:44:57 +0100
changeset 59632 5980e75a204e
parent 59621 291934bac95e
child 60201 90e88e521e0e
permissions -rw-r--r--
clarified context;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
     1
(*  Title:      HOL/Tools/SMT/smt_solver.ML
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
     2
    Author:     Sascha Boehme, TU Muenchen
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
     3
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
     4
SMT solvers registry and SMT tactic.
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
     5
*)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
     6
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
     7
signature SMT_SOLVER =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
     8
sig
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
     9
  (*configuration*)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    10
  datatype outcome = Unsat | Sat | Unknown
57163
blanchet
parents: 57159
diff changeset
    11
blanchet
parents: 57159
diff changeset
    12
  type parsed_proof =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    13
    {outcome: SMT_Failure.failure option,
57163
blanchet
parents: 57159
diff changeset
    14
     fact_ids: (int * ((string * ATP_Problem_Generate.stature) * thm)) list,
blanchet
parents: 57159
diff changeset
    15
     atp_proof: unit -> (term, string) ATP_Proof.atp_step list}
blanchet
parents: 57159
diff changeset
    16
blanchet
parents: 57159
diff changeset
    17
  type solver_config =
blanchet
parents: 57159
diff changeset
    18
    {name: string,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    19
     class: Proof.context -> SMT_Util.class,
57163
blanchet
parents: 57159
diff changeset
    20
     avail: unit -> bool,
blanchet
parents: 57159
diff changeset
    21
     command: unit -> string list,
blanchet
parents: 57159
diff changeset
    22
     options: Proof.context -> string list,
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
    23
     smt_options: (string * string) list,
57163
blanchet
parents: 57159
diff changeset
    24
     default_max_relevant: int,
blanchet
parents: 57159
diff changeset
    25
     outcome: string -> string list -> outcome * string list,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    26
     parse_proof: (Proof.context -> SMT_Translate.replay_data ->
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
    27
       ((string * ATP_Problem_Generate.stature) * thm) list -> term list -> term -> string list ->
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
    28
       parsed_proof) option,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    29
     replay: (Proof.context -> SMT_Translate.replay_data -> string list -> thm) option}
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    30
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    31
  (*registry*)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    32
  val add_solver: solver_config -> theory -> theory
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    33
  val default_max_relevant: Proof.context -> string -> int
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    34
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    35
  (*filter*)
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    36
  val smt_filter: Proof.context -> thm -> ((string * ATP_Problem_Generate.stature) * thm) list ->
57165
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
    37
    int -> Time.time -> parsed_proof
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    38
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    39
  (*tactic*)
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    40
  val smt_tac: Proof.context -> thm list -> int -> tactic
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    41
  val smt_tac': Proof.context -> thm list -> int -> tactic
57229
blanchet
parents: 57165
diff changeset
    42
end;
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    43
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    44
structure SMT_Solver: SMT_SOLVER =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    45
struct
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    46
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    47
(* interface to external solvers *)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    48
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    49
local
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    50
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    51
fun make_command command options problem_path proof_path =
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    52
  "(exec 2>&1;" :: map File.shell_quote (command () @ options) @
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    53
  [File.shell_path problem_path, ")", ">", File.shell_path proof_path]
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    54
  |> space_implode " "
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    55
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    56
fun with_trace ctxt msg f x =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    57
  let val _ = SMT_Config.trace_msg ctxt (fn () => msg) ()
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    58
  in f x end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    59
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    60
fun run ctxt name mk_cmd input =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    61
  (case SMT_Config.certificates_of ctxt of
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    62
    NONE =>
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    63
      if not (SMT_Config.is_available ctxt name) then
56131
blanchet
parents: 56128
diff changeset
    64
        error ("The SMT solver " ^ quote name ^ " is not installed")
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    65
      else if Config.get ctxt SMT_Config.debug_files = "" then
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    66
        with_trace ctxt ("Invoking SMT solver " ^ quote name ^ " ...") (Cache_IO.run mk_cmd) input
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    67
      else
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    68
        let
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    69
          val base_path = Path.explode (Config.get ctxt SMT_Config.debug_files)
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    70
          val in_path = Path.ext "smt_in" base_path
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    71
          val out_path = Path.ext "smt_out" base_path
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    72
        in Cache_IO.raw_run mk_cmd input in_path out_path end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    73
  | SOME certs =>
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    74
      (case Cache_IO.lookup certs input of
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    75
        (NONE, key) =>
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    76
          if Config.get ctxt SMT_Config.read_only_certificates then
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    77
            error ("Bad certificate cache: missing certificate")
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    78
          else
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    79
            Cache_IO.run_and_cache certs key mk_cmd input
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    80
      | (SOME output, _) =>
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    81
          with_trace ctxt ("Using cached certificate from " ^
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    82
            File.shell_path (Cache_IO.cache_path_of certs) ^ " ...") I output))
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    83
56087
2cd8fcb4804d slacker error code policy for Z3
blanchet
parents: 56086
diff changeset
    84
(* Z3 returns 1 if "get-model" or "get-model" fails *)
2cd8fcb4804d slacker error code policy for Z3
blanchet
parents: 56086
diff changeset
    85
val normal_return_codes = [0, 1]
2cd8fcb4804d slacker error code policy for Z3
blanchet
parents: 56086
diff changeset
    86
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    87
fun run_solver ctxt name mk_cmd input =
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    88
  let
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
    89
    fun pretty tag lines = Pretty.string_of (Pretty.big_list tag (map Pretty.str lines))
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    90
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    91
    val _ = SMT_Config.trace_msg ctxt (pretty "Problem:" o split_lines) input
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    92
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
    93
    val {redirected_output = res, output = err, return_code} =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    94
      SMT_Config.with_timeout ctxt (run ctxt name mk_cmd) input
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    95
    val _ = SMT_Config.trace_msg ctxt (pretty "Solver:") err
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    96
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    97
    val output = fst (take_suffix (equal "") res)
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
    98
    val _ = SMT_Config.trace_msg ctxt (pretty "Result:") output
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
    99
56087
2cd8fcb4804d slacker error code policy for Z3
blanchet
parents: 56086
diff changeset
   100
    val _ = member (op =) normal_return_codes return_code orelse
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   101
      raise SMT_Failure.SMT (SMT_Failure.Abnormal_Termination return_code)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   102
  in output end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   103
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   104
fun trace_assms ctxt =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   105
  SMT_Config.trace_msg ctxt (Pretty.string_of o
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   106
    Pretty.big_list "Assertions:" o map (Display.pretty_thm ctxt o snd))
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   107
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   108
fun trace_replay_data ({context = ctxt, typs, terms, ...} : SMT_Translate.replay_data) =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   109
  let
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   110
    fun pretty_eq n p = Pretty.block [Pretty.str n, Pretty.str " = ", p]
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   111
    fun p_typ (n, T) = pretty_eq n (Syntax.pretty_typ ctxt T)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   112
    fun p_term (n, t) = pretty_eq n (Syntax.pretty_term ctxt t)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   113
  in
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   114
    SMT_Config.trace_msg ctxt (fn () =>
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   115
      Pretty.string_of (Pretty.big_list "Names:" [
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   116
        Pretty.big_list "sorts:" (map p_typ (Symtab.dest typs)),
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   117
        Pretty.big_list "functions:" (map p_term (Symtab.dest terms))])) ()
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   118
  end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   119
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   120
in
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   121
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   122
fun invoke name command smt_options ithms ctxt =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   123
  let
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   124
    val options = SMT_Config.solver_options_of ctxt
56112
040424c3800d updated SMT2 examples and certificates
blanchet
parents: 56106
diff changeset
   125
    val comments = [space_implode " " options]
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   126
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
   127
    val (str, replay_data as {context = ctxt', ...}) =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   128
      ithms
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   129
      |> tap (trace_assms ctxt)
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   130
      |> SMT_Translate.translate ctxt smt_options comments
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   131
      ||> tap trace_replay_data
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
   132
  in (run_solver ctxt' name (make_command command options) str, replay_data) end
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   133
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   134
end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   135
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   136
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   137
(* configuration *)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   138
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   139
datatype outcome = Unsat | Sat | Unknown
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   140
57163
blanchet
parents: 57159
diff changeset
   141
type parsed_proof =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   142
  {outcome: SMT_Failure.failure option,
57163
blanchet
parents: 57159
diff changeset
   143
   fact_ids: (int * ((string * ATP_Problem_Generate.stature) * thm)) list,
blanchet
parents: 57159
diff changeset
   144
   atp_proof: unit -> (term, string) ATP_Proof.atp_step list}
blanchet
parents: 57159
diff changeset
   145
blanchet
parents: 57159
diff changeset
   146
type solver_config =
blanchet
parents: 57159
diff changeset
   147
  {name: string,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   148
   class: Proof.context -> SMT_Util.class,
57163
blanchet
parents: 57159
diff changeset
   149
   avail: unit -> bool,
blanchet
parents: 57159
diff changeset
   150
   command: unit -> string list,
blanchet
parents: 57159
diff changeset
   151
   options: Proof.context -> string list,
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   152
   smt_options: (string * string) list,
57163
blanchet
parents: 57159
diff changeset
   153
   default_max_relevant: int,
blanchet
parents: 57159
diff changeset
   154
   outcome: string -> string list -> outcome * string list,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   155
   parse_proof: (Proof.context -> SMT_Translate.replay_data ->
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   156
     ((string * ATP_Problem_Generate.stature) * thm) list -> term list -> term -> string list ->
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   157
     parsed_proof) option,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   158
   replay: (Proof.context -> SMT_Translate.replay_data -> string list -> thm) option}
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   159
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   160
56106
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   161
(* check well-sortedness *)
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   162
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   163
val has_topsort = Term.exists_type (Term.exists_subtype (fn
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   164
    TFree (_, []) => true
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   165
  | TVar (_, []) => true
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   166
  | _ => false))
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   167
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   168
(* top sorts cause problems with atomization *)
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   169
fun check_topsort ctxt thm =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   170
  if has_topsort (Thm.prop_of thm) then (SMT_Normalize.drop_fact_warning ctxt thm; TrueI) else thm
56106
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   171
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   172
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   173
(* registry *)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   174
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   175
type solver_info = {
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   176
  command: unit -> string list,
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   177
  smt_options: (string * string) list,
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   178
  default_max_relevant: int,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   179
  parse_proof: Proof.context -> SMT_Translate.replay_data ->
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   180
    ((string * ATP_Problem_Generate.stature) * thm) list -> term list -> term -> string list ->
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   181
    parsed_proof,
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   182
  replay: Proof.context -> SMT_Translate.replay_data -> string list -> thm}
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   183
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   184
structure Solvers = Generic_Data
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   185
(
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   186
  type T = solver_info Symtab.table
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   187
  val empty = Symtab.empty
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   188
  val extend = I
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   189
  fun merge data = Symtab.merge (K true) data
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   190
)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   191
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   192
local
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   193
  fun parse_proof outcome parse_proof0 outer_ctxt replay_data xfacts prems concl output =
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   194
    (case outcome output of
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   195
      (Unsat, lines) =>
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   196
        (case parse_proof0 of
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   197
          SOME pp => pp outer_ctxt replay_data xfacts prems concl lines
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   198
        | NONE => {outcome = NONE, fact_ids = [], atp_proof = K []})
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   199
    | (result, _) => raise SMT_Failure.SMT (SMT_Failure.Counterexample (result = Sat)))
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   200
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   201
  fun replay outcome replay0 oracle outer_ctxt
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   202
      (replay_data as {context = ctxt, ...} : SMT_Translate.replay_data) output =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   203
    (case outcome output of
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   204
      (Unsat, lines) =>
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   205
        if not (Config.get ctxt SMT_Config.oracle) andalso is_some replay0
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   206
        then the replay0 outer_ctxt replay_data lines
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   207
        else oracle ()
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   208
    | (result, _) => raise SMT_Failure.SMT (SMT_Failure.Counterexample (result = Sat)))
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   209
59632
5980e75a204e clarified context;
wenzelm
parents: 59621
diff changeset
   210
  val cfalse = Thm.cterm_of @{context} @{prop False}
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   211
in
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   212
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   213
fun add_solver ({name, class, avail, command, options, smt_options, default_max_relevant, outcome,
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   214
    parse_proof = parse_proof0, replay = replay0} : solver_config) =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   215
  let
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   216
    fun solver oracle = {
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   217
      command = command,
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   218
      smt_options = smt_options,
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   219
      default_max_relevant = default_max_relevant,
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   220
      parse_proof = parse_proof (outcome name) parse_proof0,
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   221
      replay = replay (outcome name) replay0 oracle}
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   222
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
   223
    val info = {name = name, class = class, avail = avail, options = options}
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   224
  in
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   225
    Thm.add_oracle (Binding.name name, K cfalse) #-> (fn (_, oracle) =>
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   226
    Context.theory_map (Solvers.map (Symtab.update_new (name, solver oracle)))) #>
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   227
    Context.theory_map (SMT_Config.add_solver info)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   228
  end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   229
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   230
end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   231
56125
blanchet
parents: 56112
diff changeset
   232
fun get_info ctxt name = the (Symtab.lookup (Solvers.get (Context.Proof ctxt)) name)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   233
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   234
fun name_and_info_of ctxt =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   235
  let val name = SMT_Config.solver_of ctxt
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   236
  in (name, get_info ctxt name) end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   237
57163
blanchet
parents: 57159
diff changeset
   238
val default_max_relevant = #default_max_relevant oo get_info
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   239
57165
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   240
fun apply_solver_and_replay ctxt thms0 =
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   241
  let
57165
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   242
    val thms = map (check_topsort ctxt) thms0
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   243
    val (name, {command, smt_options, replay, ...}) = name_and_info_of ctxt
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   244
    val (output, replay_data) =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   245
      invoke name command smt_options (SMT_Normalize.normalize ctxt thms) ctxt
57157
87b4d54b1fbe split replay and proof parsing for Z3
blanchet
parents: 57156
diff changeset
   246
  in replay ctxt replay_data output end
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   247
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   248
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   249
(* filter *)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   250
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   251
fun smt_filter ctxt0 goal xfacts i time_limit =
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   252
  let
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   253
    val ctxt = ctxt0 |> Config.put SMT_Config.timeout (Time.toReal time_limit)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   254
56132
64eeda68e693 delayed construction of command (and of noncommercial check) + tuning
blanchet
parents: 56131
diff changeset
   255
    val ({context = ctxt, prems, concl, ...}, _) = Subgoal.focus ctxt i goal
56106
9cfea3ab002a simplify index handling
blanchet
parents: 56104
diff changeset
   256
    fun negate ct = Thm.dest_comb ct ||> Thm.apply @{cterm Not} |-> Thm.apply
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   257
    val cprop =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   258
      (case try negate (Thm.rhs_of (SMT_Normalize.atomize_conv ctxt concl)) of
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   259
        SOME ct => ct
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   260
      | NONE => raise SMT_Failure.SMT (SMT_Failure.Other_Failure "goal is not a HOL term"))
56082
ffd99d397a9f tuned ML interface
blanchet
parents: 56078
diff changeset
   261
57165
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   262
    val conjecture = Thm.assume cprop
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   263
    val facts = map snd xfacts
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   264
    val thms = conjecture :: prems @ facts
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   265
    val thms' = map (check_topsort ctxt) thms
57159
24cbdebba35a refactored Z3 to Isar proof construction code
blanchet
parents: 57158
diff changeset
   266
57239
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   267
    val (name, {command, smt_options, parse_proof, ...}) = name_and_info_of ctxt
a40edeaa01b1 don't ask proof-disabled solvers to do proofs
blanchet
parents: 57229
diff changeset
   268
    val (output, replay_data) =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   269
      invoke name command smt_options (SMT_Normalize.normalize ctxt thms') ctxt
57164
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   270
  in
eb5f27ec3987 make SMT code less dependent on Z3 proofs
blanchet
parents: 57163
diff changeset
   271
    parse_proof ctxt replay_data xfacts (map Thm.prop_of prems) (Thm.term_of concl) output
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   272
  end
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   273
  handle SMT_Failure.SMT fail => {outcome = SOME fail, fact_ids = [], atp_proof = K []}
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   274
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   275
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   276
(* SMT tactic *)
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   277
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   278
local
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   279
  fun str_of ctxt fail =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   280
    "Solver " ^ SMT_Config.solver_of ctxt ^ ": " ^ SMT_Failure.string_of_failure fail
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   281
57165
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   282
  fun safe_solve ctxt facts = SOME (apply_solver_and_replay ctxt facts)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   283
    handle
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   284
      SMT_Failure.SMT (fail as SMT_Failure.Counterexample _) =>
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   285
        (SMT_Config.verbose_msg ctxt (str_of ctxt) fail; NONE)
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   286
    | SMT_Failure.SMT (fail as SMT_Failure.Time_Out) =>
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   287
        error ("SMT: Solver " ^ quote (SMT_Config.solver_of ctxt) ^ ": " ^
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   288
          SMT_Failure.string_of_failure fail ^ " (setting the " ^
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   289
          "configuration option " ^ quote (Config.name_of SMT_Config.timeout) ^ " might help)")
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   290
    | SMT_Failure.SMT fail => error (str_of ctxt fail)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   291
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   292
  fun resolve (SOME thm) = rtac thm 1
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   293
    | resolve NONE = no_tac
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   294
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   295
  fun tac prove ctxt rules =
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   296
    CONVERSION (SMT_Normalize.atomize_conv ctxt)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   297
    THEN' rtac @{thm ccontr}
57165
7b1bf424ec5f removed SMT weights -- their impact was very inconclusive anyway
blanchet
parents: 57164
diff changeset
   298
    THEN' SUBPROOF (fn {context = ctxt, prems, ...} => resolve (prove ctxt (rules @ prems))) ctxt
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   299
in
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   300
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   301
val smt_tac = tac safe_solve
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 57239
diff changeset
   302
val smt_tac' = tac (SOME oo apply_solver_and_replay)
56078
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   303
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   304
end
624faeda77b5 moved 'SMT2' (SMT-LIB-2-based SMT module) into Isabelle
blanchet
parents:
diff changeset
   305
57229
blanchet
parents: 57165
diff changeset
   306
end;