src/HOL/Tools/SMT/smt_utils.ML
author haftmann
Wed, 01 Dec 2010 18:00:40 +0100
changeset 40858 69ab03d29c92
parent 40840 2f97215e79bf
child 41123 3bb9be510a9d
permissions -rw-r--r--
merged
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 dest_funT: int -> typ -> typ list * typ
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    14
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    15
  (* terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    16
  val dest_conj: term -> term * term
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    17
  val dest_disj: term -> term * term
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    18
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    19
  (* patterns and instantiations *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    20
  val mk_const_pat: theory -> string -> (ctyp -> 'a) -> 'a * cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    21
  val destT1: ctyp -> ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    22
  val destT2: ctyp -> ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    23
  val instTs: ctyp list -> ctyp list * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    24
  val instT: ctyp -> ctyp * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    25
  val instT': cterm -> ctyp * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    26
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    27
  (* certified terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    28
  val certify: Proof.context -> term -> cterm
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    29
  val typ_of: cterm -> typ
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    30
  val dest_cabs: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    31
  val dest_all_cabs: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    32
  val dest_cbinder: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    33
  val dest_all_cbinders: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    34
  val mk_cprop: cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    35
  val dest_cprop: cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    36
  val mk_cequals: cterm -> cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    37
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    38
  (* conversions *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    39
  val if_conv: (term -> bool) -> conv -> conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    40
  val if_true_conv: (term -> bool) -> conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    41
  val binders_conv: (Proof.context -> conv) -> Proof.context -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    42
  val prop_conv: conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    43
end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    44
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    45
structure SMT_Utils: SMT_UTILS =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    46
struct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    47
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    48
fun repeat f =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    49
  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
    50
  in rep end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    51
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    52
fun repeat_yield f =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    53
  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
    54
  in rep end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    55
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    56
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    57
(* types *)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    58
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    59
val dest_funT =
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    60
  let
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    61
    fun dest Ts 0 T = (rev Ts, T)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    62
      | 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
    63
      | dest _ _ T = raise TYPE ("not a function type", [T], [])
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    64
  in dest [] end
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    65
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    66
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    67
(* terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    68
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    69
fun dest_conj (@{const HOL.conj} $ t $ u) = (t, u)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    70
  | dest_conj t = raise TERM ("not a conjunction", [t])
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_disj (@{const HOL.disj} $ t $ u) = (t, u)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    73
  | dest_disj t = raise TERM ("not a disjunction", [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
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    76
(* patterns and instantiations *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    77
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    78
fun mk_const_pat thy name destT =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    79
  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
    80
  in (destT (Thm.ctyp_of_term cpat), cpat) end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    81
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    82
val destT1 = hd o Thm.dest_ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    83
val destT2 = hd o tl o Thm.dest_ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    84
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    85
fun instTs cUs (cTs, ct) = Thm.instantiate_cterm (cTs ~~ cUs, []) ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    86
fun instT cU (cT, ct) = instTs [cU] ([cT], ct)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    87
fun instT' ct = instT (Thm.ctyp_of_term ct)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    88
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    89
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    90
(* certified terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    91
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    92
fun certify ctxt = Thm.cterm_of (ProofContext.theory_of ctxt)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    93
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    94
fun typ_of ct = #T (Thm.rep_cterm ct) 
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    95
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    96
fun dest_cabs ct ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    97
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    98
    Abs _ =>
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    99
      let val (n, ctxt') = yield_singleton Variable.variant_fixes Name.uu ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   100
      in (snd (Thm.dest_abs (SOME n) ct), ctxt') end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   101
  | _ => raise CTERM ("no abstraction", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   102
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   103
val dest_all_cabs = repeat_yield (try o dest_cabs) 
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   104
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   105
fun dest_cbinder ct ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   106
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   107
    Const _ $ Abs _ => dest_cabs (Thm.dest_arg ct) ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   108
  | _ => raise CTERM ("not a binder", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   109
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   110
val dest_all_cbinders = repeat_yield (try o dest_cbinder)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   111
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   112
val mk_cprop = Thm.capply (Thm.cterm_of @{theory} @{const Trueprop})
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   113
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   114
fun dest_cprop ct =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   115
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   116
    @{const Trueprop} $ _ => Thm.dest_arg ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   117
  | _ => raise CTERM ("not a property", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   118
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   119
val equals = mk_const_pat @{theory} @{const_name "=="} destT1
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   120
fun mk_cequals ct cu = Thm.mk_binop (instT' ct equals) ct cu
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   121
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   122
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   123
(* conversions *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   124
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   125
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
   126
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   127
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
   128
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   129
fun binders_conv cv ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   130
  Conv.binder_conv (binders_conv cv o snd) ctxt else_conv cv ctxt
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 prop_conv cv ct =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   133
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   134
    @{const Trueprop} $ _ => Conv.arg_conv cv ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   135
  | _ => raise CTERM ("not a property", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   136
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   137
end