src/HOLCF/Tools/Domain/domain_take_proofs.ML
author huffman
Mon, 08 Mar 2010 07:37:11 -0800
changeset 35651 5dd352a85464
parent 35650 64fff18d7f08
child 35654 7a15e181bf3b
permissions -rw-r--r--
add type take_info
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     1
(*  Title:      HOLCF/Tools/domain/domain_take_proofs.ML
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     2
    Author:     Brian Huffman
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     3
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     4
Defines take functions for the given domain equation
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     5
and proves related theorems.
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     6
*)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     7
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     8
signature DOMAIN_TAKE_PROOFS =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
     9
sig
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    10
  type iso_info =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    11
    {
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    12
      absT : typ,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    13
      repT : typ,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    14
      abs_const : term,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    15
      rep_const : term,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    16
      abs_inverse : thm,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    17
      rep_inverse : thm
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    18
    }
35651
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    19
  type take_info =
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    20
    { take_consts : term list,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    21
      take_defs : thm list,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    22
      chain_take_thms : thm list,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    23
      take_0_thms : thm list,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    24
      take_Suc_thms : thm list,
35515
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
    25
      deflation_take_thms : thm list,
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
    26
      finite_consts : term list,
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
    27
      finite_defs : thm list
35651
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    28
    }
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    29
  val define_take_functions :
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    30
    (binding * iso_info) list -> theory -> take_info * theory
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    31
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    32
  val map_of_typ :
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    33
    theory -> (typ * term) list -> typ -> term
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    34
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    35
  val add_map_function :
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    36
    (string * string * thm) -> theory -> theory
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    37
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    38
  val get_map_tab : theory -> string Symtab.table
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    39
  val get_deflation_thms : theory -> thm list
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    40
end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    41
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    42
structure Domain_Take_Proofs : DOMAIN_TAKE_PROOFS =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    43
struct
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    44
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    45
type iso_info =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    46
  {
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    47
    absT : typ,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    48
    repT : typ,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    49
    abs_const : term,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    50
    rep_const : term,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    51
    abs_inverse : thm,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    52
    rep_inverse : thm
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    53
  };
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    54
35651
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    55
type take_info =
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    56
  { take_consts : term list,
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    57
    take_defs : thm list,
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    58
    chain_take_thms : thm list,
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    59
    take_0_thms : thm list,
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    60
    take_Suc_thms : thm list,
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    61
    deflation_take_thms : thm list,
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    62
    finite_consts : term list,
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    63
    finite_defs : thm list
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    64
  };
