Nominal/nominal_dt_alpha.ML
author Christian Urban <urbanc@in.tum.de>
Mon, 31 May 2010 19:57:29 +0200
changeset 2304 8a98171ba1fc
parent 2300 9fb315392493
child 2311 4da5c5c29009
permissions -rw-r--r--
all raw definitions are defined using function
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
(*  Title:      nominal_dt_alpha.ML
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
    Author:     Cezary Kaliszyk
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
    Author:     Christian Urban
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
  Definitions of the alpha relations.
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
*)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
signature NOMINAL_DT_ALPHA =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
sig
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
  val define_raw_alpha: Datatype_Aux.descr -> (string * sort) list -> bn_info ->
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
    bclause list list list -> term list -> Proof.context -> 
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
    12
    term list * term list * thm list * thm list * thm * local_theory
2300
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
    13
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
    14
  val mk_alpha_distincts: Proof.context -> thm list -> thm list list -> 
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
    15
    term list -> term list -> bn_info -> thm list * thm list
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
    16
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
    17
  val mk_alpha_eq_iff: Proof.context -> thm list -> thm list -> thm list -> thm list -> thm list
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
structure Nominal_Dt_Alpha: NOMINAL_DT_ALPHA =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
struct
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
2300
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
    23
(** definition of the inductive rules for alpha and alpha_bn **)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
    24
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
(* construct the compound terms for prod_fv and prod_alpha *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
fun mk_prod_fv (t1, t2) =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    28
  val ty1 = fastype_of t1
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
  val ty2 = fastype_of t2 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
  val resT = HOLogic.mk_prodT (domain_type ty1, domain_type ty2) --> @{typ "atom set"}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
  Const (@{const_name "prod_fv"}, [ty1, ty2] ---> resT) $ t1 $ t2
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
fun mk_prod_alpha (t1, t2) =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
  val ty1 = fastype_of t1
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
  val ty2 = fastype_of t2 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
  val prodT = HOLogic.mk_prodT (domain_type ty1, domain_type ty2)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
  val resT = [prodT, prodT] ---> @{typ "bool"}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
  Const (@{const_name "prod_alpha"}, [ty1, ty2] ---> resT) $ t1 $ t2
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
(* generates the compound binder terms *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
fun mk_binders lthy bmode args bodies = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
let  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
  fun bind_set lthy args (NONE, i) = setify lthy (nth args i)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
    | bind_set _ args (SOME bn, i) = bn $ (nth args i)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    50
  fun bind_lst lthy args (NONE, i) = listify lthy (nth args i)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    51
    | bind_lst _ args (SOME bn, i) = bn $ (nth args i)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    52
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    53
  val (combine_fn, bind_fn) =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    54
    case bmode of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
      Lst => (mk_append, bind_lst) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    56
    | Set => (mk_union,  bind_set)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
    | Res => (mk_union,  bind_set)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
  foldl1 combine_fn (map (bind_fn lthy args) bodies)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
(* produces the term for an alpha with abstraction *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
fun mk_alpha_term bmode fv alpha args args' binders binders' =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    64
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    65
  val (alpha_name, binder_ty) = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    66
    case bmode of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
      Lst => (@{const_name "alpha_lst"}, @{typ "atom list"})
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
    | Set => (@{const_name "alpha_gen"}, @{typ "atom set"})
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    69
    | Res => (@{const_name "alpha_res"}, @{typ "atom set"})
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    70
  val ty = fastype_of args
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    71
  val pair_ty = HOLogic.mk_prodT (binder_ty, ty)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    72
  val alpha_ty = [ty, ty] ---> @{typ "bool"}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    73
  val fv_ty = ty --> @{typ "atom set"}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
  val pair_lhs = HOLogic.mk_prod (binders, args)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    75
  val pair_rhs = HOLogic.mk_prod (binders', args')
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    76
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    77
  HOLogic.exists_const @{typ perm} $ Abs ("p", @{typ perm},
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    78
    Const (alpha_name, [pair_ty, alpha_ty, fv_ty, @{typ "perm"}, pair_ty] ---> @{typ bool}) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    79
      $ pair_lhs $ alpha $ fv $ (Bound 0) $ pair_rhs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    80
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    81
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    82
(* for non-recursive binders we have to produce alpha_bn premises *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    83
fun mk_alpha_bn_prem alpha_bn_map args args' bodies binder = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    84
  case binder of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    85
    (NONE, _) => []
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    86
  | (SOME bn, i) =>
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    87
     if member (op=) bodies i then [] 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    88
     else [the (AList.lookup (op=) alpha_bn_map bn) $ (nth args i) $ (nth args' i)]
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    89
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    90
(* generat the premises for an alpha rule; mk_frees is used
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    91
   if no binders are present *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    92
fun mk_alpha_prems lthy alpha_map alpha_bn_map is_rec (args, args') bclause =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    93
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    94
  fun mk_frees i =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    95
    let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    96
      val arg = nth args i
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    97
      val arg' = nth args' i
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    98
      val ty = fastype_of arg
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    99
    in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   100
      if nth is_rec i
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   101
      then fst (the (AList.lookup (op=) alpha_map ty)) $ arg $ arg'
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   102
      else HOLogic.mk_eq (arg, arg')
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   103
    end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   104
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   105
  fun mk_alpha_fv i = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   106
    let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   107
      val ty = fastype_of (nth args i)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   108
    in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   109
      case AList.lookup (op=) alpha_map ty of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   110
        NONE => (HOLogic.eq_const ty, supp_const ty) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   111
      | SOME (alpha, fv) => (alpha, fv) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   112
    end  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   113
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   114
  case bclause of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   115
    BC (_, [], bodies) => map (HOLogic.mk_Trueprop o mk_frees) bodies 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
  | BC (bmode, binders, bodies) => 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   117
    let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   118
      val (alphas, fvs) = split_list (map mk_alpha_fv bodies)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   119
      val comp_fv = foldl1 mk_prod_fv fvs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   120
      val comp_alpha = foldl1 mk_prod_alpha alphas
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   121
      val comp_args = foldl1 HOLogic.mk_prod (map (nth args) bodies)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   122
      val comp_args' = foldl1 HOLogic.mk_prod (map (nth args') bodies)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   123
      val comp_binders = mk_binders lthy bmode args binders
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   124
      val comp_binders' = mk_binders lthy bmode args' binders
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   125
      val alpha_prem = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   126
        mk_alpha_term bmode comp_fv comp_alpha comp_args comp_args' comp_binders comp_binders'
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   127
      val alpha_bn_prems = flat (map (mk_alpha_bn_prem alpha_bn_map args args' bodies) binders)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   128
    in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   129
      map HOLogic.mk_Trueprop (alpha_prem::alpha_bn_prems)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   130
    end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   131
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   132
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   133
(* produces the introduction rule for an alpha rule *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   134
fun mk_alpha_intros lthy alpha_map alpha_bn_map (constr, ty, arg_tys, is_rec) bclauses = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   135
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   136
  val arg_names = Datatype_Prop.make_tnames arg_tys
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   137
  val arg_names' = Name.variant_list arg_names arg_names
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   138
  val args = map Free (arg_names ~~ arg_tys)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   139
  val args' = map Free (arg_names' ~~ arg_tys)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   140
  val alpha = fst (the (AList.lookup (op=) alpha_map ty))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   141
  val concl = HOLogic.mk_Trueprop (alpha $ list_comb (constr, args) $ list_comb (constr, args'))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   142
  val prems = map (mk_alpha_prems lthy alpha_map alpha_bn_map is_rec (args, args')) bclauses
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   143
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   144
  Library.foldr Logic.mk_implies (flat prems, concl)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   145
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   146
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   147
(* produces the premise of an alpha-bn rule; we only need to
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   148
   treat the case special where the binding clause is empty;
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   149
   
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   150
   - if the body is not included in the bn_info, then we either
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   151
     produce an equation or an alpha-premise
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   152
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   153
   - if the body is included in the bn_info, then we create
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   154
     either a recursive call to alpha-bn, or no premise  *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   155
fun mk_alpha_bn lthy alpha_map alpha_bn_map bn_args is_rec (args, args') bclause =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   156
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   157
  fun mk_alpha_bn_prem alpha_map alpha_bn_map bn_args (args, args') i = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   158
  let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   159
    val arg = nth args i
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   160
    val arg' = nth args' i
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   161
    val ty = fastype_of arg
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   162
  in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   163
    case AList.lookup (op=) bn_args i of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   164
      NONE => (case (AList.lookup (op=) alpha_map ty) of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   165
                 NONE =>  [HOLogic.mk_eq (arg, arg')]
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   166
               | SOME (alpha, _) => [alpha $ arg $ arg'])
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   167
    | SOME (NONE) => []
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   168
    | SOME (SOME bn) => [the (AList.lookup (op=) alpha_bn_map bn) $ arg $ arg']
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   169
  end  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   170
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   171
  case bclause of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   172
    BC (_, [], bodies) => 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   173
      map HOLogic.mk_Trueprop 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   174
        (flat (map (mk_alpha_bn_prem alpha_map alpha_bn_map bn_args (args, args')) bodies))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   175
  | _ => mk_alpha_prems lthy alpha_map alpha_bn_map is_rec (args, args') bclause
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   176
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   177
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   178
fun mk_alpha_bn_intro lthy bn_trm alpha_map alpha_bn_map (bn_args, (constr, _, arg_tys, is_rec)) bclauses =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   179
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   180
  val arg_names = Datatype_Prop.make_tnames arg_tys
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   181
  val arg_names' = Name.variant_list arg_names arg_names
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   182
  val args = map Free (arg_names ~~ arg_tys)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   183
  val args' = map Free (arg_names' ~~ arg_tys)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   184
  val alpha_bn = the (AList.lookup (op=) alpha_bn_map bn_trm)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   185
  val concl = HOLogic.mk_Trueprop (alpha_bn $ list_comb (constr, args) $ list_comb (constr, args'))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   186
  val prems = map (mk_alpha_bn lthy alpha_map alpha_bn_map bn_args is_rec (args, args')) bclauses
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   187
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   188
  Library.foldr Logic.mk_implies (flat prems, concl)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   189
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   190
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   191
fun mk_alpha_bn_intros lthy alpha_map alpha_bn_map constrs_info bclausesss (bn_trm, bn_n, bn_argss) = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   192
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   193
  val nth_constrs_info = nth constrs_info bn_n
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   194
  val nth_bclausess = nth bclausesss bn_n
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   195
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   196
  map2 (mk_alpha_bn_intro lthy bn_trm alpha_map alpha_bn_map) (bn_argss ~~ nth_constrs_info) nth_bclausess
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   197
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   198
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   199
fun define_raw_alpha descr sorts bn_info bclausesss fvs lthy =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   200
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   201
  val alpha_names = prefix_dt_names descr sorts "alpha_"
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   202
  val alpha_arg_tys = all_dtyps descr sorts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   203
  val alpha_tys = map (fn ty => [ty, ty] ---> @{typ bool}) alpha_arg_tys
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   204
  val alpha_frees = map Free (alpha_names ~~ alpha_tys)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   205
  val alpha_map = alpha_arg_tys ~~ (alpha_frees ~~ fvs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   206
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   207
  val (bns, bn_tys) = split_list (map (fn (bn, i, _) => (bn, i)) bn_info)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   208
  val bn_names = map (fn bn => Long_Name.base_name (fst (dest_Const bn))) bns
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   209
  val alpha_bn_names = map (prefix "alpha_") bn_names
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   210
  val alpha_bn_arg_tys = map (fn i => nth_dtyp descr sorts i) bn_tys
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   211
  val alpha_bn_tys = map (fn ty => [ty, ty] ---> @{typ "bool"}) alpha_bn_arg_tys
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   212
  val alpha_bn_frees = map Free (alpha_bn_names ~~ alpha_bn_tys)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   213
  val alpha_bn_map = bns ~~ alpha_bn_frees
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   214
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   215
  val constrs_info = all_dtyp_constrs_types descr sorts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   216
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   217
  val alpha_intros = map2 (map2 (mk_alpha_intros lthy alpha_map alpha_bn_map)) constrs_info bclausesss 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   218
  val alpha_bn_intros = map (mk_alpha_bn_intros lthy alpha_map alpha_bn_map constrs_info bclausesss) bn_info
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   219
2299
09bbed4f21d6 added slides
Christian Urban <urbanc@in.tum.de>
parents: 2298
diff changeset
   220
  val all_alpha_names = map (fn (a, ty) => ((Binding.name a, ty), NoSyn))
09bbed4f21d6 added slides
Christian Urban <urbanc@in.tum.de>
parents: 2298
diff changeset
   221
    (alpha_names @ alpha_bn_names ~~ alpha_tys @ alpha_bn_tys)
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   222
  val all_alpha_intros = map (pair Attrib.empty_binding) (flat alpha_intros @ flat alpha_bn_intros)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   223
  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   224
  val (alphas, lthy') = Inductive.add_inductive_i
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   225
     {quiet_mode = true, verbose = false, alt_name = Binding.empty,
2300
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   226
      coind = false, no_elim = false, no_ind = false, skip_mono = false, fork_mono = false}
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   227
     all_alpha_names [] all_alpha_intros [] lthy
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   228
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   229
  val all_alpha_trms_loc = #preds alphas;
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   230
  val alpha_induct_loc = #raw_induct alphas;
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   231
  val alpha_intros_loc = #intrs alphas;
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   232
  val alpha_cases_loc = #elims alphas;
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   233
  val phi = ProofContext.export_morphism lthy' lthy;
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   234
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   235
  val all_alpha_trms = map (Morphism.term phi) all_alpha_trms_loc;
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   236
  val alpha_induct = Morphism.thm phi alpha_induct_loc;
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   237
  val alpha_intros = map (Morphism.thm phi) alpha_intros_loc
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   238
  val alpha_cases = map (Morphism.thm phi) alpha_cases_loc
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   239
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   240
  val (alpha_trms, alpha_bn_trms) = chop (length fvs) all_alpha_trms
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   241
in
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   242
  (alpha_trms, alpha_bn_trms, alpha_intros, alpha_cases, alpha_induct, lthy')
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   243
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   244
2300
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   245
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   246
(** produces the distinctness theorems **)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   247
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   248
(* transforms the distinctness theorems of the constructors 
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   249
   to "not-alphas" of the constructors *)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   250
fun mk_alpha_distinct_goal alpha neq =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   251
let
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   252
  val (lhs, rhs) = 
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   253
    neq
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   254
    |> HOLogic.dest_Trueprop
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   255
    |> HOLogic.dest_not
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   256
    |> HOLogic.dest_eq
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   257
in
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   258
  alpha $ lhs $ rhs
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   259
  |> HOLogic.mk_not
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   260
  |> HOLogic.mk_Trueprop
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   261
end
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   262
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   263
fun distinct_tac cases distinct_thms =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   264
  rtac notI THEN' eresolve_tac cases 
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   265
  THEN_ALL_NEW asm_full_simp_tac (HOL_ss addsimps distinct_thms)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   266
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   267
fun mk_alpha_distinct ctxt cases_thms (distinct_thm, alpha) =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   268
let
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   269
  val ((_, thms), ctxt') = Variable.import false distinct_thm ctxt
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   270
  val goals = map (mk_alpha_distinct_goal alpha o prop_of) thms
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   271
  val nrels = map (fn t => Goal.prove ctxt' [] [] t (K (distinct_tac cases_thms distinct_thm 1))) goals
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   272
in
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   273
  Variable.export ctxt' ctxt nrels
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   274
end
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   275
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   276
fun mk_alpha_distincts ctxt alpha_cases constrs_distinct_thms alpha_trms alpha_bn_trms bn_infos =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   277
let
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   278
  val alpha_distincts = 
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   279
    map (mk_alpha_distinct ctxt alpha_cases) (constrs_distinct_thms ~~ alpha_trms)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   280
  val distinc_thms = map 
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   281
  val alpha_bn_distincts_aux = map (fn (_, i, _) => nth constrs_distinct_thms i) bn_infos
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   282
  val alpha_bn_distincts =  
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   283
    map (mk_alpha_distinct ctxt alpha_cases) (alpha_bn_distincts_aux ~~ alpha_bn_trms)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   284
in
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   285
  (flat alpha_distincts, flat alpha_bn_distincts)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   286
end
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   287
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   288
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   289
(** produces the alpha_eq_iff simplification rules **)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   290
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   291
(* in case a theorem is of the form (C.. = C..), it will be
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   292
   rewritten to ((C.. = C..) = True) *)
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   293
fun mk_simp_rule thm =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   294
  case (prop_of thm) of
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   295
    @{term "Trueprop"} $ (Const (@{const_name "op ="}, _) $ _ $ _) => @{thm eqTrueI} OF [thm]
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   296
  | _ => thm
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   297
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   298
fun alpha_eq_iff_tac dist_inj intros elims =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   299
  SOLVED' (asm_full_simp_tac (HOL_ss addsimps intros)) ORELSE'
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   300
  (rtac @{thm iffI} THEN' 
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   301
    RANGE [eresolve_tac elims THEN_ALL_NEW asm_full_simp_tac (HOL_ss addsimps dist_inj),
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   302
           asm_full_simp_tac (HOL_ss addsimps intros)])
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   303
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   304
fun mk_alpha_eq_iff_goal thm =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   305
  let
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   306
    val prop = prop_of thm;
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   307
    val concl = HOLogic.dest_Trueprop (Logic.strip_imp_concl prop);
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   308
    val hyps = map HOLogic.dest_Trueprop (Logic.strip_imp_prems prop);
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   309
    fun list_conj l = foldr1 HOLogic.mk_conj l;
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   310
  in
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   311
    if hyps = [] then HOLogic.mk_Trueprop concl
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   312
    else HOLogic.mk_Trueprop (HOLogic.mk_eq (concl, list_conj hyps))
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   313
  end;
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   314
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   315
fun mk_alpha_eq_iff ctxt alpha_intros distinct_thms inject_thms alpha_elims =
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   316
let
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   317
  val ((_, thms_imp), ctxt') = Variable.import false alpha_intros ctxt;
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   318
  val goals = map mk_alpha_eq_iff_goal thms_imp;
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   319
  val tac = alpha_eq_iff_tac (distinct_thms @ inject_thms) alpha_intros alpha_elims 1;
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   320
  val thms = map (fn goal => Goal.prove ctxt' [] [] goal (K tac)) goals;
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   321
in
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   322
  Variable.export ctxt' ctxt thms
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   323
  |> map mk_simp_rule
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   324
end
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   325
2297
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   326
end (* structure *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   327