src/HOL/Nominal/nominal_atoms.ML
author berghofe
Wed, 25 Feb 2009 11:02:25 +0100
changeset 30086 2023fb9fbf31
parent 29585 c23295521af5
child 30235 58d147683393
permissions -rw-r--r--
Added equivariance lemmas for fresh_star.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
     1
(*  title:      HOL/Nominal/nominal_atoms.ML
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
     2
    Author:     Christian Urban and Stefan Berghofer, TU Muenchen
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
     3
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
     4
Declaration of atom types to be used in nominal datatypes.
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
     5
*)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     6
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     7
signature NOMINAL_ATOMS =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     8
sig
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
     9
  val create_nom_typedecls : string list -> theory -> theory
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    10
  type atom_info
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    11
  val get_atom_infos : theory -> atom_info Symtab.table
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    12
  val get_atom_info : theory -> string -> atom_info option
28372
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    13
  val the_atom_info : theory -> string -> atom_info
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    14
  val fs_class_of : theory -> string -> string
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    15
  val pt_class_of : theory -> string -> string
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    16
  val cp_class_of : theory -> string -> string -> string
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    17
  val at_inst_of : theory -> string -> thm
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    18
  val pt_inst_of : theory -> string -> thm
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    19
  val cp_inst_of : theory -> string -> string -> thm
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    20
  val dj_thm_of : theory -> string -> string -> thm
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    21
  val atoms_of : theory -> string list
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    22
  val mk_permT : typ -> typ
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    23
end
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    24
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    25
structure NominalAtoms : NOMINAL_ATOMS =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    26
struct
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    27
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
    28
