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