5dd352a85464 add type take_info
huffman
parents: 35650
diff changeset
    65
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    66
val beta_ss =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    67
  HOL_basic_ss
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    68
    addsimps simp_thms
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    69
    addsimps [@{thm beta_cfun}]
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    70
    addsimprocs [@{simproc cont_proc}];
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    71
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    72
val beta_tac = simp_tac beta_ss;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    73
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    74
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    75
(******************************** theory data *********************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    76
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    77
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    78
structure MapData = Theory_Data
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    79
(
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    80
  (* constant names like "foo_map" *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    81
  type T = string Symtab.table;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    82
  val empty = Symtab.empty;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    83
  val extend = I;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    84
  fun merge data = Symtab.merge (K true) data;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    85
);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    86
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    87
structure DeflMapData = Theory_Data
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    88
(
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    89
  (* theorems like "deflation a ==> deflation (foo_map$a)" *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    90
  type T = thm list;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    91
  val empty = [];
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    92
  val extend = I;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    93
  val merge = Thm.merge_thms;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    94
);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    95
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    96
fun add_map_function (tname, map_name, deflation_map_thm) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    97
    MapData.map (Symtab.insert (K true) (tname, map_name))
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    98
    #> DeflMapData.map (Thm.add_thm deflation_map_thm);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
    99
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   100
val get_map_tab = MapData.get;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   101
val get_deflation_thms = DeflMapData.get;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   102
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   103
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   104
(************************** building types and terms **************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   105
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   106
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   107
open HOLCF_Library;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   108
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   109
infixr 6 ->>;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   110
infix -->>;
35515
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   111
infix 9 `;
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   112
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   113
fun mapT (T as Type (_, Ts)) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   114
    (map (fn T => T ->> T) Ts) -->> (T ->> T)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   115
  | mapT T = T ->> T;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   116
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   117
fun mk_deflation t =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   118
  Const (@{const_name deflation}, Term.fastype_of t --> boolT) $ t;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   119
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   120
fun mk_eqs (t, u) = HOLogic.mk_Trueprop (HOLogic.mk_eq (t, u));
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   121
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   122
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   123
(****************************** isomorphism info ******************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   124
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   125
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   126
fun deflation_abs_rep (info : iso_info) : thm =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   127
  let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   128
    val abs_iso = #abs_inverse info;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   129
    val rep_iso = #rep_inverse info;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   130
    val thm = @{thm deflation_abs_rep} OF [abs_iso, rep_iso];
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   131
  in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   132
    Drule.export_without_context thm
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   133
  end
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   134
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   135
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   136
(********************* building map functions over types **********************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   137
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   138
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   139
fun map_of_typ (thy : theory) (sub : (typ * term) list) (T : typ) : term =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   140
  let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   141
    val map_tab = get_map_tab thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   142
    fun auto T = T ->> T;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   143
    fun map_of T =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   144
        case AList.lookup (op =) sub T of
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   145
          SOME m => (m, true) | NONE => map_of' T
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   146
    and map_of' (T as (Type (c, Ts))) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   147
        (case Symtab.lookup map_tab c of
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   148
          SOME map_name =>
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   149
          let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   150
            val map_type = map auto Ts -->> auto T;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   151
            val (ms, bs) = map_split map_of Ts;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   152
          in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   153
            if exists I bs
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   154
            then (list_ccomb (Const (map_name, map_type), ms), true)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   155
            else (mk_ID T, false)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   156
          end
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   157
        | NONE => (mk_ID T, false))
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   158
      | map_of' T = (mk_ID T, false);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   159
  in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   160
    fst (map_of T)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   161
  end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   162
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   163
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   164
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   165
(********************* declaring definitions and theorems *********************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   166
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   167
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   168
fun define_const
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   169
    (bind : binding, rhs : term)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   170
    (thy : theory)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   171
    : (term * thm) * theory =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   172
  let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   173
    val typ = Term.fastype_of rhs;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   174
    val (const, thy) = Sign.declare_const ((bind, typ), NoSyn) thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   175
    val eqn = Logic.mk_equals (const, rhs);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   176
    val def = Thm.no_attributes (Binding.suffix_name "_def" bind, eqn);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   177
    val (def_thm, thy) = yield_singleton (PureThy.add_defs false) def thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   178
  in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   179
    ((const, def_thm), thy)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   180
  end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   181
35650
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   182
fun add_qualified_def name (path, eqn) thy =
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   183
    thy
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   184
    |> Sign.add_path path
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   185
    |> yield_singleton (PureThy.add_defs false)
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   186
        (Thm.no_attributes (Binding.name name, eqn))
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   187
    ||> Sign.parent_path;
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   188
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   189
fun add_qualified_thm name (path, thm) thy =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   190
    thy
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   191
    |> Sign.add_path path
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   192
    |> yield_singleton PureThy.add_thms
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   193
        (Thm.no_attributes (Binding.name name, thm))
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   194
    ||> Sign.parent_path;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   195
35573
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   196
fun add_qualified_simp_thm name (path, thm) thy =
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   197
    thy
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   198
    |> Sign.add_path path
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   199
    |> yield_singleton PureThy.add_thms
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   200
        ((Binding.name name, thm), [Simplifier.simp_add])
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   201
    ||> Sign.parent_path;
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   202
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   203
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   204
(************************** defining take functions ***************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   205
(******************************************************************************)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   206
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   207
fun define_take_functions
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   208
    (spec : (binding * iso_info) list)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   209
    (thy : theory) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   210
  let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   211
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   212
    (* retrieve components of spec *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   213
    val dom_binds = map fst spec;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   214
    val iso_infos = map snd spec;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   215
    val dom_eqns = map (fn x => (#absT x, #repT x)) iso_infos;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   216
    val rep_abs_consts = map (fn x => (#rep_const x, #abs_const x)) iso_infos;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   217
    val dnames = map Binding.name_of dom_binds;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   218
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   219
    (* get table of map functions *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   220
    val map_tab = MapData.get thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   221
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   222
    fun mk_projs []      t = []
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   223
      | mk_projs (x::[]) t = [(x, t)]
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   224
      | mk_projs (x::xs) t = (x, mk_fst t) :: mk_projs xs (mk_snd t);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   225
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   226
    fun mk_cfcomp2 ((rep_const, abs_const), f) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   227
        mk_cfcomp (abs_const, mk_cfcomp (f, rep_const));
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   228
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   229
    (* define take functional *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   230
    val newTs : typ list = map fst dom_eqns;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   231
    val copy_arg_type = mk_tupleT (map (fn T => T ->> T) newTs);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   232
    val copy_arg = Free ("f", copy_arg_type);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   233
    val copy_args = map snd (mk_projs dom_binds copy_arg);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   234
    fun one_copy_rhs (rep_abs, (lhsT, rhsT)) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   235
      let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   236
        val body = map_of_typ thy (newTs ~~ copy_args) rhsT;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   237
      in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   238
        mk_cfcomp2 (rep_abs, body)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   239
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   240
    val take_functional =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   241
        big_lambda copy_arg
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   242
          (mk_tuple (map one_copy_rhs (rep_abs_consts ~~ dom_eqns)));
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   243
    val take_rhss =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   244
      let
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   245
        val n = Free ("n", HOLogic.natT);
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   246
        val rhs = mk_iterate (n, take_functional);
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   247
      in
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   248
        map (lambda n o snd) (mk_projs dom_binds rhs)
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   249
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   250
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   251
    (* define take constants *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   252
    fun define_take_const ((tbind, take_rhs), (lhsT, rhsT)) thy =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   253
      let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   254
        val take_type = HOLogic.natT --> lhsT ->> lhsT;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   255
        val take_bind = Binding.suffix_name "_take" tbind;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   256
        val (take_const, thy) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   257
          Sign.declare_const ((take_bind, take_type), NoSyn) thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   258
        val take_eqn = Logic.mk_equals (take_const, take_rhs);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   259
        val (take_def_thm, thy) =
35650
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   260
            add_qualified_def "take_def"
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   261
             (Binding.name_of tbind, take_eqn) thy;
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   262
      in ((take_const, take_def_thm), thy) end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   263
    val ((take_consts, take_defs), thy) = thy
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   264
      |> fold_map define_take_const (dom_binds ~~ take_rhss ~~ dom_eqns)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   265
      |>> ListPair.unzip;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   266
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   267
    (* prove chain_take lemmas *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   268
    fun prove_chain_take (take_const, dname) thy =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   269
      let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   270
        val goal = mk_trp (mk_chain take_const);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   271
        val rules = take_defs @ @{thms chain_iterate ch2ch_fst ch2ch_snd};
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   272
        val tac = simp_tac (HOL_basic_ss addsimps rules) 1;
35572
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   273
        val thm = Goal.prove_global thy [] [] goal (K tac);
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   274
      in
35573
bd8b50e76e94 add function add_qualified_simp_thm
huffman
parents: 35572
diff changeset
   275
        add_qualified_simp_thm "chain_take" (dname, thm) thy
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   276
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   277
    val (chain_take_thms, thy) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   278
      fold_map prove_chain_take (take_consts ~~ dnames) thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   279
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   280
    (* prove take_0 lemmas *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   281
    fun prove_take_0 ((take_const, dname), (lhsT, rhsT)) thy =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   282
      let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   283
        val lhs = take_const $ @{term "0::nat"};
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   284
        val goal = mk_eqs (lhs, mk_bottom (lhsT ->> lhsT));
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   285
        val rules = take_defs @ @{thms iterate_0 fst_strict snd_strict};
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   286
        val tac = simp_tac (HOL_basic_ss addsimps rules) 1;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   287
        val take_0_thm = Goal.prove_global thy [] [] goal (K tac);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   288
      in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   289
        add_qualified_thm "take_0" (dname, take_0_thm) thy
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   290
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   291
    val (take_0_thms, thy) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   292
      fold_map prove_take_0 (take_consts ~~ dnames ~~ dom_eqns) thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   293
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   294
    (* prove take_Suc lemmas *)
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   295
    val n = Free ("n", natT);
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   296
    val take_is = map (fn t => t $ n) take_consts;
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   297
    fun prove_take_Suc
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   298
          (((take_const, rep_abs), dname), (lhsT, rhsT)) thy =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   299
      let
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   300
        val lhs = take_const $ (@{term Suc} $ n);
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   301
        val body = map_of_typ thy (newTs ~~ take_is) rhsT;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   302
        val rhs = mk_cfcomp2 (rep_abs, body);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   303
        val goal = mk_eqs (lhs, rhs);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   304
        val simps = @{thms iterate_Suc fst_conv snd_conv}
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   305
        val rules = take_defs @ simps;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   306
        val tac = simp_tac (beta_ss addsimps rules) 1;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   307
        val take_Suc_thm = Goal.prove_global thy [] [] goal (K tac);
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   308
      in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   309
        add_qualified_thm "take_Suc" (dname, take_Suc_thm) thy
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   310
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   311
    val (take_Suc_thms, thy) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   312
      fold_map prove_take_Suc
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   313
        (take_consts ~~ rep_abs_consts ~~ dnames ~~ dom_eqns) thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   314
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   315
    (* prove deflation theorems for take functions *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   316
    val deflation_abs_rep_thms = map deflation_abs_rep iso_infos;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   317
    val deflation_take_thm =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   318
      let
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   319
        val n = Free ("n", natT);
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   320
        fun mk_goal take_const = mk_deflation (take_const $ n);
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   321
        val goal = mk_trp (foldr1 mk_conj (map mk_goal take_consts));
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   322
        val adm_rules =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   323
          @{thms adm_conj adm_subst [OF _ adm_deflation]
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   324
                 cont2cont_fst cont2cont_snd cont_id};
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   325
        val bottom_rules =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   326
          take_0_thms @ @{thms deflation_UU simp_thms};
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   327
        val deflation_rules =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   328
          @{thms conjI deflation_ID}
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   329
          @ deflation_abs_rep_thms
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   330
          @ DeflMapData.get thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   331
      in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   332
        Goal.prove_global thy [] [] goal (fn _ =>
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   333
         EVERY
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   334
          [rtac @{thm nat.induct} 1,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   335
           simp_tac (HOL_basic_ss addsimps bottom_rules) 1,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   336
           asm_simp_tac (HOL_basic_ss addsimps take_Suc_thms) 1,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   337
           REPEAT (etac @{thm conjE} 1
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   338
                   ORELSE resolve_tac deflation_rules 1
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   339
                   ORELSE atac 1)])
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   340
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   341
    fun conjuncts [] thm = []
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   342
      | conjuncts (n::[]) thm = [(n, thm)]
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   343
      | conjuncts (n::ns) thm = let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   344
          val thmL = thm RS @{thm conjunct1};
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   345
          val thmR = thm RS @{thm conjunct2};
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   346
        in (n, thmL):: conjuncts ns thmR end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   347
    val (deflation_take_thms, thy) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   348
      fold_map (add_qualified_thm "deflation_take")
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   349
        (map (apsnd Drule.export_without_context)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   350
          (conjuncts dnames deflation_take_thm)) thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   351
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   352
    (* prove strictness of take functions *)
35572
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   353
    fun prove_take_strict (deflation_take, dname) thy =
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   354
      let
35572
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   355
        val take_strict_thm =
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   356
            Drule.export_without_context
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   357
            (@{thm deflation_strict} OF [deflation_take]);
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   358
      in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   359
        add_qualified_thm "take_strict" (dname, take_strict_thm) thy
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   360
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   361
    val (take_strict_thms, thy) =
35572
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   362
      fold_map prove_take_strict
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   363
        (deflation_take_thms ~~ dnames) thy;
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   364
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   365
    (* prove take/take rules *)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   366
    fun prove_take_take ((chain_take, deflation_take), dname) thy =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   367
      let
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   368
        val take_take_thm =
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   369
            Drule.export_without_context
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   370
            (@{thm deflation_chain_min} OF [chain_take, deflation_take]);
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   371
      in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   372
        add_qualified_thm "take_take" (dname, take_take_thm) thy
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   373
      end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   374
    val (take_take_thms, thy) =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   375
      fold_map prove_take_take
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   376
        (chain_take_thms ~~ deflation_take_thms ~~ dnames) thy;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   377
35572
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   378
    (* prove take_below rules *)
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   379
    fun prove_take_below (deflation_take, dname) thy =
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   380
      let
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   381
        val take_below_thm =
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   382
            Drule.export_without_context
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   383
            (@{thm deflation.below} OF [deflation_take]);
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   384
      in
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   385
        add_qualified_thm "take_below" (dname, take_below_thm) thy
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   386
      end;
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   387
    val (take_below_thms, thy) =
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   388
      fold_map prove_take_below
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   389
        (deflation_take_thms ~~ dnames) thy;
44eeda8cb708 generate lemma take_below, declare chain_take [simp]
huffman
parents: 35557
diff changeset
   390
35515
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   391
    (* define finiteness predicates *)
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   392
    fun define_finite_const ((tbind, take_const), (lhsT, rhsT)) thy =
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   393
      let
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   394
        val finite_type = lhsT --> boolT;
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   395
        val finite_bind = Binding.suffix_name "_finite" tbind;
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   396
        val (finite_const, thy) =
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   397
          Sign.declare_const ((finite_bind, finite_type), NoSyn) thy;
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   398
        val x = Free ("x", lhsT);
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   399
        val n = Free ("n", natT);
35515
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   400
        val finite_rhs =
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   401
          lambda x (HOLogic.exists_const natT $
35557
5da670d57118 uniformly use variable names m and n in take-related lemmas; use export_without_context where appropriate
huffman
parents: 35555
diff changeset
   402
            (lambda n (mk_eq (mk_capply (take_const $ n, x), x))));
35515
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   403
        val finite_eqn = Logic.mk_equals (finite_const, finite_rhs);
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   404
        val (finite_def_thm, thy) =
35650
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   405
            add_qualified_def "finite_def"
64fff18d7f08 add function add_qualified_def
huffman
parents: 35594
diff changeset
   406
             (Binding.name_of tbind, finite_eqn) thy;
35515
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   407
      in ((finite_const, finite_def_thm), thy) end;
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   408
    val ((finite_consts, finite_defs), thy) = thy
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   409
      |> fold_map define_finite_const (dom_binds ~~ take_consts ~~ dom_eqns)
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   410
      |>> ListPair.unzip;
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   411
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   412
    val result =
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   413
      {
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   414
        take_consts = take_consts,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   415
        take_defs = take_defs,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   416
        chain_take_thms = chain_take_thms,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   417
        take_0_thms = take_0_thms,
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   418
        take_Suc_thms = take_Suc_thms,
35515
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   419
        deflation_take_thms = deflation_take_thms,
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   420
        finite_consts = finite_consts,
d631dc53ede0 move definition of finiteness predicate into domain_take_proofs.ML
huffman
parents: 35514
diff changeset
   421
        finite_defs = finite_defs
35514
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   422
      };
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   423
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   424
  in
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   425
    (result, thy)
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   426
  end;
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   427
a2cfa413eaab move take-related definitions and proofs to new module; simplify map_of_typ functions
huffman
parents:
diff changeset
   428
end;