src/HOL/Tools/SMT/smt_utils.ML
author boehmes
Wed, 15 Dec 2010 08:39:24 +0100
changeset 41126 e0bd443c0fdd
parent 41124 1de17a2de5ad
child 41127 2ea84c8535c6
permissions -rw-r--r--
re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level); added simple trigger inference mechanism; added syntactic checks for triggers and quantifier weights; factored out the normalization of special quantifiers (used to be in the eta-normalization part); normalization now unfolds abs/min/max (not SMT-LIB-specific); rules for pairs and function update are not anymore added automatically to the problem; more aggressive rewriting of natural number operations into integer operations (minimizes the number of remaining nat-int coercions); normalizations are now managed in a class-based manner (similar to built-in symbols)
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
41123
boehmes
parents: 40840
diff changeset
     9
  (*basic combinators*)
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    10
  val repeat: ('a -> 'a option) -> 'a -> 'a
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    11
  val repeat_yield: ('a -> 'b -> ('a * 'b) option) -> 'a -> 'b -> 'a * 'b
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    12
41124
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    13
  (*class dictionaries*)
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    14
  type class = string list
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    15
  val basicC: class
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    16
  type 'a dict = (class * 'a) Ord_List.T
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    17
  val dict_map_default: class * 'a -> ('a -> 'a) -> 'a dict -> 'a dict
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    18
  val dict_update: class * 'a -> 'a dict -> 'a dict
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    19
  val dict_merge: ('a * 'a -> 'a) -> 'a dict * 'a dict -> 'a dict
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    20
  val dict_lookup: 'a dict -> class -> 'a list
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    21
41123
boehmes
parents: 40840
diff changeset
    22
  (*types*)
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    23
  val dest_funT: int -> typ -> typ list * typ
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    24
41123
boehmes
parents: 40840
diff changeset
    25
  (*terms*)
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    26
  val dest_conj: term -> term * term
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    27
  val dest_disj: term -> term * term
41126
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
    28
  val under_quant: (term -> 'a) -> term -> 'a
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    29
41123
boehmes
parents: 40840
diff changeset
    30
  (*patterns and instantiations*)
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    31
  val mk_const_pat: theory -> string -> (ctyp -> 'a) -> 'a * cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    32
  val destT1: ctyp -> ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    33
  val destT2: ctyp -> ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    34
  val instTs: ctyp list -> ctyp list * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    35
  val instT: ctyp -> ctyp * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    36
  val instT': cterm -> ctyp * cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    37
41123
boehmes
parents: 40840
diff changeset
    38
  (*certified terms*)
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    39
  val certify: Proof.context -> term -> cterm
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    40
  val typ_of: cterm -> typ
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    41
  val dest_cabs: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    42
  val dest_all_cabs: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    43
  val dest_cbinder: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    44
  val dest_all_cbinders: cterm -> Proof.context -> cterm * Proof.context
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    45
  val mk_cprop: cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    46
  val dest_cprop: cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    47
  val mk_cequals: cterm -> cterm -> cterm
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    48
41123
boehmes
parents: 40840
diff changeset
    49
  (*conversions*)
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    50
  val if_conv: (term -> bool) -> conv -> conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    51
  val if_true_conv: (term -> bool) -> conv -> conv
41126
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
    52
  val if_exists_conv: (term -> bool) -> conv -> conv
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    53
  val binders_conv: (Proof.context -> conv) -> Proof.context -> conv
41126
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
    54
  val under_quant_conv: (Proof.context * cterm list -> conv) ->
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
    55
    Proof.context -> conv
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    56
  val prop_conv: conv -> conv
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    57
end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    58
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    59
structure SMT_Utils: SMT_UTILS =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    60
struct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    61
41123
boehmes
parents: 40840
diff changeset
    62
(* basic combinators *)
boehmes
parents: 40840
diff changeset
    63
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    64
fun repeat f =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    65
  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
    66
  in rep end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    67
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    68
fun repeat_yield f =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    69
  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
    70
  in rep end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    71
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
    72
41124
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    73
(* class dictionaries *)
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    74
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    75
type class = string list
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    76
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    77
val basicC = []
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    78
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    79
type 'a dict = (class * 'a) Ord_List.T
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    80
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    81
fun class_ord ((cs1, _), (cs2, _)) = list_ord fast_string_ord (cs1, cs2)
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    82
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    83
fun dict_insert (cs, x) d =
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    84
  if AList.defined (op =) d cs then d
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    85
  else Ord_List.insert class_ord (cs, x) d
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    86
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    87
fun dict_map_default (cs, x) f =
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    88
  dict_insert (cs, x) #> AList.map_entry (op =) cs f
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    89
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    90
fun dict_update (e as (_, x)) = dict_map_default e (K x)
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    91
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    92
fun dict_merge val_merge = sort class_ord o AList.join (op =) (K val_merge)
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    93
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    94
fun dict_lookup d cs =
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    95
  let fun match (cs', x) = if is_prefix (op =) cs' cs then SOME x else NONE
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    96
  in map_filter match d end
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    97
1de17a2de5ad moved SMT classes and dictionary functions to SMT_Utils
boehmes
parents: 41123
diff changeset
    98
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
    99
(* types *)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   100
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   101
val dest_funT =
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   102
  let
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   103
    fun dest Ts 0 T = (rev Ts, T)
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   104
      | 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
   105
      | dest _ _ T = raise TYPE ("not a function type", [T], [])
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   106
  in dest [] end
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   107
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   108
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   109
(* terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   110
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   111
fun dest_conj (@{const HOL.conj} $ t $ u) = (t, u)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   112
  | dest_conj t = raise TERM ("not a conjunction", [t])
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_disj (@{const HOL.disj} $ t $ u) = (t, u)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   115
  | dest_disj t = raise TERM ("not a disjunction", [t])
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   116
41126
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   117
fun under_quant f t =
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   118
  (case t of
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   119
    Const (@{const_name All}, _) $ Abs (_, _, u) => under_quant f u
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   120
  | Const (@{const_name Ex}, _) $ Abs (_, _, u) => under_quant f u
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   121
  | _ => f t)
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   122
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   123
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   124
(* patterns and instantiations *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   125
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   126
fun mk_const_pat thy name destT =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   127
  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
   128
  in (destT (Thm.ctyp_of_term cpat), cpat) end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   129
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   130
val destT1 = hd o Thm.dest_ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   131
val destT2 = hd o tl o Thm.dest_ctyp
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   132
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   133
fun instTs cUs (cTs, ct) = Thm.instantiate_cterm (cTs ~~ cUs, []) ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   134
fun instT cU (cT, ct) = instTs [cU] ([cT], ct)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   135
fun instT' ct = instT (Thm.ctyp_of_term 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
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   138
(* certified terms *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   139
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   140
fun certify ctxt = Thm.cterm_of (ProofContext.theory_of ctxt)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   141
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   142
fun typ_of ct = #T (Thm.rep_cterm ct) 
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   143
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   144
fun dest_cabs ct ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   145
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   146
    Abs _ =>
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   147
      let val (n, ctxt') = yield_singleton Variable.variant_fixes Name.uu ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   148
      in (snd (Thm.dest_abs (SOME n) ct), ctxt') end
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   149
  | _ => raise CTERM ("no abstraction", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   150
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   151
val dest_all_cabs = repeat_yield (try o dest_cabs) 
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   152
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   153
fun dest_cbinder ct ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   154
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   155
    Const _ $ Abs _ => dest_cabs (Thm.dest_arg ct) ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   156
  | _ => raise CTERM ("not a binder", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   157
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   158
val dest_all_cbinders = repeat_yield (try o dest_cbinder)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   159
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   160
val mk_cprop = Thm.capply (Thm.cterm_of @{theory} @{const Trueprop})
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   161
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   162
fun dest_cprop ct =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   163
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   164
    @{const Trueprop} $ _ => Thm.dest_arg ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   165
  | _ => raise CTERM ("not a property", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   166
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   167
val equals = mk_const_pat @{theory} @{const_name "=="} destT1
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   168
fun mk_cequals ct cu = Thm.mk_binop (instT' ct equals) ct cu
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   169
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   170
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   171
(* conversions *)
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   172
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   173
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
   174
40663
e080c9e68752 share and use more utility functions;
boehmes
parents: 40662
diff changeset
   175
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
   176
41126
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   177
fun if_exists_conv pred = if_true_conv (Term.exists_subterm pred)
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   178
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   179
fun binders_conv cv ctxt =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   180
  Conv.binder_conv (binders_conv cv o snd) ctxt else_conv cv ctxt
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   181
41126
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   182
fun under_quant_conv cv ctxt =
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   183
  let
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   184
    fun quant_conv inside ctxt cvs ct =
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   185
      (case Thm.term_of ct of
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   186
        Const (@{const_name All}, _) $ Abs _ =>
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   187
          Conv.binder_conv (under_conv cvs) ctxt
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   188
      | Const (@{const_name Ex}, _) $ Abs _ =>
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   189
          Conv.binder_conv (under_conv cvs) ctxt
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   190
      | _ => if inside then cv (ctxt, cvs) else Conv.all_conv) ct
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   191
    and under_conv cvs (cv, ctxt) = quant_conv true ctxt (cv :: cvs)
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   192
  in quant_conv false ctxt [] end
e0bd443c0fdd re-ordered SMT normalization code (eta-normalization, lambda abstractions and partial functions will be dealt with on the term level);
boehmes
parents: 41124
diff changeset
   193
40662
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   194
fun prop_conv cv ct =
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   195
  (case Thm.term_of ct of
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   196
    @{const Trueprop} $ _ => Conv.arg_conv cv ct
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   197
  | _ => raise CTERM ("not a property", [ct]))
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   198
798aad2229c0 added prove reconstruction for injective functions;
boehmes
parents:
diff changeset
   199
end