src/HOL/Nominal/nominal_atoms.ML
author urbanc
Sun, 18 Dec 2005 14:36:42 +0100
changeset 18431 a59c79a3544c
parent 18430 46c18c0b52c1
child 18432 0b596274ba4f
permissions -rw-r--r--
improved the finite-support proof added finite support proof for options (I am surprised that one does not need more fs-proofs; at the moment only lists, products, units and atoms are shown to be finitely supported (of course also every nominal datatype is finitely supported)) deleted pt_bool_inst - not necessary because discrete types are treated separately in nominal_atoms
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     1
(* $Id$ *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     2
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     3
signature NOMINAL_ATOMS =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     4
sig
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     5
  val create_nom_typedecls : string list -> theory -> theory
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     6
  val atoms_of : theory -> string list
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     7
  val mk_permT : typ -> typ
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     8
  val setup : (theory -> theory) list
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     9
end
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    10
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    11
structure NominalAtoms : NOMINAL_ATOMS =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    12
struct
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    13
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    14
(* data kind 'HOL/nominal' *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    15
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    16
structure NominalArgs =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    17
struct
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    18
  val name = "HOL/nominal";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    19
  type T = unit Symtab.table;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    20
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    21
  val empty = Symtab.empty;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    22
  val copy = I;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    23
  val extend = I;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    24
  fun merge _ x = Symtab.merge (K true) x;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    25
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    26
  fun print sg tab = ();
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    27
end;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    28
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    29
structure NominalData = TheoryDataFun(NominalArgs);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    30
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    31
fun atoms_of thy = map fst (Symtab.dest (NominalData.get thy));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    32
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    33
(* FIXME: add to hologic.ML ? *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    34
fun mk_listT T = Type ("List.list", [T]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    35
fun mk_permT T = mk_listT (HOLogic.mk_prodT (T, T));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    36
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    37
fun mk_Cons x xs =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    38
  let val T = fastype_of x
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    39
  in Const ("List.list.Cons", T --> mk_listT T --> mk_listT T) $ x $ xs end;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    40
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    41
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    42
(* this function sets up all matters related to atom-  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    43
(* kinds; the user specifies a list of atom-kind names *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    44
(* atom_decl <ak1> ... <akn>                           *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    45
fun create_nom_typedecls ak_names thy =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    46
  let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    47
    (* declares a type-decl for every atom-kind: *) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    48
    (* that is typedecl <ak>                     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    49
    val thy1 = TypedefPackage.add_typedecls (map (fn x => (x,[],NoSyn)) ak_names) thy;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    50
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    51
    (* produces a list consisting of pairs:         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    52
    (*  fst component is the atom-kind name         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    53
    (*  snd component is its type                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    54
    val full_ak_names = map (Sign.intern_type (sign_of thy1)) ak_names;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    55
    val ak_names_types = ak_names ~~ map (Type o rpair []) full_ak_names;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    56
     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    57
    (* adds for every atom-kind an axiom             *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    58
    (* <ak>_infinite: infinite (UNIV::<ak_type> set) *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
    59
    val (inf_axs,thy2) = PureThy.add_axioms_i (map (fn (ak_name, T) =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    60
      let 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    61
	val name = ak_name ^ "_infinite"
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    62
        val axiom = HOLogic.mk_Trueprop (HOLogic.mk_not
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    63
                    (HOLogic.mk_mem (HOLogic.mk_UNIV T,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    64
                     Const ("Finite_Set.Finites", HOLogic.mk_setT (HOLogic.mk_setT T)))))
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    65
      in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    66
	((name, axiom), []) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    67
      end) ak_names_types) thy1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    68
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    69
    (* declares a swapping function for every atom-kind, it is         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    70
    (* const swap_<ak> :: <akT> * <akT> => <akT> => <akT>              *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    71
    (* swap_<ak> (a,b) c = (if a=c then b (else if b=c then a else c)) *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    72
    (* overloades then the general swap-function                       *) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    73
    val (thy3, swap_eqs) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    74
      let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    75
        val swapT = HOLogic.mk_prodT (T, T) --> T --> T;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    76
        val swap_name = Sign.full_name (sign_of thy) ("swap_" ^ ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    77
        val a = Free ("a", T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    78
        val b = Free ("b", T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    79
        val c = Free ("c", T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    80
        val ab = Free ("ab", HOLogic.mk_prodT (T, T))
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    81
        val cif = Const ("HOL.If", HOLogic.boolT --> T --> T --> T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    82
        val cswap_akname = Const (swap_name, swapT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    83
        val cswap = Const ("nominal.swap", swapT)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    84
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    85
        val name = "swap_"^ak_name^"_def";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    86
        val def1 = HOLogic.mk_Trueprop (HOLogic.mk_eq
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    87
		   (cswap_akname $ HOLogic.mk_prod (a,b) $ c,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    88
                    cif $ HOLogic.mk_eq (a,c) $ b $ (cif $ HOLogic.mk_eq (b,c) $ a $ c)))
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    89
        val def2 = Logic.mk_equals (cswap $ ab $ c, cswap_akname $ ab $ c)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    90
      in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    91
        thy |> Theory.add_consts_i [("swap_" ^ ak_name, swapT, NoSyn)] 
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18355
diff changeset
    92
            |> (#2 o PureThy.add_defs_i true [((name, def2),[])])
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    93
            |> PrimrecPackage.add_primrec_i "" [(("", def1),[])]            
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    94
      end) (thy2, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    95
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    96
    (* declares a permutation function for every atom-kind acting  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    97
    (* on such atoms                                               *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    98
    (* const <ak>_prm_<ak> :: (<akT> * <akT>)list => akT => akT    *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    99
    (* <ak>_prm_<ak> []     a = a                                  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   100
    (* <ak>_prm_<ak> (x#xs) a = swap_<ak> x (perm xs a)            *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   101
    val (thy4, prm_eqs) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   102
      let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   103
        val swapT = HOLogic.mk_prodT (T, T) --> T --> T;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   104
        val swap_name = Sign.full_name (sign_of thy) ("swap_" ^ ak_name)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   105
        val prmT = mk_permT T --> T --> T;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   106
        val prm_name = ak_name ^ "_prm_" ^ ak_name;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   107
        val qu_prm_name = Sign.full_name (sign_of thy) prm_name;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   108
        val x  = Free ("x", HOLogic.mk_prodT (T, T));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   109
        val xs = Free ("xs", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   110
        val a  = Free ("a", T) ;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   111
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   112
        val cnil  = Const ("List.list.Nil", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   113
        
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   114
        val def1 = HOLogic.mk_Trueprop (HOLogic.mk_eq (Const (qu_prm_name, prmT) $ cnil $ a, a));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   115
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   116
        val def2 = HOLogic.mk_Trueprop (HOLogic.mk_eq
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   117
                   (Const (qu_prm_name, prmT) $ mk_Cons x xs $ a,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   118
                    Const (swap_name, swapT) $ x $ (Const (qu_prm_name, prmT) $ xs $ a)));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   119
      in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   120
        thy |> Theory.add_consts_i [(prm_name, mk_permT T --> T --> T, NoSyn)] 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   121
            |> PrimrecPackage.add_primrec_i "" [(("", def1), []),(("", def2), [])]
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   122
      end) (thy3, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   123
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   124
    (* defines permutation functions for all combinations of atom-kinds; *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   125
    (* there are a trivial cases and non-trivial cases                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   126
    (* non-trivial case:                                                 *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   127
    (* <ak>_prm_<ak>_def:  perm pi a == <ak>_prm_<ak> pi a               *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   128
    (* trivial case with <ak> != <ak'>                                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   129
    (* <ak>_prm<ak'>_def[simp]:  perm pi a == a                          *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   130
    (*                                                                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   131
    (* the trivial cases are added to the simplifier, while the non-     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   132
    (* have their own rules proved below                                 *)  
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18355
diff changeset
   133
    val (perm_defs, thy5) = fold_map (fn (ak_name, T) => fn thy =>
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18355
diff changeset
   134
      fold_map (fn (ak_name', T') => fn thy' =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   135
        let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   136
          val perm_def_name = ak_name ^ "_prm_" ^ ak_name';
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   137
          val pi = Free ("pi", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   138
          val a  = Free ("a", T');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   139
          val cperm = Const ("nominal.perm", mk_permT T --> T' --> T');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   140
          val cperm_def = Const (Sign.full_name (sign_of thy') perm_def_name, mk_permT T --> T' --> T');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   141
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   142
          val name = ak_name ^ "_prm_" ^ ak_name' ^ "_def";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   143
          val def = Logic.mk_equals
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   144
                    (cperm $ pi $ a, if ak_name = ak_name' then cperm_def $ pi $ a else a)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   145
        in
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18355
diff changeset
   146
          PureThy.add_defs_i true [((name, def),[])] thy'
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18355
diff changeset
   147
        end) ak_names_types thy) ak_names_types thy4;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   148
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   149
    (* proves that every atom-kind is an instance of at *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   150
    (* lemma at_<ak>_inst:                              *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   151
    (* at TYPE(<ak>)                                    *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   152
    val (prm_cons_thms,thy6) = 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   153
      thy5 |> PureThy.add_thms (map (fn (ak_name, T) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   154
      let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   155
        val ak_name_qu = Sign.full_name (sign_of thy5) (ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   156
        val i_type = Type(ak_name_qu,[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   157
	val cat = Const ("nominal.at",(Term.itselfT i_type)  --> HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   158
        val at_type = Logic.mk_type i_type;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   159
        val simp_s = HOL_basic_ss addsimps PureThy.get_thmss thy5
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   160
                                  [Name "at_def",
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   161
                                   Name (ak_name ^ "_prm_" ^ ak_name ^ "_def"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   162
                                   Name (ak_name ^ "_prm_" ^ ak_name ^ ".simps"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   163
                                   Name ("swap_" ^ ak_name ^ "_def"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   164
                                   Name ("swap_" ^ ak_name ^ ".simps"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   165
                                   Name (ak_name ^ "_infinite")]
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   166
	    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   167
	val name = "at_"^ak_name^ "_inst";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   168
        val statement = HOLogic.mk_Trueprop (cat $ at_type);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   169
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   170
        val proof = fn _ => auto_tac (claset(),simp_s);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   171
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   172
      in 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   173
        ((name, standard (Goal.prove thy5 [] [] statement proof)), []) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   174
      end) ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   175
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   176
    (* declares a perm-axclass for every atom-kind               *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   177
    (* axclass pt_<ak>                                           *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   178
    (* pt_<ak>1[simp]: perm [] x = x                             *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   179
    (* pt_<ak>2:       perm (pi1@pi2) x = perm pi1 (perm pi2 x)  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   180
    (* pt_<ak>3:       pi1 ~ pi2 ==> perm pi1 x = perm pi2 x     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   181
     val (thy7, pt_ax_classes) =  foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   182
      let 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   183
	  val cl_name = "pt_"^ak_name;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   184
          val ty = TFree("'a",["HOL.type"]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   185
          val x   = Free ("x", ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   186
          val pi1 = Free ("pi1", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   187
          val pi2 = Free ("pi2", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   188
          val cperm = Const ("nominal.perm", mk_permT T --> ty --> ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   189
          val cnil  = Const ("List.list.Nil", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   190
          val cappend = Const ("List.op @",mk_permT T --> mk_permT T --> mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   191
          val cprm_eq = Const ("nominal.prm_eq",mk_permT T --> mk_permT T --> HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   192
          (* nil axiom *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   193
          val axiom1 = HOLogic.mk_Trueprop (HOLogic.mk_eq 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   194
                       (cperm $ cnil $ x, x));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   195
          (* append axiom *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   196
          val axiom2 = HOLogic.mk_Trueprop (HOLogic.mk_eq
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   197
                       (cperm $ (cappend $ pi1 $ pi2) $ x, cperm $ pi1 $ (cperm $ pi2 $ x)));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   198
          (* perm-eq axiom *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   199
          val axiom3 = Logic.mk_implies
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   200
                       (HOLogic.mk_Trueprop (cprm_eq $ pi1 $ pi2),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   201
                        HOLogic.mk_Trueprop (HOLogic.mk_eq (cperm $ pi1 $ x, cperm $ pi2 $ x)));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   202
      in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   203
        thy |> AxClass.add_axclass_i (cl_name, ["HOL.type"])
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   204
                [((cl_name^"1", axiom1),[Simplifier.simp_add_global]), 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   205
                 ((cl_name^"2", axiom2),[]),                           
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   206
                 ((cl_name^"3", axiom3),[])]                          
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   207
      end) (thy6,ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   208
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   209
    (* proves that every pt_<ak>-type together with <ak>-type *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   210
    (* instance of pt                                         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   211
    (* lemma pt_<ak>_inst:                                    *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   212
    (* pt TYPE('x::pt_<ak>) TYPE(<ak>)                        *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   213
    val (prm_inst_thms,thy8) = 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   214
      thy7 |> PureThy.add_thms (map (fn (ak_name, T) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   215
      let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   216
        val ak_name_qu = Sign.full_name (sign_of thy7) (ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   217
        val pt_name_qu = Sign.full_name (sign_of thy7) ("pt_"^ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   218
        val i_type1 = TFree("'x",[pt_name_qu]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   219
        val i_type2 = Type(ak_name_qu,[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   220
	val cpt = Const ("nominal.pt",(Term.itselfT i_type1)-->(Term.itselfT i_type2)-->HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   221
        val pt_type = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   222
        val at_type = Logic.mk_type i_type2;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   223
        val simp_s = HOL_basic_ss addsimps PureThy.get_thmss thy7
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   224
                                  [Name "pt_def",
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   225
                                   Name ("pt_" ^ ak_name ^ "1"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   226
                                   Name ("pt_" ^ ak_name ^ "2"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   227
                                   Name ("pt_" ^ ak_name ^ "3")];
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   228
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   229
	val name = "pt_"^ak_name^ "_inst";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   230
        val statement = HOLogic.mk_Trueprop (cpt $ pt_type $ at_type);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   231
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   232
        val proof = fn _ => auto_tac (claset(),simp_s);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   233
      in 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   234
        ((name, standard (Goal.prove thy7 [] [] statement proof)), []) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   235
      end) ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   236
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   237
     (* declares an fs-axclass for every atom-kind       *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   238
     (* axclass fs_<ak>                                  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   239
     (* fs_<ak>1: finite ((supp x)::<ak> set)            *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   240
     val (thy11, fs_ax_classes) =  foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   241
       let 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   242
	  val cl_name = "fs_"^ak_name;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   243
	  val pt_name = Sign.full_name (sign_of thy) ("pt_"^ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   244
          val ty = TFree("'a",["HOL.type"]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   245
          val x   = Free ("x", ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   246
          val csupp    = Const ("nominal.supp", ty --> HOLogic.mk_setT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   247
          val cfinites = Const ("Finite_Set.Finites", HOLogic.mk_setT (HOLogic.mk_setT T))
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   248
          
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   249
          val axiom1   = HOLogic.mk_Trueprop (HOLogic.mk_mem (csupp $ x, cfinites));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   250
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   251
       in  
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   252
        thy |> AxClass.add_axclass_i (cl_name, [pt_name]) [((cl_name^"1", axiom1),[])]            
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   253
       end) (thy8,ak_names_types); 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   254
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   255
     (* proves that every fs_<ak>-type together with <ak>-type   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   256
     (* instance of fs-type                                      *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   257
     (* lemma abst_<ak>_inst:                                    *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   258
     (* fs TYPE('x::pt_<ak>) TYPE (<ak>)                         *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   259
     val (fs_inst_thms,thy12) = 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   260
       thy11 |> PureThy.add_thms (map (fn (ak_name, T) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   261
       let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   262
         val ak_name_qu = Sign.full_name (sign_of thy11) (ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   263
         val fs_name_qu = Sign.full_name (sign_of thy11) ("fs_"^ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   264
         val i_type1 = TFree("'x",[fs_name_qu]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   265
         val i_type2 = Type(ak_name_qu,[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   266
 	 val cfs = Const ("nominal.fs", 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   267
                                 (Term.itselfT i_type1)-->(Term.itselfT i_type2)-->HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   268
         val fs_type = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   269
         val at_type = Logic.mk_type i_type2;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   270
	 val simp_s = HOL_basic_ss addsimps PureThy.get_thmss thy11
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   271
                                   [Name "fs_def",
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   272
                                    Name ("fs_" ^ ak_name ^ "1")];
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   273
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   274
	 val name = "fs_"^ak_name^ "_inst";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   275
         val statement = HOLogic.mk_Trueprop (cfs $ fs_type $ at_type);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   276
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   277
         val proof = fn _ => auto_tac (claset(),simp_s);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   278
       in 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   279
         ((name, standard (Goal.prove thy11 [] [] statement proof)), []) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   280
       end) ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   281
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   282
       (* declares for every atom-kind combination an axclass            *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   283
       (* cp_<ak1>_<ak2> giving a composition property                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   284
       (* cp_<ak1>_<ak2>1: pi1 o pi2 o x = (pi1 o pi2) o (pi1 o x)       *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   285
        val (thy12b,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   286
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   287
	     let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   288
	       val cl_name = "cp_"^ak_name^"_"^ak_name';
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   289
	       val ty = TFree("'a",["HOL.type"]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   290
               val x   = Free ("x", ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   291
               val pi1 = Free ("pi1", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   292
	       val pi2 = Free ("pi2", mk_permT T');                  
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   293
	       val cperm1 = Const ("nominal.perm", mk_permT T  --> ty --> ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   294
               val cperm2 = Const ("nominal.perm", mk_permT T' --> ty --> ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   295
               val cperm3 = Const ("nominal.perm", mk_permT T  --> mk_permT T' --> mk_permT T');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   296
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   297
               val ax1   = HOLogic.mk_Trueprop 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   298
			   (HOLogic.mk_eq (cperm1 $ pi1 $ (cperm2 $ pi2 $ x), 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   299
                                           cperm2 $ (cperm3 $ pi1 $ pi2) $ (cperm1 $ pi1 $ x)));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   300
	       in  
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   301
	       (fst (AxClass.add_axclass_i (cl_name, ["HOL.type"]) [((cl_name^"1", ax1),[])] thy'),())  
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   302
	       end) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   303
	   (thy, ak_names_types)) (thy12, ak_names_types)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   304
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   305
        (* proves for every <ak>-combination a cp_<ak1>_<ak2>_inst theorem;     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   306
        (* lemma cp_<ak1>_<ak2>_inst:                                           *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   307
        (* cp TYPE('a::cp_<ak1>_<ak2>) TYPE(<ak1>) TYPE(<ak2>)                  *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   308
        val (cp_thms,thy12c) = fold_map (fn (ak_name, T) => fn thy =>
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   309
	 fold_map (fn (ak_name', T') => fn thy' =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   310
           let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   311
             val ak_name_qu  = Sign.full_name (sign_of thy') (ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   312
	     val ak_name_qu' = Sign.full_name (sign_of thy') (ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   313
             val cp_name_qu  = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   314
             val i_type0 = TFree("'a",[cp_name_qu]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   315
             val i_type1 = Type(ak_name_qu,[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   316
             val i_type2 = Type(ak_name_qu',[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   317
	     val ccp = Const ("nominal.cp",
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   318
                             (Term.itselfT i_type0)-->(Term.itselfT i_type1)-->
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   319
                                                      (Term.itselfT i_type2)-->HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   320
             val at_type  = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   321
             val at_type' = Logic.mk_type i_type2;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   322
	     val cp_type  = Logic.mk_type i_type0;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   323
             val simp_s   = HOL_basic_ss addsimps PureThy.get_thmss thy' [(Name "cp_def")];
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   324
	     val cp1      = PureThy.get_thm thy' (Name ("cp_"^ak_name^"_"^ak_name'^"1"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   325
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   326
	     val name = "cp_"^ak_name^ "_"^ak_name'^"_inst";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   327
             val statement = HOLogic.mk_Trueprop (ccp $ cp_type $ at_type $ at_type');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   328
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   329
             val proof = fn _ => EVERY [auto_tac (claset(),simp_s), rtac cp1 1];
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   330
	   in
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   331
	     PureThy.add_thms [((name, standard (Goal.prove thy' [] [] statement proof)), [])] thy'
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   332
	   end) 
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   333
           ak_names_types thy) ak_names_types thy12b;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   334
       
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   335
        (* proves for every non-trivial <ak>-combination a disjointness   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   336
        (* theorem; i.e. <ak1> != <ak2>                                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   337
        (* lemma ds_<ak1>_<ak2>:                                          *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   338
        (* dj TYPE(<ak1>) TYPE(<ak2>)                                     *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   339
        val (dj_thms, thy12d) = fold_map (fn (ak_name,T) => fn thy =>
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   340
	  fold_map (fn (ak_name',T') => fn thy' =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   341
          (if not (ak_name = ak_name') 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   342
           then 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   343
	       let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   344
		 val ak_name_qu  = Sign.full_name (sign_of thy') (ak_name);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   345
	         val ak_name_qu' = Sign.full_name (sign_of thy') (ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   346
                 val i_type1 = Type(ak_name_qu,[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   347
                 val i_type2 = Type(ak_name_qu',[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   348
	         val cdj = Const ("nominal.disjoint",
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   349
                           (Term.itselfT i_type1)-->(Term.itselfT i_type2)-->HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   350
                 val at_type  = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   351
                 val at_type' = Logic.mk_type i_type2;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   352
                 val simp_s = HOL_basic_ss addsimps PureThy.get_thmss thy' 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   353
					   [Name "disjoint_def",
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   354
                                            Name (ak_name^"_prm_"^ak_name'^"_def"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   355
                                            Name (ak_name'^"_prm_"^ak_name^"_def")];
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   356
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   357
	         val name = "dj_"^ak_name^"_"^ak_name';
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   358
                 val statement = HOLogic.mk_Trueprop (cdj $ at_type $ at_type');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   359
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   360
                 val proof = fn _ => auto_tac (claset(),simp_s);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   361
	       in
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   362
		PureThy.add_thms [((name, standard (Goal.prove thy' [] [] statement proof)), [])] thy'
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   363
	       end
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   364
           else 
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   365
            ([],thy')))  (* do nothing branch, if ak_name = ak_name' *) 
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   366
	    ak_names_types thy) ak_names_types thy12c;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   367
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   368
     (*<<<<<<<  pt_<ak> class instances  >>>>>>>*)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   369
     (*=========================================*)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   370
     (* some abbreviations for theorems *)
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   371
      val pt1           = thm "pt1";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   372
      val pt2           = thm "pt2";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   373
      val pt3           = thm "pt3";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   374
      val at_pt_inst    = thm "at_pt_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   375
      val pt_set_inst   = thm "pt_set_inst"; 
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   376
      val pt_unit_inst  = thm "pt_unit_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   377
      val pt_prod_inst  = thm "pt_prod_inst"; 
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   378
      val pt_list_inst  = thm "pt_list_inst";   
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   379
      val pt_optn_inst  = thm "pt_option_inst";   
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   380
      val pt_noptn_inst = thm "pt_noption_inst";   
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   381
      val pt_fun_inst   = thm "pt_fun_inst";     
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   382
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   383
     (* for all atom-kind combination show that         *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   384
     (* every <ak> is an instance of pt_<ai>            *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   385
     val thy13 = fold (fn ak_name => fn thy =>
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   386
	fold (fn ak_name' => fn thy' =>
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   387
         let
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   388
           val qu_name =  Sign.full_name (sign_of thy') ak_name';
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   389
           val cls_name = Sign.full_name (sign_of thy') ("pt_"^ak_name);
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   390
           val at_inst  = PureThy.get_thm thy' (Name ("at_"^ak_name'^"_inst")); 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   391
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   392
           val proof1 = EVERY [AxClass.intro_classes_tac [],
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   393
                                 rtac ((at_inst RS at_pt_inst) RS pt1) 1,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   394
                                 rtac ((at_inst RS at_pt_inst) RS pt2) 1,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   395
                                 rtac ((at_inst RS at_pt_inst) RS pt3) 1,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   396
                                 atac 1];
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   397
           val simp_s = HOL_basic_ss addsimps 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   398
                        PureThy.get_thmss thy' [Name (ak_name^"_prm_"^ak_name'^"_def")];  
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   399
           val proof2 = EVERY [AxClass.intro_classes_tac [], REPEAT (asm_simp_tac simp_s 1)];
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   400
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   401
         in
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   402
           thy'
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   403
           |> AxClass.add_inst_arity_i (qu_name,[],[cls_name])
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   404
              (if ak_name = ak_name' then proof1 else proof2)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   405
         end) ak_names thy) ak_names thy12c;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   406
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   407
     (* show that                       *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   408
     (*      fun(pt_<ak>,pt_<ak>)       *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   409
     (*      nOption(pt_<ak>)           *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   410
     (*      option(pt_<ak>)            *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   411
     (*      list(pt_<ak>)              *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   412
     (*      *(pt_<ak>,pt_<ak>)         *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   413
     (*      unit                       *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   414
     (*      set(pt_<ak>)               *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   415
     (* are instances of pt_<ak>        *)
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   416
     val thy18 = fold (fn ak_name => fn thy =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   417
       let
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   418
          val cls_name = Sign.full_name (sign_of thy) ("pt_"^ak_name);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   419
          val at_thm   = PureThy.get_thm thy (Name ("at_"^ak_name^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   420
          val pt_inst  = PureThy.get_thm thy (Name ("pt_"^ak_name^"_inst"));
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   421
          
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   422
          fun pt_proof thm = 
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   423
	      EVERY [AxClass.intro_classes_tac [],
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   424
                     rtac (thm RS pt1) 1, rtac (thm RS pt2) 1, rtac (thm RS pt3) 1, atac 1];
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   425
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   426
          val pt_thm_fun   = at_thm RS (pt_inst RS (pt_inst RS pt_fun_inst));
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   427
          val pt_thm_noptn = pt_inst RS pt_noptn_inst; 
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   428
          val pt_thm_optn  = pt_inst RS pt_optn_inst; 
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   429
          val pt_thm_list  = pt_inst RS pt_list_inst;
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   430
          val pt_thm_prod  = pt_inst RS (pt_inst RS pt_prod_inst);
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   431
          val pt_thm_unit  = pt_unit_inst;
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   432
          val pt_thm_set   = pt_inst RS pt_set_inst
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   433
       in 
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   434
	thy
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   435
	|> AxClass.add_inst_arity_i ("fun",[[cls_name],[cls_name]],[cls_name]) (pt_proof pt_thm_fun)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   436
        |> AxClass.add_inst_arity_i ("nominal.nOption",[[cls_name]],[cls_name]) (pt_proof pt_thm_noptn) 
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   437
        |> AxClass.add_inst_arity_i ("Datatype.option",[[cls_name]],[cls_name]) (pt_proof pt_thm_optn)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   438
        |> AxClass.add_inst_arity_i ("List.list",[[cls_name]],[cls_name]) (pt_proof pt_thm_list)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   439
        |> AxClass.add_inst_arity_i ("*",[[cls_name],[cls_name]],[cls_name]) (pt_proof pt_thm_prod)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   440
        |> AxClass.add_inst_arity_i ("Product_Type.unit",[],[cls_name]) (pt_proof pt_thm_unit)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   441
        |> AxClass.add_inst_arity_i ("set",[[cls_name]],[cls_name]) (pt_proof pt_thm_set)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   442
     end) ak_names thy13; 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   443
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   444
     (* show that discrete types are permutation types, finitely supported and *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   445
     (* have the commutation property                                          *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   446
     (* discrete types have a permutation operation defined as pi o x = x;     *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   447
     (* which renders the proofs to be simple "simp_all"-proofs.               *)            
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   448
     val thy19 =
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   449
        let 
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   450
	  fun discrete_pt_inst discrete_ty defn = 
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   451
	     fold (fn ak_name => fn thy =>
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   452
	     let
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   453
	       val qu_class = Sign.full_name (sign_of thy) ("pt_"^ak_name);
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   454
	       val simp_s = HOL_basic_ss addsimps [defn];
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   455
               val proof = EVERY [AxClass.intro_classes_tac [], REPEAT (asm_simp_tac simp_s 1)];      
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   456
             in  
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   457
	       AxClass.add_inst_arity_i (discrete_ty,[],[qu_class]) proof thy
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   458
             end) ak_names;
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   459
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   460
          fun discrete_fs_inst discrete_ty defn = 
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   461
	     fold (fn ak_name => fn thy =>
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   462
	     let
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   463
	       val qu_class = Sign.full_name (sign_of thy) ("fs_"^ak_name);
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   464
	       val supp_def = thm "nominal.supp_def";
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   465
               val simp_s = HOL_ss addsimps [supp_def,if_False,Collect_const,Finites.emptyI,defn];
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   466
               val proof = EVERY [AxClass.intro_classes_tac [], asm_simp_tac simp_s 1];      
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   467
             in  
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   468
	       AxClass.add_inst_arity_i (discrete_ty,[],[qu_class]) proof thy
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   469
             end) ak_names;  
18355
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   470
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   471
          fun discrete_cp_inst discrete_ty defn = 
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   472
	     fold (fn ak_name' => (fold (fn ak_name => fn thy =>
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   473
	     let
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   474
	       val qu_class = Sign.full_name (sign_of thy) ("cp_"^ak_name^"_"^ak_name');
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   475
	       val supp_def = thm "nominal.supp_def";
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   476
               val simp_s = HOL_ss addsimps [defn];
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   477
               val proof = EVERY [AxClass.intro_classes_tac [], asm_simp_tac simp_s 1];      
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   478
             in  
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   479
	       AxClass.add_inst_arity_i (discrete_ty,[],[qu_class]) proof thy
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   480
             end) ak_names)) ak_names;  
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   481
          
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   482
        in
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   483
         thy18
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   484
         |> discrete_pt_inst "nat"  (thm "perm_nat_def")
18355
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   485
         |> discrete_fs_inst "nat"  (thm "perm_nat_def") 
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   486
         |> discrete_cp_inst "nat"  (thm "perm_nat_def") 
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   487
         |> discrete_pt_inst "bool" (thm "perm_bool")
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   488
         |> discrete_fs_inst "bool" (thm "perm_bool")
18355
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   489
         |> discrete_cp_inst "bool" (thm "perm_bool")
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   490
         |> discrete_pt_inst "IntDef.int" (thm "perm_int_def")
18355
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   491
         |> discrete_fs_inst "IntDef.int" (thm "perm_int_def") 
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   492
         |> discrete_cp_inst "IntDef.int" (thm "perm_int_def") 
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   493
         |> discrete_pt_inst "List.char" (thm "perm_char_def")
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   494
         |> discrete_fs_inst "List.char" (thm "perm_char_def")
18355
e53a5075953e added code to say that discrete types (nat, bool, char)
urbanc
parents: 18307
diff changeset
   495
         |> discrete_cp_inst "List.char" (thm "perm_char_def")
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   496
        end;
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   497
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   498
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   499
       (*<<<<<<<  fs_<ak> class instances  >>>>>>>*)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   500
       (*=========================================*)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   501
       (* abbreviations for some lemmas *)
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   502
       val fs1            = thm "fs1";
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   503
       val fs_at_inst     = thm "fs_at_inst";
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   504
       val fs_unit_inst   = thm "fs_unit_inst";
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   505
       val fs_prod_inst   = thm "fs_prod_inst";
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   506
       val fs_list_inst   = thm "fs_list_inst";
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   507
       val fs_option_inst = thm "fs_option_inst";
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   508
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   509
       (* shows that <ak> is an instance of fs_<ak>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   510
       (* uses the theorem at_<ak>_inst                 *)
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   511
       (* FIXME -- needs to be done for all ak-combinations *) 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   512
       val thy20 = fold (fn ak_name => fn thy =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   513
       let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   514
          val qu_name =  Sign.full_name (sign_of thy) ak_name;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   515
          val qu_class = Sign.full_name (sign_of thy) ("fs_"^ak_name);
18307
92af40e5d7b7 added facilities to prove the pt and fs instances
urbanc
parents: 18279
diff changeset
   516
          val at_thm = PureThy.get_thm thy (Name ("at_"^ak_name^"_inst"));
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   517
          val proof = EVERY [AxClass.intro_classes_tac [],
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   518
                             rtac ((at_thm RS fs_at_inst) RS fs1) 1];      
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   519
       in 
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   520
	 AxClass.add_inst_arity_i (qu_name,[],[qu_class]) proof thy 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   521
       end) ak_names thy19;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   522
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   523
       (* shows that                  *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   524
       (*    unit                     *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   525
       (*    *(fs_<ak>,fs_<ak>)       *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   526
       (*    list(fs_<ak>)            *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   527
       (*    option(fs_<ak>)          *) 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   528
       (* are instances of fs_<ak>    *)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   529
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   530
       val thy24 = fold (fn ak_name => fn thy => 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   531
        let
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   532
          val cls_name = Sign.full_name (sign_of thy) ("fs_"^ak_name);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   533
          val fs_inst  = PureThy.get_thm thy (Name ("fs_"^ak_name^"_inst"));
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   534
          fun fs_proof thm = EVERY [AxClass.intro_classes_tac [], rtac (thm RS fs1) 1];      
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   535
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   536
          val fs_thm_unit = fs_unit_inst;
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   537
          val fs_thm_prod = fs_inst RS (fs_inst RS fs_prod_inst);
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   538
          val fs_thm_list = fs_inst RS fs_list_inst;
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   539
          val fs_thm_optn = fs_inst RS fs_option_inst;
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   540
        in 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   541
         thy 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   542
         |> AxClass.add_inst_arity_i ("Product_Type.unit",[],[cls_name]) (fs_proof fs_thm_unit) 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   543
         |> AxClass.add_inst_arity_i ("*",[[cls_name],[cls_name]],[cls_name]) (fs_proof fs_thm_prod)    
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   544
         |> AxClass.add_inst_arity_i ("List.list",[[cls_name]],[cls_name]) (fs_proof fs_thm_list)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   545
         |> AxClass.add_inst_arity_i ("Datatype.option",[[cls_name]],[cls_name]) (fs_proof fs_thm_optn)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   546
        end) ak_names thy20; 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   547
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   548
       (*<<<<<<<  cp_<ak>_<ai> class instances  >>>>>>>*)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   549
       (*==============================================*)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   550
       (* abbreviations for some lemmas *)
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   551
       val cp1             = thm "cp1";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   552
       val cp_unit_inst    = thm "cp_unit_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   553
       val cp_bool_inst    = thm "cp_bool_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   554
       val cp_prod_inst    = thm "cp_prod_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   555
       val cp_list_inst    = thm "cp_list_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   556
       val cp_fun_inst     = thm "cp_fun_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   557
       val cp_option_inst  = thm "cp_option_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   558
       val cp_noption_inst = thm "cp_noption_inst";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   559
       val pt_perm_compose = thm "pt_perm_compose";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   560
       val dj_pp_forget    = thm "dj_perm_perm_forget";
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   561
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   562
       (* shows that <aj> is an instance of cp_<ak>_<ai>  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   563
       (* that needs a three-nested loop *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   564
       val (thy25,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   565
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   566
          foldl_map (fn (thy'', (ak_name'', T'')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   567
            let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   568
              val qu_name =  Sign.full_name (sign_of thy'') ak_name;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   569
              val qu_class = Sign.full_name (sign_of thy'') ("cp_"^ak_name'^"_"^ak_name'');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   570
              val proof =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   571
                (if (ak_name'=ak_name'') then 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   572
		  (let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   573
                    val pt_inst  = PureThy.get_thm thy'' (Name ("pt_"^ak_name''^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   574
		    val at_inst  = PureThy.get_thm thy'' (Name ("at_"^ak_name''^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   575
                  in 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   576
		   EVERY [AxClass.intro_classes_tac [], 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   577
                          rtac (at_inst RS (pt_inst RS pt_perm_compose)) 1]
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   578
                  end)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   579
		else
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   580
		  (let 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   581
                     val dj_inst  = PureThy.get_thm thy'' (Name ("dj_"^ak_name''^"_"^ak_name'));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   582
		     val simp_s = HOL_basic_ss addsimps 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   583
                                        ((dj_inst RS dj_pp_forget)::
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   584
                                         (PureThy.get_thmss thy'' 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   585
					   [Name (ak_name' ^"_prm_"^ak_name^"_def"),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   586
                                            Name (ak_name''^"_prm_"^ak_name^"_def")]));  
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   587
		  in 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   588
                    EVERY [AxClass.intro_classes_tac [], simp_tac simp_s 1]
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   589
                  end))
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   590
	      in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   591
                (AxClass.add_inst_arity_i (qu_name,[],[qu_class]) proof thy'',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   592
	      end)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   593
	   (thy', ak_names_types)) (thy, ak_names_types)) (thy24, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   594
      
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   595
       (* shows that unit is an instance of cp_<ak>_<ai>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   596
       (* for every <ak>-combination                         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   597
       val (thy26,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   598
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   599
          let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   600
            val qu_class = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   601
            val proof = EVERY [AxClass.intro_classes_tac [],rtac (cp_unit_inst RS cp1) 1];     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   602
	  in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   603
            (AxClass.add_inst_arity_i ("Product_Type.unit",[],[qu_class]) proof thy',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   604
	  end) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   605
	   (thy, ak_names_types)) (thy25, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   606
       
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   607
       (* shows that bool is an instance of cp_<ak>_<ai>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   608
       (* for every <ak>-combination                         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   609
       val (thy27,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   610
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   611
           let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   612
	     val qu_class = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   613
             val proof = EVERY [AxClass.intro_classes_tac [], rtac (cp_bool_inst RS cp1) 1];     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   614
	   in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   615
             (AxClass.add_inst_arity_i ("bool",[],[qu_class]) proof thy',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   616
	   end) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   617
	   (thy, ak_names_types)) (thy26, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   618
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   619
       (* shows that prod is an instance of cp_<ak>_<ai>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   620
       (* for every <ak>-combination                         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   621
       val (thy28,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   622
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   623
          let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   624
	    val qu_class = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   625
            val cp_inst  = PureThy.get_thm thy' (Name ("cp_"^ak_name^"_"^ak_name'^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   626
            val proof = EVERY [AxClass.intro_classes_tac [],
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   627
                               rtac ((cp_inst RS (cp_inst RS cp_prod_inst)) RS cp1) 1];     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   628
	  in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   629
            (AxClass.add_inst_arity_i ("*",[[qu_class],[qu_class]],[qu_class]) proof thy',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   630
	  end)  
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   631
	  (thy, ak_names_types)) (thy27, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   632
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   633
       (* shows that list is an instance of cp_<ak>_<ai>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   634
       (* for every <ak>-combination                         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   635
       val (thy29,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   636
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   637
           let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   638
	     val qu_class = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   639
             val cp_inst  = PureThy.get_thm thy' (Name ("cp_"^ak_name^"_"^ak_name'^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   640
             val proof = EVERY [AxClass.intro_classes_tac [],
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   641
                                rtac ((cp_inst RS cp_list_inst) RS cp1) 1];     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   642
	   in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   643
            (AxClass.add_inst_arity_i ("List.list",[[qu_class]],[qu_class]) proof thy',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   644
	   end) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   645
	   (thy, ak_names_types)) (thy28, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   646
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   647
       (* shows that function is an instance of cp_<ak>_<ai>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   648
       (* for every <ak>-combination                             *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   649
       val (thy30,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   650
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   651
          let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   652
	    val qu_class = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   653
            val cp_inst  = PureThy.get_thm thy' (Name ("cp_"^ak_name^"_"^ak_name'^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   654
            val pt_inst  = PureThy.get_thm thy' (Name ("pt_"^ak_name^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   655
            val at_inst  = PureThy.get_thm thy' (Name ("at_"^ak_name^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   656
            val proof = EVERY [AxClass.intro_classes_tac [],
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   657
                    rtac ((at_inst RS (pt_inst RS (cp_inst RS (cp_inst RS cp_fun_inst)))) RS cp1) 1];  
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   658
	  in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   659
            (AxClass.add_inst_arity_i ("fun",[[qu_class],[qu_class]],[qu_class]) proof thy',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   660
	  end) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   661
	  (thy, ak_names_types)) (thy29, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   662
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   663
       (* shows that option is an instance of cp_<ak>_<ai>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   664
       (* for every <ak>-combination                           *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   665
       val (thy31,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   666
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   667
          let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   668
	    val qu_class = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   669
            val cp_inst  = PureThy.get_thm thy' (Name ("cp_"^ak_name^"_"^ak_name'^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   670
            val proof = EVERY [AxClass.intro_classes_tac [],
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   671
                               rtac ((cp_inst RS cp_option_inst) RS cp1) 1];     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   672
	  in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   673
            (AxClass.add_inst_arity_i ("Datatype.option",[[qu_class]],[qu_class]) proof thy',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   674
	  end) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   675
	  (thy, ak_names_types)) (thy30, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   676
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   677
       (* shows that nOption is an instance of cp_<ak>_<ai>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   678
       (* for every <ak>-combination                            *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   679
       val (thy32,_) = foldl_map (fn (thy, (ak_name, T)) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   680
	 foldl_map (fn (thy', (ak_name', T')) =>
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   681
          let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   682
	    val qu_class = Sign.full_name (sign_of thy') ("cp_"^ak_name^"_"^ak_name');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   683
            val cp_inst  = PureThy.get_thm thy' (Name ("cp_"^ak_name^"_"^ak_name'^"_inst"));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   684
            val proof = EVERY [AxClass.intro_classes_tac [],
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   685
                               rtac ((cp_inst RS cp_noption_inst) RS cp1) 1];     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   686
	  in
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   687
           (AxClass.add_inst_arity_i ("nominal.nOption",[[qu_class]],[qu_class]) proof thy',())
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   688
	  end) 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   689
	  (thy, ak_names_types)) (thy31, ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   690
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   691
       (* abbreviations for some lemmas *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   692
       (*===============================*)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   693
       val abs_fun_pi        = thm "nominal.abs_fun_pi";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   694
       val abs_fun_pi_ineq   = thm "nominal.abs_fun_pi_ineq";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   695
       val abs_fun_eq        = thm "nominal.abs_fun_eq";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   696
       val dj_perm_forget    = thm "nominal.dj_perm_forget";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   697
       val dj_pp_forget      = thm "nominal.dj_perm_perm_forget";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   698
       val fresh_iff         = thm "nominal.fresh_abs_fun_iff";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   699
       val fresh_iff_ineq    = thm "nominal.fresh_abs_fun_iff_ineq";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   700
       val abs_fun_supp      = thm "nominal.abs_fun_supp";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   701
       val abs_fun_supp_ineq = thm "nominal.abs_fun_supp_ineq";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   702
       val pt_swap_bij       = thm "nominal.pt_swap_bij";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   703
       val pt_fresh_fresh    = thm "nominal.pt_fresh_fresh";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   704
       val pt_bij            = thm "nominal.pt_bij";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   705
       val pt_perm_compose   = thm "nominal.pt_perm_compose";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   706
       val perm_eq_app       = thm "nominal.perm_eq_app";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   707
       val at_fresh          = thm "nominal.at_fresh";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   708
       val at_calc           = thms "nominal.at_calc";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   709
       val at_supp           = thm "nominal.at_supp";
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   710
       val dj_supp           = thm "nominal.dj_supp";
18396
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   711
       val fresh_left_ineq   = thm "nominal.pt_fresh_left_ineq";
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   712
       val fresh_left        = thm "nominal.pt_fresh_left";
18426
d2303e8654a2 added container-lemma fresh_eqvt
urbanc
parents: 18396
diff changeset
   713
       val fresh_bij_ineq    = thm "nominal.pt_fresh_bij_ineq";
d2303e8654a2 added container-lemma fresh_eqvt
urbanc
parents: 18396
diff changeset
   714
       val fresh_bij         = thm "nominal.pt_fresh_bij";
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   715
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   716
       (* Now we collect and instantiate some lemmas w.r.t. all atom      *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   717
       (* types; this allows for example to use abs_perm (which is a      *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   718
       (* collection of theorems) instead of thm abs_fun_pi with explicit *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   719
       (* instantiations.                                                 *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   720
       val (_,thy33) = 
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   721
	 let 
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   722
             (* takes a theorem thm and a list of theorems [t1,..,tn]            *)
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   723
             (* produces a list of theorems of the form [t1 RS thm,..,tn RS thm] *) 
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   724
             fun instR thm thms = map (fn ti => ti RS thm) thms;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   725
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   726
             (* takes two theorem lists (hopefully of the same length ;o)                *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   727
             (* produces a list of theorems of the form                                  *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   728
             (* [t1 RS m1,..,tn RS mn] where [t1,..,tn] is thms1 and [m1,..,mn] is thms2 *) 
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   729
             fun inst_zip thms1 thms2 = map (fn (t1,t2) => t1 RS t2) (thms1 ~~ thms2);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   730
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   731
             (* takes a theorem list of the form [l1,...,ln]              *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   732
             (* and a list of theorem lists of the form                   *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   733
             (* [[h11,...,h1m],....,[hk1,....,hkm]                        *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   734
             (* produces the list of theorem lists                        *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   735
             (* [[l1 RS h11,...,l1 RS h1m],...,[ln RS hk1,...,ln RS hkm]] *)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   736
             fun inst_mult thms thmss = map (fn (t,ts) => instR t ts) (thms ~~ thmss);
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   737
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   738
             (* FIXME: these lists do not need to be created dynamically again *)
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   739
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   740
             (* list of all at_inst-theorems *)
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   741
             val ats = map (fn ak => PureThy.get_thm thy32 (Name ("at_"^ak^"_inst"))) ak_names
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   742
             (* list of all pt_inst-theorems *)
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   743
             val pts = map (fn ak => PureThy.get_thm thy32 (Name ("pt_"^ak^"_inst"))) ak_names
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   744
             (* list of all cp_inst-theorems as a collection of lists*)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   745
             val cps = 
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   746
		 let fun cps_fun ak1 ak2 = PureThy.get_thm thy32 (Name ("cp_"^ak1^"_"^ak2^"_inst"))
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   747
		 in map (fn aki => (map (cps_fun aki) ak_names)) ak_names end; 
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   748
             (* list of all cp_inst-theorems that have different atom types *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   749
             val cps' = 
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   750
		let fun cps'_fun ak1 ak2 = 
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   751
		if ak1=ak2 then NONE else SOME(PureThy.get_thm thy32 (Name ("cp_"^ak1^"_"^ak2^"_inst")))
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   752
		in map (fn aki => (List.mapPartial I (map (cps'_fun aki) ak_names))) ak_names end;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   753
             (* list of all dj_inst-theorems *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   754
             val djs = 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   755
	       let fun djs_fun (ak1,ak2) = 
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   756
		     if ak1=ak2 then NONE else SOME(PureThy.get_thm thy32 (Name ("dj_"^ak2^"_"^ak1)))
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   757
	       in List.mapPartial I (map djs_fun (Library.product ak_names ak_names)) end;
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   758
             (* list of all fs_inst-theorems *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   759
             val fss = map (fn ak => PureThy.get_thm thy32 (Name ("fs_"^ak^"_inst"))) ak_names
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   760
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   761
             fun inst_pt thms = Library.flat (map (fn ti => instR ti pts) thms); 
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   762
             fun inst_at thms = Library.flat (map (fn ti => instR ti ats) thms);               
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   763
             fun inst_fs thms = Library.flat (map (fn ti => instR ti fss) thms);
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   764
	     fun inst_pt_at thms = inst_zip ats (inst_pt thms);			
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   765
             fun inst_dj thms = Library.flat (map (fn ti => instR ti djs) thms);  
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   766
	     fun inst_pt_pt_at_cp thms = 
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   767
		 Library.flat (inst_mult (inst_zip ats (inst_zip pts (inst_pt thms))) cps);
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   768
             fun inst_pt_at_fs thms = inst_zip (inst_fs [fs1]) (inst_zip ats (inst_pt thms));
18396
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   769
	     fun inst_pt_pt_at_cp thms = 
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   770
		 let val i_pt_pt_at = inst_zip ats (inst_zip pts (inst_pt thms));
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   771
                     val i_pt_pt_at_cp = Library.flat (inst_mult i_pt_pt_at cps');
18396
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   772
		 in i_pt_pt_at_cp end;
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   773
             fun inst_pt_pt_at_cp_dj thms = inst_zip djs (inst_pt_pt_at_cp thms);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   774
           in
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   775
            thy32 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   776
	    |>   PureThy.add_thmss [(("alpha", inst_pt_at [abs_fun_eq]),[])]
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   777
            ||>> PureThy.add_thmss [(("perm_swap", inst_pt_at [pt_swap_bij]),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   778
            ||>> PureThy.add_thmss [(("perm_fresh_fresh", inst_pt_at [pt_fresh_fresh]),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   779
            ||>> PureThy.add_thmss [(("perm_bij", inst_pt_at [pt_bij]),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   780
            ||>> PureThy.add_thmss [(("perm_compose", inst_pt_at [pt_perm_compose]),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   781
            ||>> PureThy.add_thmss [(("perm_app_eq", inst_pt_at [perm_eq_app]),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   782
            ||>> PureThy.add_thmss [(("supp_atm", (inst_at [at_supp]) @ (inst_dj [dj_supp])),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   783
            ||>> PureThy.add_thmss [(("fresh_atm", inst_at [at_fresh]),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   784
            ||>> PureThy.add_thmss [(("calc_atm", inst_at at_calc),[])]
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   785
            ||>> PureThy.add_thmss
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   786
	      let val thms1 = inst_pt_at [abs_fun_pi]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   787
		  and thms2 = inst_pt_pt_at_cp [abs_fun_pi_ineq]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   788
	      in [(("abs_perm", thms1 @ thms2),[])] end
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   789
            ||>> PureThy.add_thmss
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   790
	      let val thms1 = inst_dj [dj_perm_forget]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   791
		  and thms2 = inst_dj [dj_pp_forget]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   792
              in [(("perm_dj", thms1 @ thms2),[])] end
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   793
            ||>> PureThy.add_thmss
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   794
	      let val thms1 = inst_pt_at_fs [fresh_iff]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   795
		  and thms2 = inst_pt_pt_at_cp_dj [fresh_iff_ineq]
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   796
	    in [(("abs_fresh", thms1 @ thms2),[])] end
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   797
	    ||>> PureThy.add_thmss
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   798
	      let val thms1 = inst_pt_at [abs_fun_supp]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   799
		  and thms2 = inst_pt_at_fs [abs_fun_supp]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   800
		  and thms3 = inst_pt_pt_at_cp_dj [abs_fun_supp_ineq]
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   801
	      in [(("abs_supp", thms1 @ thms2 @ thms3),[])] end
18396
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   802
            ||>> PureThy.add_thmss
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   803
	      let val thms1 = inst_pt_at [fresh_left]
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   804
		  and thms2 = inst_pt_pt_at_cp [fresh_left_ineq]
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   805
	      in [(("fresh_left", thms1 @ thms2),[])] end
18426
d2303e8654a2 added container-lemma fresh_eqvt
urbanc
parents: 18396
diff changeset
   806
            ||>> PureThy.add_thmss
d2303e8654a2 added container-lemma fresh_eqvt
urbanc
parents: 18396
diff changeset
   807
	      let val thms1 = inst_pt_at [fresh_bij]
d2303e8654a2 added container-lemma fresh_eqvt
urbanc
parents: 18396
diff changeset
   808
		  and thms2 = inst_pt_pt_at_cp [fresh_bij_ineq]
d2303e8654a2 added container-lemma fresh_eqvt
urbanc
parents: 18396
diff changeset
   809
	      in [(("fresh_eqvt", thms1 @ thms2),[])] end
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   810
	   end;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   811
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   812
    in NominalData.put (fold Symtab.update (map (rpair ()) full_ak_names)
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   813
      (NominalData.get thy11)) thy33
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   814
    end;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   815
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   816
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   817
(* syntax und parsing *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   818
structure P = OuterParse and K = OuterKeyword;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   819
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   820
val atom_declP =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   821
  OuterSyntax.command "atom_decl" "Declare new kinds of atoms" K.thy_decl
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   822
    (Scan.repeat1 P.name >> (Toplevel.theory o create_nom_typedecls));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   823
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   824
val _ = OuterSyntax.add_parsers [atom_declP];
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   825
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   826
val setup = [NominalData.init];
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   827
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   828
end;