src/HOL/Codatatype/Tools/bnf_util.ML
author blanchet
Wed, 12 Sep 2012 23:06:39 +0200
changeset 50357 8ea4bad49ed5
parent 50352 538687a77075
child 50381 3edd1c90f6e6
permissions -rw-r--r--
rough and ready induction
     1 (*  Title:      HOL/Codatatype/Tools/bnf_util.ML
     2     Author:     Dmitriy Traytel, TU Muenchen
     3     Copyright   2012
     4 
     5 Library for bounded natural functors.
     6 *)
     7 
     8 signature BNF_UTIL =
     9 sig
    10   val map3: ('a -> 'b -> 'c -> 'd) -> 'a list -> 'b list -> 'c list -> 'd list
    11   val map4: ('a -> 'b -> 'c -> 'd -> 'e) -> 'a list -> 'b list -> 'c list -> 'd list -> 'e list
    12   val map5: ('a -> 'b -> 'c -> 'd -> 'e -> 'f) ->
    13     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list
    14   val map6: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g) ->
    15     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list
    16   val map7: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h) ->
    17     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list
    18   val map8: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i) ->
    19     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list -> 'i list
    20   val map9: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j) ->
    21     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
    22     'i list -> 'j list
    23   val map10: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k) ->
    24     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
    25     'i list -> 'j list -> 'k list
    26   val map11: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l) ->
    27     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
    28     'i list -> 'j list -> 'k list -> 'l list
    29   val map12: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i -> 'j -> 'k -> 'l -> 'm) ->
    30     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h list ->
    31     'i list -> 'j list -> 'k list -> 'l list -> 'm list
    32   val fold_map2: ('a -> 'b -> 'c -> 'd * 'c) -> 'a list -> 'b list -> 'c -> 'd list * 'c
    33   val fold_map3: ('a -> 'b -> 'c -> 'd -> 'e * 'd) ->
    34     'a list -> 'b list -> 'c list -> 'd -> 'e list * 'd
    35   val fold_map4: ('a -> 'b -> 'c -> 'd -> 'e -> 'f * 'e) ->
    36     'a list -> 'b list -> 'c list -> 'd list -> 'e -> 'f list * 'e
    37   val fold_map5: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g * 'f) ->
    38     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f -> 'g list * 'f
    39   val fold_map6: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h * 'g) ->
    40     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g -> 'h list * 'g
    41   val fold_map7: ('a -> 'b -> 'c -> 'd -> 'e -> 'f -> 'g -> 'h -> 'i * 'h) ->
    42     'a list -> 'b list -> 'c list -> 'd list -> 'e list -> 'f list -> 'g list -> 'h -> 'i list * 'h
    43   val interleave: 'a list -> 'a list -> 'a list
    44   val transpose: 'a list list -> 'a list list
    45   val seq_conds: (bool -> 'a -> 'b) -> int -> int -> 'a list -> 'b list
    46 
    47   val mk_fresh_names: Proof.context -> int -> string -> string list * Proof.context
    48   val mk_TFrees: int -> Proof.context -> typ list * Proof.context
    49   val mk_TFreess: int list -> Proof.context -> typ list list * Proof.context
    50   val mk_TFrees': sort list -> Proof.context -> typ list * Proof.context
    51   val mk_Frees: string -> typ list -> Proof.context -> term list * Proof.context
    52   val mk_Freess: string -> typ list list -> Proof.context -> term list list * Proof.context
    53   val mk_Freesss: string -> typ list list list -> Proof.context ->
    54     term list list list * Proof.context
    55   val mk_Freessss: string -> typ list list list list -> Proof.context ->
    56     term list list list list * Proof.context
    57   val mk_Frees': string -> typ list -> Proof.context ->
    58     (term list * (string * typ) list) * Proof.context
    59   val mk_Freess': string -> typ list list -> Proof.context ->
    60     (term list list * (string * typ) list list) * Proof.context
    61 
    62   val mk_optionT: typ -> typ
    63   val mk_relT: typ * typ -> typ
    64   val dest_relT: typ -> typ * typ
    65   val mk_sumT: typ * typ -> typ
    66 
    67   val ctwo: term
    68   val fst_const: typ -> term
    69   val snd_const: typ -> term
    70   val Id_const: typ -> term
    71 
    72   val mk_Ball: term -> term -> term
    73   val mk_Bex: term -> term -> term
    74   val mk_Card_order: term -> term
    75   val mk_Field: term -> term
    76   val mk_Gr: term -> term -> term
    77   val mk_IfN: typ -> term list -> term list -> term
    78   val mk_Trueprop_eq: term * term -> term
    79   val mk_UNION: term -> term -> term
    80   val mk_Union: typ -> term
    81   val mk_card_binop: string -> (typ * typ -> typ) -> term -> term -> term
    82   val mk_card_of: term -> term
    83   val mk_card_order: term -> term
    84   val mk_ccexp: term -> term -> term
    85   val mk_cexp: term -> term -> term
    86   val mk_cinfinite: term -> term
    87   val mk_collect: term list -> typ -> term
    88   val mk_converse: term -> term
    89   val mk_cprod: term -> term -> term
    90   val mk_csum: term -> term -> term
    91   val mk_dir_image: term -> term -> term
    92   val mk_image: term -> term
    93   val mk_in: term list -> term list -> typ -> term
    94   val mk_ordLeq: term -> term -> term
    95   val mk_rel_comp: term * term -> term
    96   val mk_subset: term -> term -> term
    97   val mk_wpull: term -> term -> term -> term -> term -> (term * term) option -> term -> term -> term
    98 
    99   val list_all_free: term list -> term -> term
   100   val list_exists_free: term list -> term -> term
   101 
   102   (*parameterized terms*)
   103   val mk_nthN: int -> term -> int -> term
   104 
   105   (*parameterized thms*)
   106   val mk_Un_upper: int -> int -> thm
   107   val mk_conjIN: int -> thm
   108   val mk_conjunctN: int -> int -> thm
   109   val conj_dests: int -> thm -> thm list
   110   val mk_disjIN: int -> int -> thm
   111   val mk_nthI: int -> int -> thm
   112   val mk_nth_conv: int -> int -> thm
   113   val mk_ordLeq_csum: int -> int -> thm -> thm
   114   val mk_UnN: int -> int -> thm
   115 
   116   val ctrans: thm
   117   val o_apply: thm
   118   val mk_sym: thm -> thm
   119   val mk_trans: thm -> thm -> thm
   120   val mk_unabs_def: int -> thm -> thm
   121 
   122   val mk_permute: ''a list -> ''a list -> 'b list -> 'b list
   123   val find_indices: ''a list -> ''a list -> int list
   124 
   125   val certifyT: Proof.context -> typ -> ctyp
   126   val certify: Proof.context -> term -> cterm
   127 
   128   val typedef: bool -> binding option -> binding * (string * sort) list * mixfix -> term ->
   129     (binding * binding) option -> tactic -> local_theory -> (string * Typedef.info) * local_theory
   130 
   131   val WRAP: ('a -> tactic) -> ('a -> tactic) -> 'a list -> tactic -> tactic
   132   val WRAP': ('a -> int -> tactic) -> ('a -> int -> tactic) -> 'a list -> (int -> tactic) -> int ->
   133     tactic
   134   val CONJ_WRAP_GEN: tactic -> ('a -> tactic) -> 'a list -> tactic
   135   val CONJ_WRAP_GEN': (int -> tactic) -> ('a -> int -> tactic) -> 'a list -> int -> tactic
   136   val CONJ_WRAP: ('a -> tactic) -> 'a list -> tactic
   137   val CONJ_WRAP': ('a -> int -> tactic) -> 'a list -> int -> tactic
   138 end;
   139 
   140 structure BNF_Util : BNF_UTIL =
   141 struct
   142 
   143 (* Library proper *)
   144 
   145 fun map3 _ [] [] [] = []
   146   | map3 f (x1::x1s) (x2::x2s) (x3::x3s) = f x1 x2 x3 :: map3 f x1s x2s x3s
   147   | map3 _ _ _ _ = raise ListPair.UnequalLengths;
   148 
   149 fun map4 _ [] [] [] [] = []
   150   | map4 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) = f x1 x2 x3 x4 :: map4 f x1s x2s x3s x4s
   151   | map4 _ _ _ _ _ = raise ListPair.UnequalLengths;
   152 
   153 fun map5 _ [] [] [] [] [] = []
   154   | map5 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) =
   155     f x1 x2 x3 x4 x5 :: map5 f x1s x2s x3s x4s x5s
   156   | map5 _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   157 
   158 fun map6 _ [] [] [] [] [] [] = []
   159   | map6 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) =
   160     f x1 x2 x3 x4 x5 x6 :: map6 f x1s x2s x3s x4s x5s x6s
   161   | map6 _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   162 
   163 fun map7 _ [] [] [] [] [] [] [] = []
   164   | map7 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) =
   165     f x1 x2 x3 x4 x5 x6 x7 :: map7 f x1s x2s x3s x4s x5s x6s x7s
   166   | map7 _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   167 
   168 fun map8 _ [] [] [] [] [] [] [] [] = []
   169   | map8 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) (x8::x8s) =
   170     f x1 x2 x3 x4 x5 x6 x7 x8 :: map8 f x1s x2s x3s x4s x5s x6s x7s x8s
   171   | map8 _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   172 
   173 fun map9 _ [] [] [] [] [] [] [] [] [] = []
   174   | map9 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s)
   175       (x6::x6s) (x7::x7s) (x8::x8s) (x9::x9s) =
   176     f x1 x2 x3 x4 x5 x6 x7 x8 x9 :: map9 f x1s x2s x3s x4s x5s x6s x7s x8s x9s
   177   | map9 _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   178 
   179 fun map10 _ [] [] [] [] [] [] [] [] [] [] = []
   180   | map10 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s)
   181       (x6::x6s) (x7::x7s) (x8::x8s) (x9::x9s) (x10::x10s) =
   182     f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 :: map10 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s
   183   | map10 _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   184 
   185 fun map11 _ [] [] [] [] [] [] [] [] [] [] [] = []
   186   | map11 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s)
   187       (x6::x6s) (x7::x7s) (x8::x8s) (x9::x9s) (x10::x10s) (x11::x11s) =
   188     f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 :: map11 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s
   189   | map11 _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   190 
   191 fun map12 _ [] [] [] [] [] [] [] [] [] [] [] [] = []
   192   | map12 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s)
   193       (x6::x6s) (x7::x7s) (x8::x8s) (x9::x9s) (x10::x10s) (x11::x11s) (x12::x12s) =
   194     f x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 ::
   195       map12 f x1s x2s x3s x4s x5s x6s x7s x8s x9s x10s x11s x12s
   196   | map12 _ _ _ _ _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   197 
   198 fun fold_map2 _ [] [] acc = ([], acc)
   199   | fold_map2 f (x1::x1s) (x2::x2s) acc =
   200     let
   201       val (x, acc') = f x1 x2 acc;
   202       val (xs, acc'') = fold_map2 f x1s x2s acc';
   203     in (x :: xs, acc'') end
   204   | fold_map2 _ _ _ _ = raise ListPair.UnequalLengths;
   205 
   206 fun fold_map3 _ [] [] [] acc = ([], acc)
   207   | fold_map3 f (x1::x1s) (x2::x2s) (x3::x3s) acc =
   208     let
   209       val (x, acc') = f x1 x2 x3 acc;
   210       val (xs, acc'') = fold_map3 f x1s x2s x3s acc';
   211     in (x :: xs, acc'') end
   212   | fold_map3 _ _ _ _ _ = raise ListPair.UnequalLengths;
   213 
   214 fun fold_map4 _ [] [] [] [] acc = ([], acc)
   215   | fold_map4 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) acc =
   216     let
   217       val (x, acc') = f x1 x2 x3 x4 acc;
   218       val (xs, acc'') = fold_map4 f x1s x2s x3s x4s acc';
   219     in (x :: xs, acc'') end
   220   | fold_map4 _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   221 
   222 fun fold_map5 _ [] [] [] [] [] acc = ([], acc)
   223   | fold_map5 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) acc =
   224     let
   225       val (x, acc') = f x1 x2 x3 x4 x5 acc;
   226       val (xs, acc'') = fold_map5 f x1s x2s x3s x4s x5s acc';
   227     in (x :: xs, acc'') end
   228   | fold_map5 _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   229 
   230 fun fold_map6 _ [] [] [] [] [] [] acc = ([], acc)
   231   | fold_map6 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) acc =
   232     let
   233       val (x, acc') = f x1 x2 x3 x4 x5 x6 acc;
   234       val (xs, acc'') = fold_map6 f x1s x2s x3s x4s x5s x6s acc';
   235     in (x :: xs, acc'') end
   236   | fold_map6 _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   237 
   238 fun fold_map7 _ [] [] [] [] [] [] [] acc = ([], acc)
   239   | fold_map7 f (x1::x1s) (x2::x2s) (x3::x3s) (x4::x4s) (x5::x5s) (x6::x6s) (x7::x7s) acc =
   240     let
   241       val (x, acc') = f x1 x2 x3 x4 x5 x6 x7 acc;
   242       val (xs, acc'') = fold_map7 f x1s x2s x3s x4s x5s x6s x7s acc';
   243     in (x :: xs, acc'') end
   244   | fold_map7 _ _ _ _ _ _ _ _ _ = raise ListPair.UnequalLengths;
   245 
   246 (*stolen from ~~/src/HOL/Tools/SMT/smt_utils.ML*)
   247 fun certify ctxt = Thm.cterm_of (Proof_Context.theory_of ctxt);
   248 fun certifyT ctxt = Thm.ctyp_of (Proof_Context.theory_of ctxt);
   249 
   250 (*TODO: is this really different from Typedef.add_typedef_global?*)
   251 fun typedef def opt_name typ set opt_morphs tac lthy =
   252   let
   253     val ((name, info), (lthy, lthy_old)) =
   254       lthy
   255       |> Typedef.add_typedef def opt_name typ set opt_morphs tac
   256       ||> `Local_Theory.restore;
   257     val phi = Proof_Context.export_morphism lthy_old lthy;
   258   in
   259     ((name, Typedef.transform_info phi info), lthy)
   260   end;
   261 
   262 (*Tactical WRAP surrounds a static given tactic (core) with two deterministic chains of tactics*)
   263 fun WRAP gen_before gen_after xs core_tac =
   264   fold_rev (fn x => fn tac => gen_before x THEN tac THEN gen_after x) xs core_tac;
   265 
   266 fun WRAP' gen_before gen_after xs core_tac =
   267   fold_rev (fn x => fn tac => gen_before x THEN' tac THEN' gen_after x) xs core_tac;
   268 
   269 fun CONJ_WRAP_GEN conj_tac gen_tac xs =
   270   let val (butlast, last) = split_last xs;
   271   in WRAP (fn thm => conj_tac THEN gen_tac thm) (K all_tac) butlast (gen_tac last) end;
   272 
   273 fun CONJ_WRAP_GEN' conj_tac gen_tac xs =
   274   let val (butlast, last) = split_last xs;
   275   in WRAP' (fn thm => conj_tac THEN' gen_tac thm) (K (K all_tac)) butlast (gen_tac last) end;
   276 
   277 (*not eta-converted because of monotype restriction*)
   278 fun CONJ_WRAP gen_tac = CONJ_WRAP_GEN (rtac conjI 1) gen_tac;
   279 fun CONJ_WRAP' gen_tac = CONJ_WRAP_GEN' (rtac conjI) gen_tac;
   280 
   281 
   282 
   283 (* Term construction *)
   284 
   285 (** Fresh variables **)
   286 
   287 val mk_TFrees' = apfst (map TFree) oo Variable.invent_types;
   288 
   289 fun mk_TFrees n = mk_TFrees' (replicate n HOLogic.typeS);
   290 val mk_TFreess = fold_map mk_TFrees;
   291 
   292 fun mk_names n x = if n = 1 then [x] else map (fn i => x ^ string_of_int i) (1 upto n);
   293 
   294 fun mk_fresh_names ctxt = (fn xs => Variable.variant_fixes xs ctxt) oo mk_names;
   295 fun mk_Frees x Ts ctxt = mk_fresh_names ctxt (length Ts) x |>> (fn xs => map2 (curry Free) xs Ts);
   296 fun mk_Freess x Tss = fold_map2 mk_Frees (mk_names (length Tss) x) Tss;
   297 fun mk_Freesss x Tsss = fold_map2 mk_Freess (mk_names (length Tsss) x) Tsss;
   298 fun mk_Freessss x Tssss = fold_map2 mk_Freesss (mk_names (length Tssss) x) Tssss;
   299 fun mk_Frees' x Ts ctxt = mk_fresh_names ctxt (length Ts) x |>> (fn xs => `(map Free) (xs ~~ Ts));
   300 fun mk_Freess' x Tss = fold_map2 mk_Frees' (mk_names (length Tss) x) Tss #>> split_list;
   301 
   302 
   303 (** Types **)
   304 
   305 fun mk_optionT T = Type (@{type_name option}, [T]);
   306 val mk_relT = HOLogic.mk_setT o HOLogic.mk_prodT;
   307 val dest_relT = HOLogic.dest_prodT o HOLogic.dest_setT;
   308 fun mk_sumT (LT, RT) = Type (@{type_name Sum_Type.sum}, [LT, RT]);
   309 fun mk_partial_funT (ranT, domT) = domT --> mk_optionT ranT;
   310 
   311 
   312 (** Constants **)
   313 
   314 fun fst_const T = Const (@{const_name fst}, T --> fst (HOLogic.dest_prodT T));
   315 fun snd_const T = Const (@{const_name snd}, T --> snd (HOLogic.dest_prodT T));
   316 fun Id_const T = Const (@{const_name Id}, mk_relT (T, T));
   317 
   318 
   319 (** Operators **)
   320 
   321 val mk_Trueprop_eq = HOLogic.mk_Trueprop o HOLogic.mk_eq;
   322 
   323 fun mk_IfN _ _ [t] = t
   324   | mk_IfN T (c :: cs) (t :: ts) =
   325     Const (@{const_name If}, HOLogic.boolT --> T --> T --> T) $ c $ t $ mk_IfN T cs ts;
   326 
   327 fun mk_converse R =
   328   let
   329     val RT = dest_relT (fastype_of R);
   330     val RST = mk_relT (snd RT, fst RT);
   331   in Const (@{const_name converse}, fastype_of R --> RST) $ R end;
   332 
   333 fun mk_rel_comp (R, S) =
   334   let
   335     val RT = fastype_of R;
   336     val ST = fastype_of S;
   337     val RST = mk_relT (fst (dest_relT RT), snd (dest_relT ST));
   338   in Const (@{const_name relcomp}, RT --> ST --> RST) $ R $ S end;
   339 
   340 fun mk_Gr A f =
   341   let val ((AT, BT), FT) = `dest_funT (fastype_of f);
   342   in Const (@{const_name Gr}, HOLogic.mk_setT AT --> FT --> mk_relT (AT, BT)) $ A $ f end;
   343 
   344 fun mk_image f =
   345   let val (T, U) = dest_funT (fastype_of f);
   346   in Const (@{const_name image},
   347     (T --> U) --> (HOLogic.mk_setT T) --> (HOLogic.mk_setT U)) $ f end;
   348 
   349 fun mk_Ball X f =
   350   Const (@{const_name Ball}, fastype_of X --> fastype_of f --> HOLogic.boolT) $ X $ f;
   351 
   352 fun mk_Bex X f =
   353   Const (@{const_name Bex}, fastype_of X --> fastype_of f --> HOLogic.boolT) $ X $ f;
   354 
   355 fun mk_UNION X f =
   356   let val (T, U) = dest_funT (fastype_of f);
   357   in Const (@{const_name SUPR}, fastype_of X --> (T --> U) --> U) $ X $ f end;
   358 
   359 fun mk_Union T =
   360   Const (@{const_name Sup}, HOLogic.mk_setT (HOLogic.mk_setT T) --> HOLogic.mk_setT T);
   361 
   362 fun mk_Field r =
   363   let val T = fst (dest_relT (fastype_of r));
   364   in Const (@{const_name Field}, mk_relT (T, T) --> HOLogic.mk_setT T) $ r end;
   365 
   366 fun mk_card_order bd =
   367   let
   368     val T = fastype_of bd;
   369     val AT = fst (dest_relT T);
   370   in
   371     Const (@{const_name card_order_on}, HOLogic.mk_setT AT --> T --> HOLogic.boolT) $
   372       (HOLogic.mk_UNIV AT) $ bd
   373   end;
   374 
   375 fun mk_Card_order bd =
   376   let
   377     val T = fastype_of bd;
   378     val AT = fst (dest_relT T);
   379   in
   380     Const (@{const_name card_order_on}, HOLogic.mk_setT AT --> T --> HOLogic.boolT) $
   381       mk_Field bd $ bd
   382   end;
   383 
   384 fun mk_cinfinite bd =
   385   Const (@{const_name cinfinite}, fastype_of bd --> HOLogic.boolT) $ bd;
   386 
   387 fun mk_ordLeq t1 t2 =
   388   HOLogic.mk_mem (HOLogic.mk_prod (t1, t2),
   389     Const (@{const_name ordLeq}, mk_relT (fastype_of t1, fastype_of t2)));
   390 
   391 fun mk_card_of A =
   392   let
   393     val AT = fastype_of A;
   394     val T = HOLogic.dest_setT AT;
   395   in
   396     Const (@{const_name card_of}, AT --> mk_relT (T, T)) $ A
   397   end;
   398 
   399 fun mk_dir_image r f =
   400   let val (T, U) = dest_funT (fastype_of f);
   401   in Const (@{const_name dir_image}, mk_relT (T, T) --> (T --> U) --> mk_relT (U, U)) $ r $ f end;
   402 
   403 (*FIXME: "x"?*)
   404 (*(nth sets i) must be of type "T --> 'ai set"*)
   405 fun mk_in As sets T =
   406   let
   407     fun in_single set A =
   408       let val AT = fastype_of A;
   409       in Const (@{const_name less_eq},
   410         AT --> AT --> HOLogic.boolT) $ (set $ Free ("x", T)) $ A end;
   411   in
   412     if length sets > 0
   413     then HOLogic.mk_Collect ("x", T, foldr1 (HOLogic.mk_conj) (map2 in_single sets As))
   414     else HOLogic.mk_UNIV T
   415   end;
   416 
   417 fun mk_wpull A B1 B2 f1 f2 pseudo p1 p2 =
   418   let
   419     val AT = fastype_of A;
   420     val BT1 = fastype_of B1;
   421     val BT2 = fastype_of B2;
   422     val FT1 = fastype_of f1;
   423     val FT2 = fastype_of f2;
   424     val PT1 = fastype_of p1;
   425     val PT2 = fastype_of p2;
   426     val T1 = HOLogic.dest_setT BT1;
   427     val T2 = HOLogic.dest_setT BT2;
   428     val domP = domain_type PT1;
   429     val ranF = range_type FT1;
   430     val _ = if is_some pseudo orelse
   431                (HOLogic.dest_setT AT = domP andalso
   432                domain_type FT1 = T1 andalso
   433                domain_type FT2 = T2 andalso
   434                domain_type PT2 = domP andalso
   435                range_type PT1 = T1 andalso
   436                range_type PT2 = T2 andalso
   437                range_type FT2 = ranF)
   438       then () else raise TYPE ("mk_wpull", [BT1, BT2, FT1, FT2, PT1, PT2], []);
   439   in
   440     (case pseudo of
   441       NONE => Const (@{const_name wpull},
   442         AT --> BT1 --> BT2 --> FT1 --> FT2 --> PT1 --> PT2 --> HOLogic.boolT) $
   443         A $ B1 $ B2 $ f1 $ f2 $ p1 $ p2
   444     | SOME (e1, e2) => Const (@{const_name wppull},
   445         AT --> BT1 --> BT2 --> FT1 --> FT2 --> fastype_of e1 --> fastype_of e2 -->
   446           PT1 --> PT2 --> HOLogic.boolT) $
   447         A $ B1 $ B2 $ f1 $ f2 $ e1 $ e2 $ p1 $ p2)
   448   end;
   449 
   450 fun mk_subset t1 t2 =
   451   Const (@{const_name less_eq}, (fastype_of t1) --> (fastype_of t2) --> HOLogic.boolT) $ t1 $ t2;
   452 
   453 fun mk_card_binop binop typop t1 t2 =
   454   let
   455     val (T1, relT1) = `(fst o dest_relT) (fastype_of t1);
   456     val (T2, relT2) = `(fst o dest_relT) (fastype_of t2);
   457   in
   458     Const (binop, relT1 --> relT2 --> mk_relT (typop (T1, T2), typop (T1, T2))) $ t1 $ t2
   459   end;
   460 
   461 val mk_csum = mk_card_binop @{const_name csum} mk_sumT;
   462 val mk_cprod = mk_card_binop @{const_name cprod} HOLogic.mk_prodT;
   463 val mk_cexp = mk_card_binop @{const_name cexp} mk_partial_funT;
   464 val mk_ccexp = mk_card_binop @{const_name ccexp} mk_partial_funT;
   465 val ctwo = @{term ctwo};
   466 
   467 fun mk_collect xs defT =
   468   let val T = (case xs of [] => defT | (x::_) => fastype_of x);
   469   in Const (@{const_name collect}, HOLogic.mk_setT T --> T) $ (HOLogic.mk_set T xs) end;
   470 
   471 fun mk_permute src dest xs = map (nth xs o (fn x => find_index ((curry op =) x) src)) dest;
   472 
   473 val list_all_free =
   474   fold_rev (fn free => fn P =>
   475     let val (x, T) = Term.dest_Free free;
   476     in HOLogic.all_const T $ Term.absfree (x, T) P end);
   477 
   478 val list_exists_free =
   479   fold_rev (fn free => fn P =>
   480     let val (x, T) = Term.dest_Free free;
   481     in HOLogic.exists_const T $ Term.absfree (x, T) P end);
   482 
   483 fun find_indices xs ys = map_filter I
   484   (map_index (fn (i, y) => if member (op =) xs y then SOME i else NONE) ys);
   485 
   486 fun mk_trans thm1 thm2 = trans OF [thm1, thm2];
   487 fun mk_sym thm = sym OF [thm];
   488 
   489 (*TODO: antiquote heavily used theorems once*)
   490 val ctrans = @{thm ordLeq_transitive};
   491 val o_apply = @{thm o_apply};
   492 
   493 fun mk_nthN 1 t 1 = t
   494   | mk_nthN _ t 1 = HOLogic.mk_fst t
   495   | mk_nthN 2 t 2 = HOLogic.mk_snd t
   496   | mk_nthN n t m = mk_nthN (n - 1) (HOLogic.mk_snd t) (m - 1);
   497 
   498 fun mk_nth_conv n m =
   499   let
   500     fun thm b = if b then @{thm fst_snd} else @{thm snd_snd}
   501     fun mk_nth_conv _ 1 1 = refl
   502       | mk_nth_conv _ _ 1 = @{thm fst_conv}
   503       | mk_nth_conv _ 2 2 = @{thm snd_conv}
   504       | mk_nth_conv b _ 2 = @{thm snd_conv} RS thm b
   505       | mk_nth_conv b n m = mk_nth_conv false (n - 1) (m - 1) RS thm b;
   506   in mk_nth_conv (not (m = n)) n m end;
   507 
   508 fun mk_nthI 1 1 = @{thm TrueE[OF TrueI]}
   509   | mk_nthI n m = fold (curry op RS) (replicate (m - 1) @{thm sndI})
   510     (if m = n then @{thm TrueE[OF TrueI]} else @{thm fstI});
   511 
   512 fun mk_conjunctN 1 1 = @{thm TrueE[OF TrueI]}
   513   | mk_conjunctN _ 1 = conjunct1
   514   | mk_conjunctN 2 2 = conjunct2
   515   | mk_conjunctN n m = conjunct2 RS (mk_conjunctN (n - 1) (m - 1));
   516 
   517 fun conj_dests n thm = map (fn k => thm RS mk_conjunctN n k) (1 upto n);
   518 
   519 fun mk_conjIN 1 = @{thm TrueE[OF TrueI]}
   520   | mk_conjIN n = mk_conjIN (n - 1) RSN (2, conjI);
   521 
   522 fun mk_disjIN 1 1 = @{thm TrueE[OF TrueI]}
   523   | mk_disjIN _ 1 = disjI1
   524   | mk_disjIN 2 2 = disjI2
   525   | mk_disjIN n m = (mk_disjIN (n - 1) (m - 1)) RS disjI2;
   526 
   527 fun mk_ordLeq_csum 1 1 thm = thm
   528   | mk_ordLeq_csum _ 1 thm = @{thm ordLeq_transitive} OF [thm, @{thm ordLeq_csum1}]
   529   | mk_ordLeq_csum 2 2 thm = @{thm ordLeq_transitive} OF [thm, @{thm ordLeq_csum2}]
   530   | mk_ordLeq_csum n m thm = @{thm ordLeq_transitive} OF
   531     [mk_ordLeq_csum (n - 1) (m - 1) thm, @{thm ordLeq_csum2[OF Card_order_csum]}];
   532 
   533 local
   534   fun mk_Un_upper' 0 = subset_refl
   535     | mk_Un_upper' 1 = @{thm Un_upper1}
   536     | mk_Un_upper' k = Library.foldr (op RS o swap)
   537       (replicate (k - 1) @{thm subset_trans[OF Un_upper1]}, @{thm Un_upper1});
   538 in
   539   fun mk_Un_upper 1 1 = subset_refl
   540     | mk_Un_upper n 1 = mk_Un_upper' (n - 2) RS @{thm subset_trans[OF Un_upper1]}
   541     | mk_Un_upper n m = mk_Un_upper' (n - m) RS @{thm subset_trans[OF Un_upper2]};
   542 end;
   543 
   544 local
   545   fun mk_UnN' 0 = @{thm UnI2}
   546     | mk_UnN' m = mk_UnN' (m - 1) RS @{thm UnI1};
   547 in
   548   fun mk_UnN 1 1 = @{thm TrueE[OF TrueI]}
   549     | mk_UnN n 1 = Library.foldr1 (op RS o swap) (replicate (n - 1) @{thm UnI1})
   550     | mk_UnN n m = mk_UnN' (n - m)
   551 end;
   552 
   553 fun interleave xs ys = flat (map2 (fn x => fn y => [x, y]) xs ys);
   554 
   555 fun transpose [] = []
   556   | transpose ([] :: xss) = transpose xss
   557   | transpose xss = map hd xss :: transpose (map tl xss);
   558 
   559 fun seq_conds f n k xs =
   560   if k = n then
   561     map (f false) (take (k - 1) xs)
   562   else
   563     let val (negs, pos) = split_last (take k xs) in
   564       map (f false) negs @ [f true pos]
   565     end;
   566 
   567 fun mk_unabs_def 0 thm = thm
   568   | mk_unabs_def n thm = mk_unabs_def (n - 1) thm RS @{thm spec[OF iffD1[OF fun_eq_iff]]};
   569 
   570 end;