src/HOL/Tools/SMT/smt_utils.ML
author boehmes
Mon, 22 Nov 2010 15:45:43 +0100
changeset 40663 e080c9e68752
parent 40662 798aad2229c0
child 40840 2f97215e79bf
permissions -rw-r--r--
share and use more utility functions; slightly reduced complexity for Z3 proof rule 'rewrite'
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     1
(*  Title:      HOL/Tools/SMT/smt_utils.ML
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     2
    Author:     Sascha Boehme, TU Muenchen
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     3
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     4
General utility functions.
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     5
*)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     6
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     7
signature SMT_UTILS =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     8
sig
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
     9
  val repeat: ('a -> 'a option) -> 'a -> 'a
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    10
  val repeat_yield: ('a -> 'b -> ('a * 'b) option) -> 'a -> 'b -> 'a * 'b
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    11
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    12
  (* types *)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    13
  val split_type: typ -> typ * typ
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    14
  val dest_funT: int -> typ -> typ list * typ
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    15
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    16
  (* terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    17
  val dest_conj: term -> term * term
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    18
  val dest_disj: term -> term * term
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    19
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    20
  (* patterns and instantiations *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    21
  val mk_const_pat: theory -> string -> (ctyp -> 'a) -> 'a * cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    22
  val destT1: ctyp -> ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    23
  val destT2: ctyp -> ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    24
  val instTs: ctyp list -> ctyp list * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    25
  val instT: ctyp -> ctyp * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    26
  val instT': cterm -> ctyp * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    27
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    28
  (* certified terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    29
  val certify: Proof.context -> term -> cterm
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    30
  val typ_of: cterm -> typ
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    31
  val dest_cabs: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    32
  val dest_all_cabs: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    33
  val dest_cbinder: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    34
  val dest_all_cbinders: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    35
  val mk_cprop: cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    36
  val dest_cprop: cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    37
  val mk_cequals: cterm -> cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    38
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    39
  (* conversions *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    40
  val if_conv: (term -> bool) -> conv -> conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    41
  val if_true_conv: (term -> bool) -> conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    42
  val binders_conv: (Proof.context -> conv) -> Proof.context -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    43
  val prop_conv: conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    44
end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    45
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    46
structure SMT_Utils: SMT_UTILS =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    47
struct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    48
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    49
fun repeat f =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    50
  let fun rep x = (case f x of SOME y => rep y | NONE => x)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    51
  in rep end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    52
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    53
fun repeat_yield f =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    54
  let fun rep x y = (case f x y of SOME (x', y') => rep x' y' | NONE => (x, y))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    55
  in rep end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    56
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    57
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    58
(* types *)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    59
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    60
fun split_type T = (Term.domain_type T, Term.range_type T)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    61
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    62
val dest_funT =
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    63
  let
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    64
    fun dest Ts 0 T = (rev Ts, T)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    65
      | dest Ts i (Type ("fun", [T, U])) = dest (T::Ts) (i-1) U
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    66
      | dest _ _ T = raise TYPE ("not a function type", [T], [])
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    67
  in dest [] end
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    68
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    69
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    70
(* terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    71
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    72
fun dest_conj (@{const HOL.conj} $ t $ u) = (t, u)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    73
  | dest_conj t = raise TERM ("not a conjunction", [t])
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    74
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    75
fun dest_disj (@{const HOL.disj} $ t $ u) = (t, u)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    76
  | dest_disj t = raise TERM ("not a disjunction", [t])
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    77
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    78
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    79
(* patterns and instantiations *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    80
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    81
fun mk_const_pat thy name destT =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    82
  let val cpat = Thm.cterm_of thy (Const (name, Sign.the_const_type thy name))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    83
  in (destT (Thm.ctyp_of_term cpat), cpat) end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    84
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    85
val destT1 = hd o Thm.dest_ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    86
val destT2 = hd o tl o Thm.dest_ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    87
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    88
fun instTs cUs (cTs, ct) = Thm.instantiate_cterm (cTs ~~ cUs, []) ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    89
fun instT cU (cT, ct) = instTs [cU] ([cT], ct)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    90
fun instT' ct = instT (Thm.ctyp_of_term ct)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    91
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    92
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    93
(* certified terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    94
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    95
fun certify ctxt = Thm.cterm_of (ProofContext.theory_of ctxt)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    96
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    97
fun typ_of ct = #T (Thm.rep_cterm ct) 
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    98
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    99
fun dest_cabs ct ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   100
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   101
    Abs _ =>
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   102
      let val (n, ctxt') = yield_singleton Variable.variant_fixes Name.uu ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   103
      in (snd (Thm.dest_abs (SOME n) ct), ctxt') end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   104
  | _ => raise CTERM ("no abstraction", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   105
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   106
val dest_all_cabs = repeat_yield (try o dest_cabs) 
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   107
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   108
fun dest_cbinder ct ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   109
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   110
    Const _ $ Abs _ => dest_cabs (Thm.dest_arg ct) ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   111
  | _ => raise CTERM ("not a binder", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   112
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   113
val dest_all_cbinders = repeat_yield (try o dest_cbinder)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   114
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   115
val mk_cprop = Thm.capply (Thm.cterm_of @{theory} @{const Trueprop})
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   116
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   117
fun dest_cprop ct =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   118
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   119
    @{const Trueprop} $ _ => Thm.dest_arg ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   120
  | _ => raise CTERM ("not a property", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   121
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   122
val equals = mk_const_pat @{theory} @{const_name "=="} destT1
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   123
fun mk_cequals ct cu = Thm.mk_binop (instT' ct equals) ct cu
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   124
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   125
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   126
(* conversions *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   127
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   128
fun if_conv pred cv1 cv2 ct = if pred (Thm.term_of ct) then cv1 ct else cv2 ct
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   129
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   130
fun if_true_conv pred cv = if_conv pred cv Conv.all_conv
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   131
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   132
fun binders_conv cv ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   133
  Conv.binder_conv (binders_conv cv o snd) ctxt else_conv cv ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   134
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   135
fun prop_conv cv ct =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   136
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   137
    @{const Trueprop} $ _ => Conv.arg_conv cv ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   138
  | _ => raise CTERM ("not a property", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   139
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   140
end