val finite_emptyI = @{thm "finite.emptyI"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
    29
val Collect_const = @{thm "Collect_const"};
21669
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21377
diff changeset
    30
24569
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
    31
val inductive_forall_def = @{thm "induct_forall_def"};
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
    32
21669
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21377
diff changeset
    33
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22794
diff changeset
    34
(* theory data *)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    35
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    36
type atom_info =
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    37
  {pt_class : string,
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    38
   fs_class : string,
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    39
   cp_classes : string Symtab.table,
28372
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    40
   at_inst : thm,
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    41
   pt_inst : thm,
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    42
   cp_inst : thm Symtab.table,
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    43
   dj_thms : thm Symtab.table};
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    44
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22794
diff changeset
    45
structure NominalData = TheoryDataFun
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22794
diff changeset
    46
(
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    47
  type T = atom_info Symtab.table;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    48
  val empty = Symtab.empty;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    49
  val copy = I;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    50
  val extend = I;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    51
  fun merge _ x = Symtab.merge (K true) x;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22794
diff changeset
    52
);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    53
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    54
fun make_atom_info ((((((pt_class, fs_class), cp_classes), at_inst), pt_inst), cp_inst), dj_thms) =
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    55
  {pt_class = pt_class,
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    56
   fs_class = fs_class,
28372
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    57
   cp_classes = cp_classes,
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    58
   at_inst = at_inst,
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    59
   pt_inst = pt_inst,
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    60
   cp_inst = cp_inst,
28372
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    61
   dj_thms = dj_thms};
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    62
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    63
val get_atom_infos = NominalData.get;
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    64
val get_atom_info = Symtab.lookup o NominalData.get;
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
    65
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    66
fun gen_lookup lookup name = case lookup name of
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    67
    SOME info => info
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    68
  | NONE => error ("Unknown atom type " ^ quote name);
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    69
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    70
fun the_atom_info thy = gen_lookup (get_atom_info thy);
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    71
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    72
fun gen_lookup' f thy = the_atom_info thy #> f;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    73
fun gen_lookup'' f thy =
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    74
  gen_lookup' (f #> Symtab.lookup #> gen_lookup) thy;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    75
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    76
val fs_class_of = gen_lookup' #fs_class;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    77
val pt_class_of = gen_lookup' #pt_class;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    78
val at_inst_of = gen_lookup' #at_inst;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    79
val pt_inst_of = gen_lookup' #pt_inst;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    80
val cp_class_of = gen_lookup'' #cp_classes;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    81
val cp_inst_of = gen_lookup'' #cp_inst;
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
    82
val dj_thm_of = gen_lookup'' #dj_thms;
28372
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
    83
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    84
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
    85
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
    86
fun mk_permT T = HOLogic.listT (HOLogic.mk_prodT (T, T));
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    87
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    88
fun mk_Cons x xs =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    89
  let val T = fastype_of x
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
    90
  in Const ("List.list.Cons", T --> HOLogic.listT T --> HOLogic.listT T) $ x $ xs end;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    91
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
    92
fun add_thms_string args = PureThy.add_thms ((map o apfst o apfst) Binding.name args);
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
    93
fun add_thmss_string args = PureThy.add_thmss ((map o apfst o apfst) Binding.name args);
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
    94
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    95
(* this function sets up all matters related to atom-  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    96
(* kinds; the user specifies a list of atom-kind names *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    97
(* atom_decl <ak1> ... <akn>                           *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    98
fun create_nom_typedecls ak_names thy =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
    99
  let
24527
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   100
    
24677
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   101
    val (_,thy1) = 
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   102
    fold_map (fn ak => fn thy => 
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   103
          let val dt = ([],ak,NoSyn,[(ak,[@{typ nat}],NoSyn)]) 
27112
661a74bafeb7 polished interface of datatype package
haftmann
parents: 27095
diff changeset
   104
              val ({inject,case_thms,...},thy1) = DatatypePackage.add_datatype true false [ak] [dt] thy
24677
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   105
              val inject_flat = Library.flat inject
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   106
              val ak_type = Type (Sign.intern_type thy1 ak,[])
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   107
              val ak_sign = Sign.intern_const thy1 ak 
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   108
              
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   109
              val inj_type = @{typ nat}-->ak_type
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   110
              val inj_on_type = inj_type-->(@{typ "nat set"})-->@{typ bool}  
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   111
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   112
              (* first statement *)
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   113
              val stmnt1 = HOLogic.mk_Trueprop 
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   114
                  (Const (@{const_name "inj_on"},inj_on_type) $ 
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   115
                         Const (ak_sign,inj_type) $ HOLogic.mk_UNIV @{typ nat})
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   116
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   117
              val simp1 = @{thm inj_on_def}::inject_flat
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   118
              
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   119
              val proof1 = fn _ => EVERY [simp_tac (HOL_basic_ss addsimps simp1) 1,
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   120
                                          rtac @{thm ballI} 1,
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   121
                                          rtac @{thm ballI} 1,
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   122
                                          rtac @{thm impI} 1,
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   123
                                          atac 1]
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   124
             
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   125
              val (inj_thm,thy2) = 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   126
                   add_thms_string [((ak^"_inj",Goal.prove_global thy1 [] [] stmnt1 proof1), [])] thy1
24677
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   127
              
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   128
              (* second statement *)
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   129
              val y = Free ("y",ak_type)  
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   130
              val stmnt2 = HOLogic.mk_Trueprop
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   131
                  (HOLogic.mk_exists ("x",@{typ nat},HOLogic.mk_eq (y,Const (ak_sign,inj_type) $ Bound 0)))
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   132
27128
d2374ba6c02e InductTacs.case_tac with proper context and proper declaration of local variable;
wenzelm
parents: 27112
diff changeset
   133
              val proof2 = fn {prems, context} =>
27216
dc1455f96f56 InductTacs.case_tac: removed obsolete declare, which is now part of Goal.prove;
wenzelm
parents: 27128
diff changeset
   134
                InductTacs.case_tac context "y" 1 THEN
27128
d2374ba6c02e InductTacs.case_tac with proper context and proper declaration of local variable;
wenzelm
parents: 27112
diff changeset
   135
                asm_simp_tac (HOL_basic_ss addsimps simp1) 1 THEN
d2374ba6c02e InductTacs.case_tac with proper context and proper declaration of local variable;
wenzelm
parents: 27112
diff changeset
   136
                rtac @{thm exI} 1 THEN
d2374ba6c02e InductTacs.case_tac with proper context and proper declaration of local variable;
wenzelm
parents: 27112
diff changeset
   137
                rtac @{thm refl} 1
24677
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   138
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   139
              (* third statement *)
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   140
              val (inject_thm,thy3) =
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   141
                  add_thms_string [((ak^"_injection",Goal.prove_global thy2 [] [] stmnt2 proof2), [])] thy2
24677
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   142
  
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   143
              val stmnt3 = HOLogic.mk_Trueprop
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   144
                           (HOLogic.mk_not
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   145
                              (Const ("Finite_Set.finite", HOLogic.mk_setT ak_type --> HOLogic.boolT) $
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   146
                                  HOLogic.mk_UNIV ak_type))
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   147
             
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   148
              val simp2 = [@{thm image_def},@{thm bex_UNIV}]@inject_thm
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   149
              val simp3 = [@{thm UNIV_def}]
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   150
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   151
              val proof3 = fn _ => EVERY [cut_facts_tac inj_thm 1,
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   152
                                          dtac @{thm range_inj_infinite} 1,
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   153
                                          asm_full_simp_tac (HOL_basic_ss addsimps simp2) 1,
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   154
                                          simp_tac (HOL_basic_ss addsimps simp3) 1]  
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   155
           
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   156
              val (inf_thm,thy4) =  
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   157
                    add_thms_string [((ak^"_infinite",Goal.prove_global thy3 [] [] stmnt3 proof3), [])] thy3
24677
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   158
          in 
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   159
            ((inj_thm,inject_thm,inf_thm),thy4)
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   160
          end) ak_names thy
c6295d2dce48 changed the representation of atoms to datatypes over nats
urbanc
parents: 24569
diff changeset
   161
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   162
    (* produces a list consisting of pairs:         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   163
    (*  fst component is the atom-kind name         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   164
    (*  snd component is its type                   *)
21289
920b7b893d9c deleted all uses of sign_of as it's now the identity function
urbanc
parents: 20377
diff changeset
   165
    val full_ak_names = map (Sign.intern_type thy1) ak_names;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   166
    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
   167
     
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   168
    (* declares a swapping function for every atom-kind, it is         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   169
    (* const swap_<ak> :: <akT> * <akT> => <akT> => <akT>              *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   170
    (* 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
   171
    (* overloades then the general swap-function                       *) 
20179
a2f3f523c84b adaption to argument change in primrec_package
haftmann
parents: 20097
diff changeset
   172
    val (swap_eqs, thy3) = fold_map (fn (ak_name, T) => fn thy =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   173
      let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   174
        val swapT = HOLogic.mk_prodT (T, T) --> T --> T;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   175
        val swap_name = Sign.full_bname thy ("swap_" ^ ak_name);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   176
        val a = Free ("a", T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   177
        val b = Free ("b", T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   178
        val c = Free ("c", T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   179
        val ab = Free ("ab", HOLogic.mk_prodT (T, T))
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   180
        val cif = Const ("HOL.If", HOLogic.boolT --> T --> T --> T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   181
        val cswap_akname = Const (swap_name, swapT);
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   182
        val cswap = Const ("Nominal.swap", swapT)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   183
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   184
        val name = "swap_"^ak_name^"_def";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   185
        val def1 = HOLogic.mk_Trueprop (HOLogic.mk_eq
20179
a2f3f523c84b adaption to argument change in primrec_package
haftmann
parents: 20097
diff changeset
   186
                (cswap_akname $ HOLogic.mk_prod (a,b) $ c,
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   187
                    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
   188
        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
   189
      in
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24677
diff changeset
   190
        thy |> Sign.add_consts_i [("swap_" ^ ak_name, swapT, NoSyn)] 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   191
            |> PureThy.add_defs_unchecked true [((Binding.name name, def2),[])]
20179
a2f3f523c84b adaption to argument change in primrec_package
haftmann
parents: 20097
diff changeset
   192
            |> snd
25557
ea6b11021e79 added new primrec package
haftmann
parents: 25538
diff changeset
   193
            |> OldPrimrecPackage.add_primrec_unchecked_i "" [(("", def1),[])]
26398
fccb74555d9e removed redundant axiomatizations of XXX_infinite (fact already proven);
wenzelm
parents: 26343
diff changeset
   194
      end) ak_names_types thy1;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   195
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   196
    (* declares a permutation function for every atom-kind acting  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   197
    (* on such atoms                                               *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   198
    (* const <ak>_prm_<ak> :: (<akT> * <akT>)list => akT => akT    *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   199
    (* <ak>_prm_<ak> []     a = a                                  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   200
    (* <ak>_prm_<ak> (x#xs) a = swap_<ak> x (perm xs a)            *)
20179
a2f3f523c84b adaption to argument change in primrec_package
haftmann
parents: 20097
diff changeset
   201
    val (prm_eqs, thy4) = fold_map (fn (ak_name, T) => fn thy =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   202
      let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   203
        val swapT = HOLogic.mk_prodT (T, T) --> T --> T;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   204
        val swap_name = Sign.full_bname thy ("swap_" ^ ak_name)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   205
        val prmT = mk_permT T --> T --> T;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   206
        val prm_name = ak_name ^ "_prm_" ^ ak_name;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   207
        val qu_prm_name = Sign.full_bname thy prm_name;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   208
        val x  = Free ("x", HOLogic.mk_prodT (T, T));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   209
        val xs = Free ("xs", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   210
        val a  = Free ("a", T) ;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   211
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   212
        val cnil  = Const ("List.list.Nil", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   213
        
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   214
        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
   215
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   216
        val def2 = HOLogic.mk_Trueprop (HOLogic.mk_eq
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   217
                   (Const (qu_prm_name, prmT) $ mk_Cons x xs $ a,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   218
                    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
   219
      in
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24677
diff changeset
   220
        thy |> Sign.add_consts_i [(prm_name, mk_permT T --> T --> T, NoSyn)] 
25557
ea6b11021e79 added new primrec package
haftmann
parents: 25538
diff changeset
   221
            |> OldPrimrecPackage.add_primrec_unchecked_i "" [(("", def1), []),(("", def2), [])]
20179
a2f3f523c84b adaption to argument change in primrec_package
haftmann
parents: 20097
diff changeset
   222
      end) ak_names_types thy3;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   223
    
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   224
    (* defines permutation functions for all combinations of atom-kinds; *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   225
    (* there are a trivial cases and non-trivial cases                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   226
    (* non-trivial case:                                                 *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   227
    (* <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
   228
    (* trivial case with <ak> != <ak'>                                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   229
    (* <ak>_prm<ak'>_def[simp]:  perm pi a == a                          *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   230
    (*                                                                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   231
    (* 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
   232
    (* have their own rules proved below                                 *)  
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18355
diff changeset
   233
    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
   234
      fold_map (fn (ak_name', T') => fn thy' =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   235
        let
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   236
          val perm_def_name = ak_name ^ "_prm_" ^ ak_name';
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   237
          val pi = Free ("pi", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   238
          val a  = Free ("a", T');
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   239
          val cperm = Const ("Nominal.perm", mk_permT T --> T' --> T');
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   240
          val cperm_def = Const (Sign.full_bname thy' perm_def_name, mk_permT T --> T' --> T');
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   241
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   242
          val name = ak_name ^ "_prm_" ^ ak_name' ^ "_def";
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   243
          val def = Logic.mk_equals
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   244
                    (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
   245
        in
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   246
          PureThy.add_defs_unchecked true [((Binding.name name, def),[])] thy'
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18355
diff changeset
   247
        end) ak_names_types thy) ak_names_types thy4;
18068
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
    (* proves that every atom-kind is an instance of at *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   250
    (* lemma at_<ak>_inst:                              *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   251
    (* at TYPE(<ak>)                                    *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   252
    val (prm_cons_thms,thy6) = 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   253
      thy5 |> add_thms_string (map (fn (ak_name, T) =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   254
      let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   255
        val ak_name_qu = Sign.full_bname thy5 (ak_name);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   256
        val i_type = Type(ak_name_qu,[]);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   257
        val cat = Const ("Nominal.at",(Term.itselfT i_type)  --> HOLogic.boolT);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   258
        val at_type = Logic.mk_type i_type;
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   259
        val simp_s = HOL_ss addsimps maps (PureThy.get_thms thy5)
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   260
                                  ["at_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   261
                                   ak_name ^ "_prm_" ^ ak_name ^ "_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   262
                                   ak_name ^ "_prm_" ^ ak_name ^ ".simps",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   263
                                   "swap_" ^ ak_name ^ "_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   264
                                   "swap_" ^ ak_name ^ ".simps",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   265
                                   ak_name ^ "_infinite"]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   266
            
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   267
        val name = "at_"^ak_name^ "_inst";
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   268
        val statement = HOLogic.mk_Trueprop (cat $ at_type);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   269
24527
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   270
        val proof = fn _ => simp_tac simp_s 1
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   271
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   272
      in 
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19993
diff changeset
   273
        ((name, Goal.prove_global thy5 [] [] statement proof), []) 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   274
      end) ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   275
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   276
    (* declares a perm-axclass for every atom-kind               *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   277
    (* axclass pt_<ak>                                           *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   278
    (* pt_<ak>1[simp]: perm [] x = x                             *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   279
    (* 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
   280
    (* pt_<ak>3:       pi1 ~ pi2 ==> perm pi1 x = perm pi2 x     *)
18438
b8d867177916 made the changes according to Florian's re-arranging of
urbanc
parents: 18437
diff changeset
   281
     val (pt_ax_classes,thy7) =  fold_map (fn (ak_name, T) => fn thy =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   282
      let 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   283
          val cl_name = "pt_"^ak_name;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   284
          val ty = TFree("'a",["HOL.type"]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   285
          val x   = Free ("x", ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   286
          val pi1 = Free ("pi1", mk_permT T);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   287
          val pi2 = Free ("pi2", mk_permT T);
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   288
          val cperm = Const ("Nominal.perm", mk_permT T --> ty --> ty);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   289
          val cnil  = Const ("List.list.Nil", mk_permT T);
23029
79ee75dc1e59 constant op @ now named append
haftmann
parents: 22846
diff changeset
   290
          val cappend = Const ("List.append",mk_permT T --> mk_permT T --> mk_permT T);
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   291
          val cprm_eq = Const ("Nominal.prm_eq",mk_permT T --> mk_permT T --> HOLogic.boolT);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   292
          (* nil axiom *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   293
          val axiom1 = HOLogic.mk_Trueprop (HOLogic.mk_eq 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   294
                       (cperm $ cnil $ x, x));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   295
          (* append axiom *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   296
          val axiom2 = HOLogic.mk_Trueprop (HOLogic.mk_eq
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   297
                       (cperm $ (cappend $ pi1 $ pi2) $ x, cperm $ pi1 $ (cperm $ pi2 $ x)));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   298
          (* perm-eq axiom *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   299
          val axiom3 = Logic.mk_implies
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   300
                       (HOLogic.mk_Trueprop (cprm_eq $ pi1 $ pi2),
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   301
                        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
   302
      in
22745
17bc6af2011e moved axclass module closer to core system
haftmann
parents: 22715
diff changeset
   303
          AxClass.define_class (cl_name, ["HOL.type"]) []
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   304
                [((Binding.name (cl_name ^ "1"), [Simplifier.simp_add]), [axiom1]),
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   305
                 ((Binding.name (cl_name ^ "2"), []), [axiom2]),                           
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   306
                 ((Binding.name (cl_name ^ "3"), []), [axiom3])] thy
18438
b8d867177916 made the changes according to Florian's re-arranging of
urbanc
parents: 18437
diff changeset
   307
      end) ak_names_types thy6;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   308
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   309
    (* proves that every pt_<ak>-type together with <ak>-type *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   310
    (* instance of pt                                         *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   311
    (* lemma pt_<ak>_inst:                                    *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   312
    (* pt TYPE('x::pt_<ak>) TYPE(<ak>)                        *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   313
    val (prm_inst_thms,thy8) = 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   314
      thy7 |> add_thms_string (map (fn (ak_name, T) =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   315
      let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   316
        val ak_name_qu = Sign.full_bname thy7 ak_name;
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   317
        val pt_name_qu = Sign.full_bname thy7 ("pt_"^ak_name);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   318
        val i_type1 = TFree("'x",[pt_name_qu]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   319
        val i_type2 = Type(ak_name_qu,[]);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   320
        val cpt = Const ("Nominal.pt",(Term.itselfT i_type1)-->(Term.itselfT i_type2)-->HOLogic.boolT);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   321
        val pt_type = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   322
        val at_type = Logic.mk_type i_type2;
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   323
        val simp_s = HOL_ss addsimps maps (PureThy.get_thms thy7)
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   324
                                  ["pt_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   325
                                   "pt_" ^ ak_name ^ "1",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   326
                                   "pt_" ^ ak_name ^ "2",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   327
                                   "pt_" ^ ak_name ^ "3"];
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   328
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   329
        val name = "pt_"^ak_name^ "_inst";
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   330
        val statement = HOLogic.mk_Trueprop (cpt $ pt_type $ at_type);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   331
24527
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   332
        val proof = fn _ => simp_tac simp_s 1;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   333
      in 
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19993
diff changeset
   334
        ((name, Goal.prove_global thy7 [] [] statement proof), []) 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   335
      end) ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   336
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   337
     (* declares an fs-axclass for every atom-kind       *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   338
     (* axclass fs_<ak>                                  *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   339
     (* fs_<ak>1: finite ((supp x)::<ak> set)            *)
18438
b8d867177916 made the changes according to Florian's re-arranging of
urbanc
parents: 18437
diff changeset
   340
     val (fs_ax_classes,thy11) =  fold_map (fn (ak_name, T) => fn thy =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   341
       let 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   342
          val cl_name = "fs_"^ak_name;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   343
          val pt_name = Sign.full_bname thy ("pt_"^ak_name);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   344
          val ty = TFree("'a",["HOL.type"]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   345
          val x   = Free ("x", ty);
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   346
          val csupp    = Const ("Nominal.supp", ty --> HOLogic.mk_setT T);
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 21669
diff changeset
   347
          val cfinite  = Const ("Finite_Set.finite", HOLogic.mk_setT T --> HOLogic.boolT)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   348
          
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 21669
diff changeset
   349
          val axiom1   = HOLogic.mk_Trueprop (cfinite $ (csupp $ x));
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   350
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   351
       in  
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   352
        AxClass.define_class (cl_name, [pt_name]) [] [((Binding.name (cl_name ^ "1"), []), [axiom1])] thy            
18438
b8d867177916 made the changes according to Florian's re-arranging of
urbanc
parents: 18437
diff changeset
   353
       end) ak_names_types thy8; 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   354
         
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   355
     (* proves that every fs_<ak>-type together with <ak>-type   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   356
     (* instance of fs-type                                      *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   357
     (* lemma abst_<ak>_inst:                                    *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   358
     (* fs TYPE('x::pt_<ak>) TYPE (<ak>)                         *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   359
     val (fs_inst_thms,thy12) = 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   360
       thy11 |> add_thms_string (map (fn (ak_name, T) =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   361
       let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   362
         val ak_name_qu = Sign.full_bname thy11 ak_name;
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   363
         val fs_name_qu = Sign.full_bname thy11 ("fs_"^ak_name);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   364
         val i_type1 = TFree("'x",[fs_name_qu]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   365
         val i_type2 = Type(ak_name_qu,[]);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   366
         val cfs = Const ("Nominal.fs", 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   367
                                 (Term.itselfT i_type1)-->(Term.itselfT i_type2)-->HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   368
         val fs_type = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   369
         val at_type = Logic.mk_type i_type2;
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   370
         val simp_s = HOL_ss addsimps maps (PureThy.get_thms thy11)
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   371
                                   ["fs_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   372
                                    "fs_" ^ ak_name ^ "1"];
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   373
    
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   374
         val name = "fs_"^ak_name^ "_inst";
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   375
         val statement = HOLogic.mk_Trueprop (cfs $ fs_type $ at_type);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   376
24527
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   377
         val proof = fn _ => simp_tac simp_s 1;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   378
       in 
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19993
diff changeset
   379
         ((name, Goal.prove_global thy11 [] [] statement proof), []) 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   380
       end) ak_names_types);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   381
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   382
       (* declares for every atom-kind combination an axclass            *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   383
       (* cp_<ak1>_<ak2> giving a composition property                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   384
       (* cp_<ak1>_<ak2>1: pi1 o pi2 o x = (pi1 o pi2) o (pi1 o x)       *)
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
   385
        val (cp_ax_classes,thy12b) = fold_map (fn (ak_name, T) => fn thy =>
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   386
         fold_map (fn (ak_name', T') => fn thy' =>
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   387
             let
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   388
               val cl_name = "cp_"^ak_name^"_"^ak_name';
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   389
               val ty = TFree("'a",["HOL.type"]);
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   390
               val x   = Free ("x", ty);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   391
               val pi1 = Free ("pi1", mk_permT T);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   392
               val pi2 = Free ("pi2", mk_permT T');                  
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   393
               val cperm1 = Const ("Nominal.perm", mk_permT T  --> ty --> ty);
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   394
               val cperm2 = Const ("Nominal.perm", mk_permT T' --> ty --> ty);
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   395
               val cperm3 = Const ("Nominal.perm", mk_permT T  --> mk_permT T' --> mk_permT T');
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   396
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   397
               val ax1   = HOLogic.mk_Trueprop 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   398
                           (HOLogic.mk_eq (cperm1 $ pi1 $ (cperm2 $ pi2 $ x), 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   399
                                           cperm2 $ (cperm3 $ pi1 $ pi2) $ (cperm1 $ pi1 $ x)));
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   400
               in  
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28011
diff changeset
   401
                 AxClass.define_class (cl_name, ["HOL.type"]) []
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   402
                   [((Binding.name (cl_name ^ "1"), []), [ax1])] thy'  
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   403
               end) ak_names_types thy) ak_names_types thy12;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   404
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   405
        (* 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
   406
        (* lemma cp_<ak1>_<ak2>_inst:                                           *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   407
        (* 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
   408
        val (cp_thms,thy12c) = fold_map (fn (ak_name, T) => fn thy =>
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   409
         fold_map (fn (ak_name', T') => fn thy' =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   410
           let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   411
             val ak_name_qu  = Sign.full_bname thy' (ak_name);
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   412
             val ak_name_qu' = Sign.full_bname thy' (ak_name');
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   413
             val cp_name_qu  = Sign.full_bname thy' ("cp_"^ak_name^"_"^ak_name');
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   414
             val i_type0 = TFree("'a",[cp_name_qu]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   415
             val i_type1 = Type(ak_name_qu,[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   416
             val i_type2 = Type(ak_name_qu',[]);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   417
             val ccp = Const ("Nominal.cp",
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   418
                             (Term.itselfT i_type0)-->(Term.itselfT i_type1)-->
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   419
                                                      (Term.itselfT i_type2)-->HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   420
             val at_type  = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   421
             val at_type' = Logic.mk_type i_type2;
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   422
             val cp_type  = Logic.mk_type i_type0;
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   423
             val simp_s   = HOL_basic_ss addsimps maps (PureThy.get_thms thy') ["cp_def"];
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   424
             val cp1      = PureThy.get_thm thy' ("cp_" ^ ak_name ^ "_" ^ ak_name' ^ "1");
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   425
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   426
             val name = "cp_"^ak_name^ "_"^ak_name'^"_inst";
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   427
             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
   428
24527
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   429
             val proof = fn _ => EVERY [simp_tac simp_s 1, 
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   430
                                        rtac allI 1, rtac allI 1, rtac allI 1,
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   431
                                        rtac cp1 1];
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   432
           in
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   433
             yield_singleton add_thms_string ((name,
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
   434
               Goal.prove_global thy' [] [] statement proof), []) thy'
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   435
           end) 
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   436
           ak_names_types thy) ak_names_types thy12b;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   437
       
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   438
        (* proves for every non-trivial <ak>-combination a disjointness   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   439
        (* theorem; i.e. <ak1> != <ak2>                                   *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   440
        (* lemma ds_<ak1>_<ak2>:                                          *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   441
        (* dj TYPE(<ak1>) TYPE(<ak2>)                                     *)
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   442
        val (dj_thms, thy12d) = fold_map (fn (ak_name,T) => fn thy =>
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   443
          fold_map (fn (ak_name',T') => fn thy' =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   444
          (if not (ak_name = ak_name') 
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   445
           then 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   446
               let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   447
                 val ak_name_qu  = Sign.full_bname thy' ak_name;
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   448
                 val ak_name_qu' = Sign.full_bname thy' ak_name';
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   449
                 val i_type1 = Type(ak_name_qu,[]);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   450
                 val i_type2 = Type(ak_name_qu',[]);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   451
                 val cdj = Const ("Nominal.disjoint",
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   452
                           (Term.itselfT i_type1)-->(Term.itselfT i_type2)-->HOLogic.boolT);
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   453
                 val at_type  = Logic.mk_type i_type1;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   454
                 val at_type' = Logic.mk_type i_type2;
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   455
                 val simp_s = HOL_ss addsimps maps (PureThy.get_thms thy')
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   456
                                           ["disjoint_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   457
                                            ak_name ^ "_prm_" ^ ak_name' ^ "_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   458
                                            ak_name' ^ "_prm_" ^ ak_name ^ "_def"];
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   459
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   460
                 val name = "dj_"^ak_name^"_"^ak_name';
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   461
                 val statement = HOLogic.mk_Trueprop (cdj $ at_type $ at_type');
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   462
24527
888d56a8d9d3 modified proofs so that they are not using claset()
urbanc
parents: 24218
diff changeset
   463
                 val proof = fn _ => simp_tac simp_s 1;
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   464
               in
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   465
                add_thms_string [((name, Goal.prove_global thy' [] [] statement proof), [])] thy'
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   466
               end
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   467
           else 
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   468
            ([],thy')))  (* do nothing branch, if ak_name = ak_name' *) 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   469
            ak_names_types thy) ak_names_types thy12c;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   470
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   471
     (********  pt_<ak> class instances  ********)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   472
     (*=========================================*)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   473
     (* some abbreviations for theorems *)
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   474
      val pt1           = @{thm "pt1"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   475
      val pt2           = @{thm "pt2"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   476
      val pt3           = @{thm "pt3"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   477
      val at_pt_inst    = @{thm "at_pt_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   478
      val pt_unit_inst  = @{thm "pt_unit_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   479
      val pt_prod_inst  = @{thm "pt_prod_inst"}; 
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   480
      val pt_nprod_inst = @{thm "pt_nprod_inst"}; 
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   481
      val pt_list_inst  = @{thm "pt_list_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   482
      val pt_optn_inst  = @{thm "pt_option_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   483
      val pt_noptn_inst = @{thm "pt_noption_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   484
      val pt_fun_inst   = @{thm "pt_fun_inst"};
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   485
18435
318d2c271040 tuned one comment
urbanc
parents: 18432
diff changeset
   486
     (* for all atom-kind combinations <ak>/<ak'> show that        *)
318d2c271040 tuned one comment
urbanc
parents: 18432
diff changeset
   487
     (* every <ak> is an instance of pt_<ak'>; the proof for       *)
318d2c271040 tuned one comment
urbanc
parents: 18432
diff changeset
   488
     (* ak!=ak' is by definition; the case ak=ak' uses at_pt_inst. *)
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   489
     val thy13 = fold (fn ak_name => fn thy =>
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   490
        fold (fn ak_name' => fn thy' =>
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   491
         let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   492
           val qu_name =  Sign.full_bname thy' ak_name';
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   493
           val cls_name = Sign.full_bname thy' ("pt_"^ak_name);
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   494
           val at_inst  = PureThy.get_thm thy' ("at_" ^ ak_name' ^ "_inst");
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   495
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   496
           val proof1 = EVERY [Class.intro_classes_tac [],
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   497
                                 rtac ((at_inst RS at_pt_inst) RS pt1) 1,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   498
                                 rtac ((at_inst RS at_pt_inst) RS pt2) 1,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   499
                                 rtac ((at_inst RS at_pt_inst) RS pt3) 1,
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   500
                                 atac 1];
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   501
           val simp_s = HOL_basic_ss addsimps 
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   502
                        maps (PureThy.get_thms thy') [ak_name ^ "_prm_" ^ ak_name' ^ "_def"];  
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   503
           val proof2 = EVERY [Class.intro_classes_tac [], REPEAT (asm_simp_tac simp_s 1)];
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   504
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   505
         in
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   506
           thy'
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   507
           |> AxClass.prove_arity (qu_name,[],[cls_name])
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   508
              (if ak_name = ak_name' then proof1 else proof2)
26484
28dd7c7a9a2e eliminated non-linear access to thy1 and thy12c;
wenzelm
parents: 26398
diff changeset
   509
         end) ak_names thy) ak_names thy12d;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   510
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   511
     (* show that                       *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   512
     (*      fun(pt_<ak>,pt_<ak>)       *)
18579
002d371401f5 changed the name of the type "nOption" to "noption".
urbanc
parents: 18438
diff changeset
   513
     (*      noption(pt_<ak>)           *)
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   514
     (*      option(pt_<ak>)            *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   515
     (*      list(pt_<ak>)              *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   516
     (*      *(pt_<ak>,pt_<ak>)         *)
18600
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   517
     (*      nprod(pt_<ak>,pt_<ak>)     *)
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   518
     (*      unit                       *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   519
     (*      set(pt_<ak>)               *)
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   520
     (* are instances of pt_<ak>        *)
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   521
     val thy18 = fold (fn ak_name => fn thy =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   522
       let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   523
          val cls_name = Sign.full_bname thy ("pt_"^ak_name);
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   524
          val at_thm   = PureThy.get_thm thy ("at_"^ak_name^"_inst");
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   525
          val pt_inst  = PureThy.get_thm thy ("pt_"^ak_name^"_inst");
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   526
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   527
          fun pt_proof thm = 
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   528
              EVERY [Class.intro_classes_tac [],
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   529
                     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
   530
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   531
          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
   532
          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
   533
          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
   534
          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
   535
          val pt_thm_prod  = pt_inst RS (pt_inst RS pt_prod_inst);
18600
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   536
          val pt_thm_nprod = pt_inst RS (pt_inst RS pt_nprod_inst);
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   537
          val pt_thm_unit  = pt_unit_inst;
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   538
       in
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   539
        thy
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   540
        |> AxClass.prove_arity ("fun",[[cls_name],[cls_name]],[cls_name]) (pt_proof pt_thm_fun)
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   541
        |> AxClass.prove_arity ("Nominal.noption",[[cls_name]],[cls_name]) (pt_proof pt_thm_noptn) 
24194
96013f81faef re-eliminated Option.thy
haftmann
parents: 24162
diff changeset
   542
        |> AxClass.prove_arity ("Datatype.option",[[cls_name]],[cls_name]) (pt_proof pt_thm_optn)
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   543
        |> AxClass.prove_arity ("List.list",[[cls_name]],[cls_name]) (pt_proof pt_thm_list)
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   544
        |> AxClass.prove_arity ("*",[[cls_name],[cls_name]],[cls_name]) (pt_proof pt_thm_prod)
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   545
        |> AxClass.prove_arity ("Nominal.nprod",[[cls_name],[cls_name]],[cls_name]) 
18600
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   546
                                    (pt_proof pt_thm_nprod)
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   547
        |> AxClass.prove_arity ("Product_Type.unit",[],[cls_name]) (pt_proof pt_thm_unit)
18430
46c18c0b52c1 improved the code for showing that a type is
urbanc
parents: 18426
diff changeset
   548
     end) ak_names thy13; 
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   549
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   550
       (********  fs_<ak> class instances  ********)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   551
       (*=========================================*)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   552
       (* abbreviations for some lemmas *)
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   553
       val fs1            = @{thm "fs1"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   554
       val fs_at_inst     = @{thm "fs_at_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   555
       val fs_unit_inst   = @{thm "fs_unit_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   556
       val fs_prod_inst   = @{thm "fs_prod_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   557
       val fs_nprod_inst  = @{thm "fs_nprod_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   558
       val fs_list_inst   = @{thm "fs_list_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   559
       val fs_option_inst = @{thm "fs_option_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   560
       val dj_supp        = @{thm "dj_supp"};
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 <ak> is an instance of fs_<ak>     *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   563
       (* uses the theorem at_<ak>_inst                 *)
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   564
       val thy20 = fold (fn ak_name => fn thy =>
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   565
        fold (fn ak_name' => fn thy' =>
18437
ee0283e5dfe3 added proofs to show that every atom-kind combination
urbanc
parents: 18436
diff changeset
   566
        let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   567
           val qu_name =  Sign.full_bname thy' ak_name';
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   568
           val qu_class = Sign.full_bname thy' ("fs_"^ak_name);
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   569
           val proof =
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   570
               (if ak_name = ak_name'
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   571
                then
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   572
                  let val at_thm = PureThy.get_thm thy' ("at_"^ak_name^"_inst");
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   573
                  in  EVERY [Class.intro_classes_tac [],
18437
ee0283e5dfe3 added proofs to show that every atom-kind combination
urbanc
parents: 18436
diff changeset
   574
                             rtac ((at_thm RS fs_at_inst) RS fs1) 1] end
ee0283e5dfe3 added proofs to show that every atom-kind combination
urbanc
parents: 18436
diff changeset
   575
                else
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   576
                  let val dj_inst = PureThy.get_thm thy' ("dj_"^ak_name'^"_"^ak_name);
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 21669
diff changeset
   577
                      val simp_s = HOL_basic_ss addsimps [dj_inst RS dj_supp, finite_emptyI];
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   578
                  in EVERY [Class.intro_classes_tac [], asm_simp_tac simp_s 1] end)
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   579
        in
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   580
         AxClass.prove_arity (qu_name,[],[qu_class]) proof thy'
18437
ee0283e5dfe3 added proofs to show that every atom-kind combination
urbanc
parents: 18436
diff changeset
   581
        end) ak_names thy) ak_names thy18;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   582
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   583
       (* shows that                  *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   584
       (*    unit                     *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   585
       (*    *(fs_<ak>,fs_<ak>)       *)
18600
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   586
       (*    nprod(fs_<ak>,fs_<ak>)   *)
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   587
       (*    list(fs_<ak>)            *)
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   588
       (*    option(fs_<ak>)          *) 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   589
       (* are instances of fs_<ak>    *)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   590
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   591
       val thy24 = fold (fn ak_name => fn thy => 
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   592
        let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   593
          val cls_name = Sign.full_bname thy ("fs_"^ak_name);
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   594
          val fs_inst  = PureThy.get_thm thy ("fs_"^ak_name^"_inst");
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   595
          fun fs_proof thm = EVERY [Class.intro_classes_tac [], rtac (thm RS fs1) 1];
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   596
18600
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   597
          val fs_thm_unit  = fs_unit_inst;
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   598
          val fs_thm_prod  = fs_inst RS (fs_inst RS fs_prod_inst);
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   599
          val fs_thm_nprod = fs_inst RS (fs_inst RS fs_nprod_inst);
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   600
          val fs_thm_list  = fs_inst RS fs_list_inst;
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   601
          val fs_thm_optn  = fs_inst RS fs_option_inst;
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   602
        in 
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   603
         thy
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   604
         |> AxClass.prove_arity ("Product_Type.unit",[],[cls_name]) (fs_proof fs_thm_unit) 
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   605
         |> AxClass.prove_arity ("*",[[cls_name],[cls_name]],[cls_name]) (fs_proof fs_thm_prod) 
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   606
         |> AxClass.prove_arity ("Nominal.nprod",[[cls_name],[cls_name]],[cls_name]) 
18600
20ad06db427b added private datatype nprod (copy of prod) to be
urbanc
parents: 18579
diff changeset
   607
                                     (fs_proof fs_thm_nprod) 
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   608
         |> AxClass.prove_arity ("List.list",[[cls_name]],[cls_name]) (fs_proof fs_thm_list)
24194
96013f81faef re-eliminated Option.thy
haftmann
parents: 24162
diff changeset
   609
         |> AxClass.prove_arity ("Datatype.option",[[cls_name]],[cls_name]) (fs_proof fs_thm_optn)
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   610
        end) ak_names thy20;
18431
a59c79a3544c improved the finite-support proof
urbanc
parents: 18430
diff changeset
   611
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   612
       (********  cp_<ak>_<ai> class instances  ********)
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   613
       (*==============================================*)
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   614
       (* abbreviations for some lemmas *)
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   615
       val cp1             = @{thm "cp1"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   616
       val cp_unit_inst    = @{thm "cp_unit_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   617
       val cp_bool_inst    = @{thm "cp_bool_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   618
       val cp_prod_inst    = @{thm "cp_prod_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   619
       val cp_list_inst    = @{thm "cp_list_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   620
       val cp_fun_inst     = @{thm "cp_fun_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   621
       val cp_option_inst  = @{thm "cp_option_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   622
       val cp_noption_inst = @{thm "cp_noption_inst"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   623
       val pt_perm_compose = @{thm "pt_perm_compose"};
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   624
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   625
       val dj_pp_forget    = @{thm "dj_perm_perm_forget"};
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   626
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   627
       (* shows that <aj> is an instance of cp_<ak>_<ai>  *)
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   628
       (* for every  <ak>/<ai>-combination                *)
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   629
       val thy25 = fold (fn ak_name => fn thy =>
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   630
         fold (fn ak_name' => fn thy' =>
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   631
          fold (fn ak_name'' => fn thy'' =>
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   632
            let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   633
              val name =  Sign.full_bname thy'' ak_name;
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   634
              val cls_name = Sign.full_bname thy'' ("cp_"^ak_name'^"_"^ak_name'');
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   635
              val proof =
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   636
                (if (ak_name'=ak_name'') then 
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   637
                  (let
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   638
                    val pt_inst  = PureThy.get_thm thy'' ("pt_"^ak_name''^"_inst");
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   639
                    val at_inst  = PureThy.get_thm thy'' ("at_"^ak_name''^"_inst");
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   640
                  in
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   641
                   EVERY [Class.intro_classes_tac [],
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   642
                          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
   643
                  end)
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   644
                else
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   645
                  (let
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   646
                     val dj_inst  = PureThy.get_thm thy'' ("dj_"^ak_name''^"_"^ak_name');
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   647
                     val simp_s = HOL_basic_ss addsimps
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   648
                                        ((dj_inst RS dj_pp_forget)::
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   649
                                         (maps (PureThy.get_thms thy'')
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   650
                                           [ak_name' ^"_prm_"^ak_name^"_def",
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   651
                                            ak_name''^"_prm_"^ak_name^"_def"]));
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   652
                  in
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   653
                    EVERY [Class.intro_classes_tac [], simp_tac simp_s 1]
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   654
                  end))
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   655
              in
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   656
                AxClass.prove_arity (name,[],[cls_name]) proof thy''
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   657
              end) ak_names thy') ak_names thy) ak_names thy24;
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   658
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   659
       (* shows that                                                    *) 
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   660
       (*      units                                                    *) 
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   661
       (*      products                                                 *)
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   662
       (*      lists                                                    *)
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   663
       (*      functions                                                *)
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   664
       (*      options                                                  *)
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   665
       (*      noptions                                                 *)
22536
35debf264656 made the type sets instance of the "cp" type-class
urbanc
parents: 22535
diff changeset
   666
       (*      sets                                                     *)
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   667
       (* are instances of cp_<ak>_<ai> for every <ak>/<ai>-combination *)
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   668
       val thy26 = fold (fn ak_name => fn thy =>
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   669
        fold (fn ak_name' => fn thy' =>
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   670
        let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   671
            val cls_name = Sign.full_bname thy' ("cp_"^ak_name^"_"^ak_name');
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   672
            val cp_inst  = PureThy.get_thm thy' ("cp_"^ak_name^"_"^ak_name'^"_inst");
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   673
            val pt_inst  = PureThy.get_thm thy' ("pt_"^ak_name^"_inst");
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   674
            val at_inst  = PureThy.get_thm thy' ("at_"^ak_name^"_inst");
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   675
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   676
            fun cp_proof thm  = EVERY [Class.intro_classes_tac [],rtac (thm RS cp1) 1];
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   677
          
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   678
            val cp_thm_unit = cp_unit_inst;
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   679
            val cp_thm_prod = cp_inst RS (cp_inst RS cp_prod_inst);
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   680
            val cp_thm_list = cp_inst RS cp_list_inst;
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   681
            val cp_thm_fun  = at_inst RS (pt_inst RS (cp_inst RS (cp_inst RS cp_fun_inst)));
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   682
            val cp_thm_optn = cp_inst RS cp_option_inst;
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   683
            val cp_thm_noptn = cp_inst RS cp_noption_inst;
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   684
        in
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   685
         thy'
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   686
         |> AxClass.prove_arity ("Product_Type.unit",[],[cls_name]) (cp_proof cp_thm_unit)
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   687
         |> AxClass.prove_arity ("*",[[cls_name],[cls_name]],[cls_name]) (cp_proof cp_thm_prod)
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   688
         |> AxClass.prove_arity ("List.list",[[cls_name]],[cls_name]) (cp_proof cp_thm_list)
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19165
diff changeset
   689
         |> AxClass.prove_arity ("fun",[[cls_name],[cls_name]],[cls_name]) (cp_proof cp_thm_fun)
24194
96013f81faef re-eliminated Option.thy
haftmann
parents: 24162
diff changeset
   690
         |> AxClass.prove_arity ("Datatype.option",[[cls_name]],[cls_name]) (cp_proof cp_thm_optn)
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19488
diff changeset
   691
         |> AxClass.prove_arity ("Nominal.noption",[[cls_name]],[cls_name]) (cp_proof cp_thm_noptn)
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   692
        end) ak_names thy) ak_names thy25;
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   693
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   694
     (* show that discrete nominal types are permutation types, finitely     *)
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   695
     (* supported and have the commutation property                          *)
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   696
     (* discrete types have a permutation operation defined as pi o x = x;   *)
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   697
     (* which renders the proofs to be simple "simp_all"-proofs.             *)
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   698
     val thy32 =
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   699
        let
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   700
          fun discrete_pt_inst discrete_ty defn =
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   701
             fold (fn ak_name => fn thy =>
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   702
             let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   703
               val qu_class = Sign.full_bname thy ("pt_"^ak_name);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   704
               val simp_s = HOL_basic_ss addsimps [defn];
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   705
               val proof = EVERY [Class.intro_classes_tac [], REPEAT (asm_simp_tac simp_s 1)];
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   706
             in 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   707
               AxClass.prove_arity (discrete_ty,[],[qu_class]) proof thy
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   708
             end) ak_names;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   709
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   710
          fun discrete_fs_inst discrete_ty defn = 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   711
             fold (fn ak_name => fn thy =>
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   712
             let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   713
               val qu_class = Sign.full_bname thy ("fs_"^ak_name);
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   714
               val supp_def = @{thm "Nominal.supp_def"};
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 21669
diff changeset
   715
               val simp_s = HOL_ss addsimps [supp_def,Collect_const,finite_emptyI,defn];
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   716
               val proof = EVERY [Class.intro_classes_tac [], asm_simp_tac simp_s 1];
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   717
             in 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   718
               AxClass.prove_arity (discrete_ty,[],[qu_class]) proof thy
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   719
             end) ak_names;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   720
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   721
          fun discrete_cp_inst discrete_ty defn = 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   722
             fold (fn ak_name' => (fold (fn ak_name => fn thy =>
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   723
             let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28729
diff changeset
   724
               val qu_class = Sign.full_bname thy ("cp_"^ak_name^"_"^ak_name');
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   725
               val supp_def = @{thm "Nominal.supp_def"};
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   726
               val simp_s = HOL_ss addsimps [defn];
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24194
diff changeset
   727
               val proof = EVERY [Class.intro_classes_tac [], asm_simp_tac simp_s 1];
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   728
             in
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   729
               AxClass.prove_arity (discrete_ty,[],[qu_class]) proof thy
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   730
             end) ak_names)) ak_names;
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   731
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   732
        in
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   733
         thy26
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   734
         |> discrete_pt_inst "nat"  @{thm "perm_nat_def"}
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   735
         |> discrete_fs_inst "nat"  @{thm "perm_nat_def"}
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   736
         |> discrete_cp_inst "nat"  @{thm "perm_nat_def"}
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   737
         |> discrete_pt_inst "bool" @{thm "perm_bool"}
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   738
         |> discrete_fs_inst "bool" @{thm "perm_bool"}
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   739
         |> discrete_cp_inst "bool" @{thm "perm_bool"}
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25557
diff changeset
   740
         |> discrete_pt_inst @{type_name "Int.int"} @{thm "perm_int_def"}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25557
diff changeset
   741
         |> discrete_fs_inst @{type_name "Int.int"} @{thm "perm_int_def"}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25557
diff changeset
   742
         |> discrete_cp_inst @{type_name "Int.int"} @{thm "perm_int_def"}
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   743
         |> discrete_pt_inst "List.char" @{thm "perm_char_def"}
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   744
         |> discrete_fs_inst "List.char" @{thm "perm_char_def"}
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   745
         |> discrete_cp_inst "List.char" @{thm "perm_char_def"}
18432
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   746
        end;
0b596274ba4f more cleaning up - this time of the cp-instance
urbanc
parents: 18431
diff changeset
   747
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   748
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   749
       (* abbreviations for some lemmas *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   750
       (*===============================*)
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   751
       val abs_fun_pi          = @{thm "Nominal.abs_fun_pi"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   752
       val abs_fun_pi_ineq     = @{thm "Nominal.abs_fun_pi_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   753
       val abs_fun_eq          = @{thm "Nominal.abs_fun_eq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   754
       val abs_fun_eq'         = @{thm "Nominal.abs_fun_eq'"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   755
       val abs_fun_fresh       = @{thm "Nominal.abs_fun_fresh"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   756
       val abs_fun_fresh'      = @{thm "Nominal.abs_fun_fresh'"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   757
       val dj_perm_forget      = @{thm "Nominal.dj_perm_forget"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   758
       val dj_pp_forget        = @{thm "Nominal.dj_perm_perm_forget"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   759
       val fresh_iff           = @{thm "Nominal.fresh_abs_fun_iff"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   760
       val fresh_iff_ineq      = @{thm "Nominal.fresh_abs_fun_iff_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   761
       val abs_fun_supp        = @{thm "Nominal.abs_fun_supp"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   762
       val abs_fun_supp_ineq   = @{thm "Nominal.abs_fun_supp_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   763
       val pt_swap_bij         = @{thm "Nominal.pt_swap_bij"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   764
       val pt_swap_bij'        = @{thm "Nominal.pt_swap_bij'"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   765
       val pt_fresh_fresh      = @{thm "Nominal.pt_fresh_fresh"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   766
       val pt_bij              = @{thm "Nominal.pt_bij"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   767
       val pt_perm_compose     = @{thm "Nominal.pt_perm_compose"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   768
       val pt_perm_compose'    = @{thm "Nominal.pt_perm_compose'"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   769
       val perm_app            = @{thm "Nominal.pt_fun_app_eq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   770
       val at_fresh            = @{thm "Nominal.at_fresh"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   771
       val at_fresh_ineq       = @{thm "Nominal.at_fresh_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   772
       val at_calc             = @{thms "Nominal.at_calc"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   773
       val at_swap_simps       = @{thms "Nominal.at_swap_simps"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   774
       val at_supp             = @{thm "Nominal.at_supp"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   775
       val dj_supp             = @{thm "Nominal.dj_supp"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   776
       val fresh_left_ineq     = @{thm "Nominal.pt_fresh_left_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   777
       val fresh_left          = @{thm "Nominal.pt_fresh_left"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   778
       val fresh_right_ineq    = @{thm "Nominal.pt_fresh_right_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   779
       val fresh_right         = @{thm "Nominal.pt_fresh_right"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   780
       val fresh_bij_ineq      = @{thm "Nominal.pt_fresh_bij_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   781
       val fresh_bij           = @{thm "Nominal.pt_fresh_bij"};
26773
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   782
       val fresh_star_bij_ineq = @{thms "Nominal.pt_fresh_star_bij_ineq"};
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   783
       val fresh_star_bij      = @{thms "Nominal.pt_fresh_star_bij"};
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   784
       val fresh_eqvt          = @{thm "Nominal.pt_fresh_eqvt"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   785
       val fresh_eqvt_ineq     = @{thm "Nominal.pt_fresh_eqvt_ineq"};
30086
2023fb9fbf31 Added equivariance lemmas for fresh_star.
berghofe
parents: 29585
diff changeset
   786
       val fresh_star_eqvt     = @{thms "Nominal.pt_fresh_star_eqvt"};
2023fb9fbf31 Added equivariance lemmas for fresh_star.
berghofe
parents: 29585
diff changeset
   787
       val fresh_star_eqvt_ineq= @{thms "Nominal.pt_fresh_star_eqvt_ineq"};
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   788
       val set_diff_eqvt       = @{thm "Nominal.pt_set_diff_eqvt"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   789
       val in_eqvt             = @{thm "Nominal.pt_in_eqvt"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   790
       val eq_eqvt             = @{thm "Nominal.pt_eq_eqvt"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   791
       val all_eqvt            = @{thm "Nominal.pt_all_eqvt"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   792
       val ex_eqvt             = @{thm "Nominal.pt_ex_eqvt"};
28011
90074908db16 added equivariance lemmas for ex1 and the
urbanc
parents: 27691
diff changeset
   793
       val ex1_eqvt            = @{thm "Nominal.pt_ex1_eqvt"};
90074908db16 added equivariance lemmas for ex1 and the
urbanc
parents: 27691
diff changeset
   794
       val the_eqvt            = @{thm "Nominal.pt_the_eqvt"};
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   795
       val pt_pi_rev           = @{thm "Nominal.pt_pi_rev"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   796
       val pt_rev_pi           = @{thm "Nominal.pt_rev_pi"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   797
       val at_exists_fresh     = @{thm "Nominal.at_exists_fresh"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   798
       val at_exists_fresh'    = @{thm "Nominal.at_exists_fresh'"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   799
       val fresh_perm_app_ineq = @{thm "Nominal.pt_fresh_perm_app_ineq"};
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   800
       val fresh_perm_app      = @{thm "Nominal.pt_fresh_perm_app"};    
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   801
       val fresh_aux           = @{thm "Nominal.pt_fresh_aux"};  
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   802
       val pt_perm_supp_ineq   = @{thm "Nominal.pt_perm_supp_ineq"};
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23158
diff changeset
   803
       val pt_perm_supp        = @{thm "Nominal.pt_perm_supp"};
26090
ec111fa4f8c5 added eqvt-flag to subseteq-lemma
urbanc
parents: 25919
diff changeset
   804
       val subseteq_eqvt       = @{thm "Nominal.pt_subseteq_eqvt"};
29128
4c243e6a71b2 changed the names of insert_eqvt and set_eqvt so that it is clear that they have preconditions
Christian Urban <urbanc@in.tum.de>
parents: 28965
diff changeset
   805
       val insert_eqvt         = @{thm "Nominal.pt_insert_eqvt"};
4c243e6a71b2 changed the names of insert_eqvt and set_eqvt so that it is clear that they have preconditions
Christian Urban <urbanc@in.tum.de>
parents: 28965
diff changeset
   806
       val set_eqvt            = @{thm "Nominal.pt_set_eqvt"};
26820
2909150bd614 - Deleted arity proofs for set
berghofe
parents: 26773
diff changeset
   807
       val perm_set_eq         = @{thm "Nominal.perm_set_eq"};
22786
d8d7a53ffb63 fixes last commit
narboux
parents: 22785
diff changeset
   808
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   809
       (* 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
   810
       (* 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
   811
       (* collection of theorems) instead of thm abs_fun_pi with explicit *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   812
       (* instantiations.                                                 *)
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   813
       val (_, thy33) =
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   814
         let
18651
0cb5a8f501aa added the thms-collection "pt_id" (collection of all pt_<ak>1 lemmas)
urbanc
parents: 18626
diff changeset
   815
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   816
             (* 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
   817
             (* 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
   818
             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
   819
26773
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   820
	     (* takes a theorem thm and a list of theorems [(t1,m1),..,(tn,mn)]  *)
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   821
             (* produces a list of theorems of the form [[t1,m1] MRS thm,..,[tn,mn] MRS thm] *) 
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   822
             fun instRR thm thms = map (fn (ti,mi) => [ti,mi] MRS thm) thms;
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   823
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   824
             (* takes two theorem lists (hopefully of the same length ;o)                *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   825
             (* produces a list of theorems of the form                                  *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   826
             (* [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
   827
             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
   828
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   829
             (* takes a theorem list of the form [l1,...,ln]              *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   830
             (* and a list of theorem lists of the form                   *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   831
             (* [[h11,...,h1m],....,[hk1,....,hkm]                        *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   832
             (* produces the list of theorem lists                        *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   833
             (* [[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
   834
             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
   835
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   836
             (* 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
   837
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
   838
             
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   839
             (* list of all at_inst-theorems *)
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   840
             val ats = map (fn ak => PureThy.get_thm thy32 ("at_"^ak^"_inst")) ak_names
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   841
             (* list of all pt_inst-theorems *)
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   842
             val pts = map (fn ak => PureThy.get_thm thy32 ("pt_"^ak^"_inst")) ak_names
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   843
             (* 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
   844
             val cps = 
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   845
                 let fun cps_fun ak1 ak2 =  PureThy.get_thm thy32 ("cp_"^ak1^"_"^ak2^"_inst")
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   846
                 in map (fn aki => (map (cps_fun aki) ak_names)) ak_names end; 
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   847
             (* list of all cp_inst-theorems that have different atom types *)
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   848
             val cps' = 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   849
                let fun cps'_fun ak1 ak2 = 
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   850
                if ak1=ak2 then NONE else SOME (PureThy.get_thm thy32 ("cp_"^ak1^"_"^ak2^"_inst"))
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   851
                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
   852
             (* list of all dj_inst-theorems *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   853
             val djs = 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   854
               let fun djs_fun ak1 ak2 = 
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   855
                     if ak1=ak2 then NONE else SOME(PureThy.get_thm thy32 ("dj_"^ak2^"_"^ak1))
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   856
               in map_filter I (map_product djs_fun ak_names ak_names) end;
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   857
             (* list of all fs_inst-theorems *)
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   858
             val fss = map (fn ak => PureThy.get_thm thy32 ("fs_"^ak^"_inst")) ak_names
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
   859
             (* list of all at_inst-theorems *)
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   860
             val fs_axs = map (fn ak => PureThy.get_thm thy32 ("fs_"^ak^"1")) ak_names
20097
be2d96bbf39c replaced mk_listT by HOLogic.listT; trivial whitespace/comment changes
webertj
parents: 20046
diff changeset
   861
25538
58e8ba3b792b map_product and fold_product
haftmann
parents: 24867
diff changeset
   862
             fun inst_pt thms = maps (fn ti => instR ti pts) thms;
58e8ba3b792b map_product and fold_product
haftmann
parents: 24867
diff changeset
   863
             fun inst_at thms = maps (fn ti => instR ti ats) thms;
58e8ba3b792b map_product and fold_product
haftmann
parents: 24867
diff changeset
   864
             fun inst_fs thms = maps (fn ti => instR ti fss) thms;
58e8ba3b792b map_product and fold_product
haftmann
parents: 24867
diff changeset
   865
             fun inst_cp thms cps = flat (inst_mult thms cps);
26773
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   866
             fun inst_pt_at thms = maps (fn ti => instRR ti (pts ~~ ats)) thms;
25538
58e8ba3b792b map_product and fold_product
haftmann
parents: 24867
diff changeset
   867
             fun inst_dj thms = maps (fn ti => instR ti djs) thms;
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   868
             fun inst_pt_pt_at_cp thms = inst_cp (inst_zip ats (inst_zip pts (inst_pt thms))) cps;
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   869
             fun inst_pt_at_fs thms = inst_zip (inst_fs [fs1]) (inst_zip ats (inst_pt thms));
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   870
             fun inst_pt_pt_at_cp thms =
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   871
                 let val i_pt_pt_at = inst_zip ats (inst_zip pts (inst_pt thms));
18436
9649e24bc10e added thms to perm_compose (so far only composition
urbanc
parents: 18435
diff changeset
   872
                     val i_pt_pt_at_cp = inst_cp i_pt_pt_at cps';
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   873
                 in i_pt_pt_at_cp end;
18396
b3e7da94b51f added a fresh_left lemma that contains all instantiation
urbanc
parents: 18381
diff changeset
   874
             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
   875
           in
18262
d0fcd4d684f5 finished cleaning up the parts that collect
urbanc
parents: 18100
diff changeset
   876
            thy32 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   877
            |>   add_thmss_string [(("alpha", inst_pt_at [abs_fun_eq]),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   878
            ||>> add_thmss_string [(("alpha'", inst_pt_at [abs_fun_eq']),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   879
            ||>> add_thmss_string [(("alpha_fresh", inst_pt_at [abs_fun_fresh]),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   880
            ||>> add_thmss_string [(("alpha_fresh'", inst_pt_at [abs_fun_fresh']),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   881
            ||>> add_thmss_string [(("perm_swap", inst_pt_at [pt_swap_bij] @ inst_pt_at [pt_swap_bij']),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   882
            ||>> add_thmss_string 
27399
1fb3d1219c12 added facts to lemma swap_simps and tuned lemma calc_atms
urbanc
parents: 27216
diff changeset
   883
	      let val thms1 = inst_at at_swap_simps
1fb3d1219c12 added facts to lemma swap_simps and tuned lemma calc_atms
urbanc
parents: 27216
diff changeset
   884
                  and thms2 = inst_dj [dj_perm_forget]
1fb3d1219c12 added facts to lemma swap_simps and tuned lemma calc_atms
urbanc
parents: 27216
diff changeset
   885
              in [(("swap_simps", thms1 @ thms2),[])] end 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   886
            ||>> add_thmss_string 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   887
              let val thms1 = inst_pt_at [pt_pi_rev];
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   888
                  val thms2 = inst_pt_at [pt_rev_pi];
19139
af69e41eab5d improved the decision-procedure for permutations;
urbanc
parents: 19134
diff changeset
   889
              in [(("perm_pi_simp",thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   890
            ||>> add_thmss_string [(("perm_fresh_fresh", inst_pt_at [pt_fresh_fresh]),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   891
            ||>> add_thmss_string [(("perm_bij", inst_pt_at [pt_bij]),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   892
            ||>> add_thmss_string 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   893
              let val thms1 = inst_pt_at [pt_perm_compose];
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   894
                  val thms2 = instR cp1 (Library.flat cps');
18436
9649e24bc10e added thms to perm_compose (so far only composition
urbanc
parents: 18435
diff changeset
   895
              in [(("perm_compose",thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   896
            ||>> add_thmss_string [(("perm_compose'",inst_pt_at [pt_perm_compose']),[])] 
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   897
            ||>> add_thmss_string [(("perm_app", inst_pt_at [perm_app]),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   898
            ||>> add_thmss_string [(("supp_atm", (inst_at [at_supp]) @ (inst_dj [dj_supp])),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   899
            ||>> add_thmss_string [(("exists_fresh", inst_at [at_exists_fresh]),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   900
            ||>> add_thmss_string [(("exists_fresh'", inst_at [at_exists_fresh']),[])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   901
            ||>> add_thmss_string
24569
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
   902
              let
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
   903
                val thms1 = inst_pt_at [all_eqvt];
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
   904
                val thms2 = map (fold_rule [inductive_forall_def]) thms1
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
   905
              in
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
   906
                [(("all_eqvt", thms1 @ thms2), [NominalThmDecls.eqvt_force_add])]
c80e1871098b Added equivariance lemmas for induct_forall.
berghofe
parents: 24527
diff changeset
   907
              end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   908
            ||>> add_thmss_string [(("ex_eqvt", inst_pt_at [ex_eqvt]),[NominalThmDecls.eqvt_force_add])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   909
            ||>> add_thmss_string [(("ex1_eqvt", inst_pt_at [ex1_eqvt]),[NominalThmDecls.eqvt_force_add])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   910
            ||>> add_thmss_string [(("the_eqvt", inst_pt_at [the_eqvt]),[NominalThmDecls.eqvt_force_add])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   911
            ||>> add_thmss_string 
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   912
              let val thms1 = inst_at [at_fresh]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   913
                  val thms2 = inst_dj [at_fresh_ineq]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   914
              in [(("fresh_atm", thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   915
            ||>> add_thmss_string
27399
1fb3d1219c12 added facts to lemma swap_simps and tuned lemma calc_atms
urbanc
parents: 27216
diff changeset
   916
              let val thms1 = inst_at at_calc
1fb3d1219c12 added facts to lemma swap_simps and tuned lemma calc_atms
urbanc
parents: 27216
diff changeset
   917
                  and thms2 = inst_dj [dj_perm_forget]
1fb3d1219c12 added facts to lemma swap_simps and tuned lemma calc_atms
urbanc
parents: 27216
diff changeset
   918
              in [(("calc_atm", thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   919
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   920
              let val thms1 = inst_pt_at [abs_fun_pi]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   921
                  and thms2 = inst_pt_pt_at_cp [abs_fun_pi_ineq]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   922
              in [(("abs_perm", thms1 @ thms2),[NominalThmDecls.eqvt_add])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   923
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   924
              let val thms1 = inst_dj [dj_perm_forget]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   925
                  and thms2 = inst_dj [dj_pp_forget]
18279
f7a18e2b10fc made some of the theorem look-ups static (by using
urbanc
parents: 18262
diff changeset
   926
              in [(("perm_dj", thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   927
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   928
              let val thms1 = inst_pt_at_fs [fresh_iff]
18626
b6596f579e40 added some lemmas to the collection "abs_fresh"
urbanc
parents: 18600
diff changeset
   929
                  and thms2 = inst_pt_at [fresh_iff]
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   930
                  and thms3 = inst_pt_pt_at_cp_dj [fresh_iff_ineq]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   931
            in [(("abs_fresh", thms1 @ thms2 @ thms3),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   932
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   933
              let val thms1 = inst_pt_at [abs_fun_supp]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   934
                  and thms2 = inst_pt_at_fs [abs_fun_supp]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   935
                  and thms3 = inst_pt_pt_at_cp_dj [abs_fun_supp_ineq]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   936
              in [(("abs_supp", thms1 @ thms2 @ thms3),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   937
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   938
              let val thms1 = inst_pt_at [fresh_left]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   939
                  and thms2 = inst_pt_pt_at_cp [fresh_left_ineq]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   940
              in [(("fresh_left", thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   941
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   942
              let val thms1 = inst_pt_at [fresh_right]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   943
                  and thms2 = inst_pt_pt_at_cp [fresh_right_ineq]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   944
              in [(("fresh_right", thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   945
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   946
              let val thms1 = inst_pt_at [fresh_bij]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   947
                  and thms2 = inst_pt_pt_at_cp [fresh_bij_ineq]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   948
              in [(("fresh_bij", thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   949
            ||>> add_thmss_string
26773
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   950
              let val thms1 = inst_pt_at fresh_star_bij
30086
2023fb9fbf31 Added equivariance lemmas for fresh_star.
berghofe
parents: 29585
diff changeset
   951
                  and thms2 = maps (fn ti => inst_pt_pt_at_cp [ti]) fresh_star_bij_ineq
26773
ba8b1a8a12a7 added more infrastructure for fresh_star
urbanc
parents: 26484
diff changeset
   952
              in [(("fresh_star_bij", thms1 @ thms2),[])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   953
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   954
              let val thms1 = inst_pt_at [fresh_eqvt]
22535
cbee450f88a6 added extended the lemma for equivariance of freshness
urbanc
parents: 22418
diff changeset
   955
                  and thms2 = inst_pt_pt_at_cp_dj [fresh_eqvt_ineq]
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   956
              in [(("fresh_eqvt", thms1 @ thms2),[NominalThmDecls.eqvt_add])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   957
            ||>> add_thmss_string
30086
2023fb9fbf31 Added equivariance lemmas for fresh_star.
berghofe
parents: 29585
diff changeset
   958
              let val thms1 = inst_pt_at fresh_star_eqvt
2023fb9fbf31 Added equivariance lemmas for fresh_star.
berghofe
parents: 29585
diff changeset
   959
                  and thms2 = maps (fn ti => inst_pt_pt_at_cp_dj [ti]) fresh_star_eqvt_ineq
2023fb9fbf31 Added equivariance lemmas for fresh_star.
berghofe
parents: 29585
diff changeset
   960
              in [(("fresh_star_eqvt", thms1 @ thms2),[NominalThmDecls.eqvt_add])] end
2023fb9fbf31 Added equivariance lemmas for fresh_star.
berghofe
parents: 29585
diff changeset
   961
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   962
              let val thms1 = inst_pt_at [in_eqvt]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   963
              in [(("in_eqvt", thms1),[NominalThmDecls.eqvt_add])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   964
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   965
              let val thms1 = inst_pt_at [eq_eqvt]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   966
              in [(("eq_eqvt", thms1),[NominalThmDecls.eqvt_add])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   967
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   968
              let val thms1 = inst_pt_at [set_diff_eqvt]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   969
              in [(("set_diff_eqvt", thms1),[NominalThmDecls.eqvt_add])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   970
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   971
              let val thms1 = inst_pt_at [subseteq_eqvt]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   972
              in [(("subseteq_eqvt", thms1),[NominalThmDecls.eqvt_add])] end
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   973
            ||>> add_thmss_string [(("insert_eqvt", inst_pt_at [insert_eqvt]), [NominalThmDecls.eqvt_add])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   974
            ||>> add_thmss_string [(("set_eqvt", inst_pt_at [set_eqvt]), [NominalThmDecls.eqvt_add])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   975
            ||>> add_thmss_string [(("perm_set_eq", inst_pt_at [perm_set_eq]), [])]
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   976
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   977
              let val thms1 = inst_pt_at [fresh_aux]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   978
                  and thms2 = inst_pt_pt_at_cp_dj [fresh_perm_app_ineq] 
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   979
              in  [(("fresh_aux", thms1 @ thms2),[])] end  
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   980
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   981
              let val thms1 = inst_pt_at [fresh_perm_app]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   982
                  and thms2 = inst_pt_pt_at_cp_dj [fresh_perm_app_ineq] 
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   983
              in  [(("fresh_perm_app", thms1 @ thms2),[])] end 
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   984
            ||>> add_thmss_string
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   985
              let val thms1 = inst_pt_at [pt_perm_supp]
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   986
                  and thms2 = inst_pt_pt_at_cp [pt_perm_supp_ineq] 
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   987
              in  [(("supp_eqvt", thms1 @ thms2),[NominalThmDecls.eqvt_add])] end  
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29128
diff changeset
   988
            ||>> add_thmss_string [(("fin_supp",fs_axs),[])]
26337
44473c957672 auxiliary dynamic_thm(s) for fact lookup;
wenzelm
parents: 26090
diff changeset
   989
           end;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
   990
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
   991
    in 
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
   992
      NominalData.map (fold Symtab.update (full_ak_names ~~ map make_atom_info
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
   993
        (pt_ax_classes ~~
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 22274
diff changeset
   994
         fs_ax_classes ~~
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
   995
         map (fn cls => Symtab.make (full_ak_names ~~ cls)) cp_ax_classes ~~
28372
291e7a158e95 Added some more theorems to NominalData.
berghofe
parents: 28083
diff changeset
   996
         prm_cons_thms ~~ prm_inst_thms ~~
28729
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
   997
         map (fn ths => Symtab.make (full_ak_names ~~ ths)) cp_thms ~~
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
   998
         map (fn thss => Symtab.make
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
   999
           (List.mapPartial (fn (s, [th]) => SOME (s, th) | _ => NONE)
cfd169f1dae2 Some more functions for accessing information about atoms.
berghofe
parents: 28372
diff changeset
  1000
              (full_ak_names ~~ thss))) dj_thms))) thy33
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1001
    end;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1002
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1003
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1004
(* syntax und parsing *)
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1005
structure P = OuterParse and K = OuterKeyword;
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1006
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24712
diff changeset
  1007
val _ =
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1008
  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
  1009
    (Scan.repeat1 P.name >> (Toplevel.theory o create_nom_typedecls));
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1010
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents:
diff changeset
  1011
end;