Nominal/Nominal2.thy
author Christian Urban <urbanc@in.tum.de>
Sun, 14 Nov 2010 16:34:47 +0000
changeset 2568 8193bbaa07fe
parent 2566 a59d8e1e3a17
child 2571 f0252365936c
permissions -rw-r--r--
merged Nominal-General directory into Nominal; renamed Abs.thy to Nominal2_Abs.thy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2454
9ffee4eb1ae1 renamed NewParser to Nominal2
Christian Urban <urbanc@in.tum.de>
parents: 2451
diff changeset
     1
theory Nominal2
2435
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
     2
imports 
2568
8193bbaa07fe merged Nominal-General directory into Nominal; renamed Abs.thy to Nominal2_Abs.thy
Christian Urban <urbanc@in.tum.de>
parents: 2566
diff changeset
     3
  Nominal2_Base Nominal2_Eqvt Nominal2_Abs
2435
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
     4
uses ("nominal_dt_rawperm.ML")
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
     5
     ("nominal_dt_rawfuns.ML")
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
     6
     ("nominal_dt_alpha.ML")
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
     7
     ("nominal_dt_quot.ML")
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
     8
     ("nominal_dt_supp.ML")
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
begin
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
2435
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    11
use "nominal_dt_rawperm.ML"
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    12
ML {* open Nominal_Dt_RawPerm *}
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    13
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    14
use "nominal_dt_rawfuns.ML"
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    15
ML {* open Nominal_Dt_RawFuns *}
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    16
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    17
use "nominal_dt_alpha.ML"
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    18
ML {* open Nominal_Dt_Alpha *}
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    19
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    20
use "nominal_dt_quot.ML"
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    21
ML {* open Nominal_Dt_Quot *}
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
    22
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
    23
use "nominal_dt_supp.ML"
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
    24
ML {* open Nominal_Dt_Supp *}
2288
3b83960f9544 new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents: 2146
diff changeset
    25
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
section{* Interface for nominal_datatype *}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
    28
ML {*
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
    29
(* attributes *)
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
    30
val eqvt_attr = Attrib.internal (K Nominal_ThmDecls.eqvt_add)
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
    31
val rsp_attr = Attrib.internal (K Quotient_Info.rsp_rules_add)
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
    32
val simp_attr = Attrib.internal (K Simplifier.simp_add)
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
    33
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
    34
*}
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
    35
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
    36
ML {* print_depth 50 *}
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
ML {*
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
fun get_cnstrs dts =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
  map (fn (_, _, _, constrs) => constrs) dts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
fun get_typed_cnstrs dts =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
  flat (map (fn (_, bn, _, constrs) => 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
   (map (fn (bn', _, _) => (Binding.name_of bn, Binding.name_of bn')) constrs)) dts)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
fun get_cnstr_strs dts =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
  map (fn (bn, _, _) => Binding.name_of bn) (flat (get_cnstrs dts))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
fun get_bn_fun_strs bn_funs =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    50
  map (fn (bn_fun, _, _) => Binding.name_of bn_fun) bn_funs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    51
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    52
2106
409ecb7284dd properly exported defined bn-functions
Christian Urban <urbanc@in.tum.de>
parents: 2105
diff changeset
    53
1944
Christian Urban <urbanc@in.tum.de>
parents: 1943
diff changeset
    54
text {* Infrastructure for adding "_raw" to types and terms *}
Christian Urban <urbanc@in.tum.de>
parents: 1943
diff changeset
    55
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    56
ML {*
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
fun add_raw s = s ^ "_raw"
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
fun add_raws ss = map add_raw ss
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
fun raw_bind bn = Binding.suffix_name "_raw" bn
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
fun replace_str ss s = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
  case (AList.lookup (op=) ss s) of 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
     SOME s' => s'
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    64
   | NONE => s
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    65
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    66
fun replace_typ ty_ss (Type (a, Ts)) = Type (replace_str ty_ss a, map (replace_typ ty_ss) Ts)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
  | replace_typ ty_ss T = T  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    69
fun raw_dts ty_ss dts =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    70
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    71
  fun raw_dts_aux1 (bind, tys, mx) =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    72
    (raw_bind bind, map (replace_typ ty_ss) tys, mx)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    73
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
  fun raw_dts_aux2 (ty_args, bind, mx, constrs) =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    75
    (ty_args, raw_bind bind, mx, map raw_dts_aux1 constrs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    76
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    77
  map raw_dts_aux2 dts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    78
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    79
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    80
fun replace_aterm trm_ss (Const (a, T)) = Const (replace_str trm_ss a, T)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    81
  | replace_aterm trm_ss (Free (a, T)) = Free (replace_str trm_ss a, T)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    82
  | replace_aterm trm_ss trm = trm
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    83
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    84
fun replace_term trm_ss ty_ss trm =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    85
  trm |> Term.map_aterms (replace_aterm trm_ss) |> map_types (replace_typ ty_ss) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    86
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    87
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    88
ML {*
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    89
fun rawify_dts dt_names dts dts_env =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    90
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    91
  val raw_dts = raw_dts dts_env dts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    92
  val raw_dt_names = add_raws dt_names
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    93
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    94
  (raw_dt_names, raw_dts)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    95
end 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    96
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    97
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    98
ML {*
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    99
fun rawify_bn_funs dts_env cnstrs_env bn_fun_env bn_funs bn_eqs =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   100
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   101
  val bn_funs' = map (fn (bn, ty, mx) => 
2304
8a98171ba1fc all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
   102
    (raw_bind bn, SOME (replace_typ dts_env ty), mx)) bn_funs
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   103
  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   104
  val bn_eqs' = map (fn (attr, trm) => 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   105
    (attr, replace_term (cnstrs_env @ bn_fun_env) dts_env trm)) bn_eqs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   106
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   107
  (bn_funs', bn_eqs') 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   108
end 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   109
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   110
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   111
ML {* 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   112
fun rawify_bclauses dts_env cnstrs_env bn_fun_env bclauses =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   113
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   114
  fun rawify_bnds bnds = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   115
    map (apfst (Option.map (replace_term (cnstrs_env @ bn_fun_env) dts_env))) bnds
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
2288
3b83960f9544 new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents: 2146
diff changeset
   117
  fun rawify_bclause (BC (mode, bnds, bdys)) = BC (mode, rawify_bnds bnds, bdys)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   118
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   119
  map (map (map rawify_bclause)) bclauses
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   120
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   121
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   122
2143
871d8a5e0c67 somewhat simplified the main parsing function; failed to move a Note-statement to define_raw_perms
Christian Urban <urbanc@in.tum.de>
parents: 2142
diff changeset
   123
(* strip_bn_fun takes a rhs of a bn function: this can only contain unions or
871d8a5e0c67 somewhat simplified the main parsing function; failed to move a Note-statement to define_raw_perms
Christian Urban <urbanc@in.tum.de>
parents: 2142
diff changeset
   124
   appends of elements; in case of recursive calls it retruns also the applied
871d8a5e0c67 somewhat simplified the main parsing function; failed to move a Note-statement to define_raw_perms
Christian Urban <urbanc@in.tum.de>
parents: 2142
diff changeset
   125
   bn function *)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   126
ML {*
2294
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   127
fun strip_bn_fun lthy args t =
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   128
let 
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   129
  fun aux t =
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   130
    case t of
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   131
      Const (@{const_name sup}, _) $ l $ r => aux l @ aux r
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   132
    | Const (@{const_name append}, _) $ l $ r => aux l @ aux r
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   133
    | Const (@{const_name insert}, _) $ (Const (@{const_name atom}, _) $ (x as Var _)) $ y =>
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   134
        (find_index (equal x) args, NONE) :: aux y
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   135
    | Const (@{const_name Cons}, _) $ (Const (@{const_name atom}, _) $ (x as Var _)) $ y =>
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   136
        (find_index (equal x) args, NONE) :: aux y
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   137
    | Const (@{const_name bot}, _) => []
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   138
    | Const (@{const_name Nil}, _) => []
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   139
    | (f as Const _) $ (x as Var _) => [(find_index (equal x) args, SOME f)]
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   140
    | _ => error ("Unsupported binding function: " ^ (Syntax.string_of_term lthy t))
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   141
in
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   142
  aux t
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   143
end  
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   144
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   145
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   146
ML {*
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   147
(** definition of the raw binding functions **)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   148
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   149
(* TODO: needs cleaning *)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   150
fun find [] _ = error ("cannot find element")
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   151
  | find ((x, z)::xs) y = if (Long_Name.base_name x) = y then z else find xs y
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   152
2295
8aff3f3ce47f started to work on alpha
Christian Urban <urbanc@in.tum.de>
parents: 2294
diff changeset
   153
fun prep_bn_info lthy dt_names dts eqs = 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   154
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   155
  fun aux eq = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   156
  let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   157
    val (lhs, rhs) = eq
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   158
      |> HOLogic.dest_Trueprop
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   159
      |> HOLogic.dest_eq
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   160
    val (bn_fun, [cnstr]) = strip_comb lhs
2294
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   161
    val (_, ty) = dest_Const bn_fun
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   162
    val (ty_name, _) = dest_Type (domain_type ty)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   163
    val dt_index = find_index (fn x => x = ty_name) dt_names
2294
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   164
    val (cnstr_head, cnstr_args) = strip_comb cnstr    
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   165
    val rhs_elements = strip_bn_fun lthy cnstr_args rhs
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   166
  in
2308
387fcbd33820 fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents: 2306
diff changeset
   167
    (dt_index, (bn_fun, (cnstr_head, rhs_elements)))
2122
24ca435ead14 added term4 back to the examples
Christian Urban <urbanc@in.tum.de>
parents: 2119
diff changeset
   168
  end
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   169
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   170
  fun order dts i ts = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   171
  let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   172
    val dt = nth dts i
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   173
    val cts = map (fn (x, _, _) => Binding.name_of x) ((fn (_, _, _, x) => x) dt)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   174
    val ts' = map (fn (x, y) => (fst (dest_Const x), y)) ts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   175
  in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   176
    map (find ts') cts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   177
  end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   178
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   179
  val unordered = AList.group (op=) (map aux eqs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   180
  val unordered' = map (fn (x, y) =>  (x, AList.group (op=) y)) unordered
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   181
  val ordered = map (fn (x, y) => (x, map (fn (v, z) => (v, order dts x z)) y)) unordered' 
2118
0e52851acac4 moved the data-transformation into the parser
Christian Urban <urbanc@in.tum.de>
parents: 2107
diff changeset
   182
  val ordered' = flat (map (fn (ith, l) => map (fn (bn, data) => (bn, ith, data)) l) ordered)
2122
24ca435ead14 added term4 back to the examples
Christian Urban <urbanc@in.tum.de>
parents: 2119
diff changeset
   183
2288
3b83960f9544 new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents: 2146
diff changeset
   184
  (*val _ = tracing ("eqs\n" ^ cat_lines (map (Syntax.string_of_term lthy) eqs))*)
2142
c39d4fe31100 moved the exporting part into the parser (this is still a hack); re-added CoreHaskell again to the examples - there seems to be a problem with the variable name pat
Christian Urban <urbanc@in.tum.de>
parents: 2125
diff changeset
   185
  (*val _ = tracing ("map eqs\n" ^ @{make_string} (map aux2 eqs))*)
2288
3b83960f9544 new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents: 2146
diff changeset
   186
  (*val _ = tracing ("ordered'\n" ^ @{make_string} ordered')*)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   187
in
2125
60ee289a8c63 made out of STEPS a configuration value so that it can be set individually in each file
Christian Urban <urbanc@in.tum.de>
parents: 2122
diff changeset
   188
  ordered'
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   189
end
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   190
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   191
fun define_raw_bns dt_names dts raw_bn_funs raw_bn_eqs constr_thms size_thms lthy =
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   192
  if null raw_bn_funs 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   193
  then ([], [], [], [], lthy)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   194
  else 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   195
    let
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   196
      val (_, lthy1) = Function.add_function raw_bn_funs raw_bn_eqs
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   197
        Function_Common.default_config (pat_completeness_simp constr_thms) lthy
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   198
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   199
      val (info, lthy2) = prove_termination size_thms (Local_Theory.restore lthy1)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   200
      val {fs, simps, inducts, ...} = info
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   201
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   202
      val raw_bn_induct = (the inducts)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   203
      val raw_bn_eqs = the simps
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   204
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   205
      val raw_bn_info = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   206
        prep_bn_info lthy dt_names dts (map prop_of raw_bn_eqs)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   207
    in
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   208
      (fs, raw_bn_eqs, raw_bn_info, raw_bn_induct, lthy2)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   209
    end
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   210
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   211
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   212
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   213
ML {*
2410
2bbdb9c427b5 improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
parents: 2409
diff changeset
   214
fun define_raw_dts dts bn_funs bn_eqs binds lthy =
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   215
let
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   216
  val thy = Local_Theory.exit_global lthy
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   217
  val thy_name = Context.theory_name thy
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   218
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   219
  val dt_names = map (fn (_, s, _, _) => Binding.name_of s) dts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   220
  val dt_full_names = map (Long_Name.qualify thy_name) dt_names 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   221
  val dt_full_names' = add_raws dt_full_names
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   222
  val dts_env = dt_full_names ~~ dt_full_names'
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   223
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   224
  val cnstrs = get_cnstr_strs dts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   225
  val cnstrs_ty = get_typed_cnstrs dts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   226
  val cnstrs_full_names = map (Long_Name.qualify thy_name) cnstrs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   227
  val cnstrs_full_names' = map (fn (x, y) => Long_Name.qualify thy_name 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   228
    (Long_Name.qualify (add_raw x) (add_raw y))) cnstrs_ty
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   229
  val cnstrs_env = cnstrs_full_names ~~ cnstrs_full_names'
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   230
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   231
  val bn_fun_strs = get_bn_fun_strs bn_funs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   232
  val bn_fun_strs' = add_raws bn_fun_strs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   233
  val bn_fun_env = bn_fun_strs ~~ bn_fun_strs'
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   234
  val bn_fun_full_env = map (pairself (Long_Name.qualify thy_name)) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   235
    (bn_fun_strs ~~ bn_fun_strs')
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   236
  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   237
  val (raw_dt_names, raw_dts) = rawify_dts dt_names dts dts_env
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   238
  val (raw_bn_funs, raw_bn_eqs) = rawify_bn_funs dts_env cnstrs_env bn_fun_env bn_funs bn_eqs 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   239
  val raw_bclauses = rawify_bclauses dts_env cnstrs_env bn_fun_full_env binds 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   240
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   241
  val (raw_dt_full_names, thy1) = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   242
    Datatype.add_datatype Datatype.default_config raw_dt_names raw_dts thy
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   243
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   244
  val lthy1 = Named_Target.theory_init thy1
2304
8a98171ba1fc all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
   245
in
2337
b151399bd2c3 fixed according to changes in quotient
Christian Urban <urbanc@in.tum.de>
parents: 2336
diff changeset
   246
  (raw_dt_full_names, raw_dts, raw_bclauses, raw_bn_funs, raw_bn_eqs, lthy1)
2304
8a98171ba1fc all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
   247
end
8a98171ba1fc all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
   248
*}
8a98171ba1fc all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
   249
2046
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   250
ML {*
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   251
(* for testing porposes - to exit the procedure early *)
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   252
exception TEST of Proof.context
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   253
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   254
val (STEPS, STEPS_setup) = Attrib.config_int "STEPS" (K 100);
2125
60ee289a8c63 made out of STEPS a configuration value so that it can be set individually in each file
Christian Urban <urbanc@in.tum.de>
parents: 2122
diff changeset
   255
60ee289a8c63 made out of STEPS a configuration value so that it can be set individually in each file
Christian Urban <urbanc@in.tum.de>
parents: 2122
diff changeset
   256
fun get_STEPS ctxt = Config.get ctxt STEPS
2046
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   257
*}
2008
1bddffddc03f attempted to remove dependency on (old) Fv and (old) Parser; lifting still uses Fv.thy; the examples do not work at the moment (with equivp proofs failing)
Christian Urban <urbanc@in.tum.de>
parents: 2007
diff changeset
   258
2475
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   259
2125
60ee289a8c63 made out of STEPS a configuration value so that it can be set individually in each file
Christian Urban <urbanc@in.tum.de>
parents: 2122
diff changeset
   260
setup STEPS_setup
60ee289a8c63 made out of STEPS a configuration value so that it can be set individually in each file
Christian Urban <urbanc@in.tum.de>
parents: 2122
diff changeset
   261
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   262
ML {*
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   263
fun nominal_datatype2 opt_thms_name dts bn_funs bn_eqs bclauses lthy =
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   264
let
2294
72ad4e766acf properly exported bn_descr
Christian Urban <urbanc@in.tum.de>
parents: 2293
diff changeset
   265
  (* definition of the raw datatypes *)
2316
08bbde090a17 also symmetry
Christian Urban <urbanc@in.tum.de>
parents: 2314
diff changeset
   266
  val _ = warning "Definition of raw datatypes";
2337
b151399bd2c3 fixed according to changes in quotient
Christian Urban <urbanc@in.tum.de>
parents: 2336
diff changeset
   267
  val (raw_dt_names, raw_dts, raw_bclauses, raw_bn_funs, raw_bn_eqs, lthy0) =
2308
387fcbd33820 fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents: 2306
diff changeset
   268
    if get_STEPS lthy > 0 
2410
2bbdb9c427b5 improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
parents: 2409
diff changeset
   269
    then define_raw_dts dts bn_funs bn_eqs bclauses lthy
2046
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   270
    else raise TEST lthy
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   271
2304
8a98171ba1fc all raw definitions are defined using function
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
   272
  val dtinfo = Datatype.the_info (ProofContext.theory_of lthy0) (hd raw_dt_names)
2143
871d8a5e0c67 somewhat simplified the main parsing function; failed to move a Note-statement to define_raw_perms
Christian Urban <urbanc@in.tum.de>
parents: 2142
diff changeset
   273
  val {descr, sorts, ...} = dtinfo
2407
49ab06c0ca64 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2406
diff changeset
   274
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   275
  val raw_tys = all_dtyps descr sorts
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   276
  val raw_full_ty_names = map (fst o dest_Type) raw_tys
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   277
  val tvs = hd raw_tys
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   278
    |> snd o dest_Type
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   279
    |> map dest_TFree  
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   280
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   281
  val dtinfos = map (Datatype.the_info (ProofContext.theory_of lthy0)) raw_full_ty_names  
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   282
 
2407
49ab06c0ca64 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2406
diff changeset
   283
  val raw_cns_info = all_dtyp_constrs_types descr sorts
49ab06c0ca64 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2406
diff changeset
   284
  val raw_constrs = flat (map (map (fn (c, _, _, _) => c)) raw_cns_info)
49ab06c0ca64 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2406
diff changeset
   285
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   286
  val raw_inject_thms = flat (map #inject dtinfos)
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   287
  val raw_distinct_thms = flat (map #distinct dtinfos)
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   288
  val raw_induct_thm = #induct dtinfo
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   289
  val raw_induct_thms = #inducts dtinfo
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   290
  val raw_exhaust_thms = map #exhaust dtinfos
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   291
  val raw_size_trms = map size_const raw_tys
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   292
  val raw_size_thms = Size.size_thms (ProofContext.theory_of lthy0) (hd raw_dt_names)
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   293
    |> `(fn thms => (length thms) div 2)
2392
9294d7cec5e2 proved rsp-helper lemmas of size functions
Christian Urban <urbanc@in.tum.de>
parents: 2389
diff changeset
   294
    |> uncurry drop
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   295
  
2409
83990a42a068 more tuning of the code
Christian Urban <urbanc@in.tum.de>
parents: 2407
diff changeset
   296
  (* definitions of raw permutations by primitive recursion *)
2316
08bbde090a17 also symmetry
Christian Urban <urbanc@in.tum.de>
parents: 2314
diff changeset
   297
  val _ = warning "Definition of raw permutations";
2401
7645e18e8b19 modified the code for class instantiations (with help from Florian)
Christian Urban <urbanc@in.tum.de>
parents: 2400
diff changeset
   298
  val ((raw_perm_funs, raw_perm_simps, raw_perm_laws), lthy2a) =
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   299
    if get_STEPS lthy0 > 0 
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   300
    then define_raw_perms raw_full_ty_names raw_tys tvs raw_constrs raw_induct_thm lthy0
2308
387fcbd33820 fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents: 2306
diff changeset
   301
    else raise TEST lthy0
2144
e900526e95c4 slight tuning
Christian Urban <urbanc@in.tum.de>
parents: 2143
diff changeset
   302
 
e900526e95c4 slight tuning
Christian Urban <urbanc@in.tum.de>
parents: 2143
diff changeset
   303
  (* noting the raw permutations as eqvt theorems *)
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   304
  val (_, lthy3) = Local_Theory.note ((Binding.empty, [eqvt_attr]), raw_perm_simps) lthy2a
2011
12ce87b55f97 tried to add some comments in the huge(!) nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2008
diff changeset
   305
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   306
  (* definition of raw fv and bn functions *)
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   307
  val _ = warning "Definition of raw fv- and bn-functions";
2405
29ebbe56f450 also able to lift the bn_defs
Christian Urban <urbanc@in.tum.de>
parents: 2404
diff changeset
   308
  val (raw_bns, raw_bn_defs, raw_bn_info, raw_bn_induct, lthy3a) =
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   309
    if get_STEPS lthy3 > 1
2410
2bbdb9c427b5 improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
parents: 2409
diff changeset
   310
    then define_raw_bns raw_full_ty_names raw_dts raw_bn_funs raw_bn_eqs 
2bbdb9c427b5 improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
parents: 2409
diff changeset
   311
      (raw_inject_thms @ raw_distinct_thms) raw_size_thms lthy3
2046
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   312
    else raise TEST lthy3
2292
Christian Urban <urbanc@in.tum.de>
parents: 2288
diff changeset
   313
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   314
  (* defining the permute_bn functions *)
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   315
  val (raw_perm_bns, raw_perm_bn_simps, lthy3b) = 
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   316
    if get_STEPS lthy3a > 2
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   317
    then define_raw_bn_perms raw_tys raw_bn_info raw_cns_info 
2410
2bbdb9c427b5 improved runtime slightly, by constructing an explicit size measure for the function definitions
Christian Urban <urbanc@in.tum.de>
parents: 2409
diff changeset
   318
      (raw_inject_thms @ raw_distinct_thms) raw_size_thms lthy3a
2308
387fcbd33820 fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents: 2306
diff changeset
   319
    else raise TEST lthy3a
387fcbd33820 fixed problem with bn_info
Christian Urban <urbanc@in.tum.de>
parents: 2306
diff changeset
   320
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   321
  val (raw_fvs, raw_fv_bns, raw_fv_defs, raw_fv_bns_induct, lthy3c) = 
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   322
    if get_STEPS lthy3b > 3 
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   323
    then define_raw_fvs raw_full_ty_names raw_tys raw_cns_info raw_bn_info raw_bclauses 
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   324
      (raw_inject_thms @ raw_distinct_thms) raw_size_thms lthy3b
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   325
    else raise TEST lthy3b
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   326
2011
12ce87b55f97 tried to add some comments in the huge(!) nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2008
diff changeset
   327
  (* definition of raw alphas *)
2316
08bbde090a17 also symmetry
Christian Urban <urbanc@in.tum.de>
parents: 2314
diff changeset
   328
  val _ = warning "Definition of alphas";
2300
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   329
  val (alpha_trms, alpha_bn_trms, alpha_intros, alpha_cases, alpha_induct, lthy4) =
2560
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   330
    if get_STEPS lthy3c > 4 
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   331
    then define_raw_alpha raw_full_ty_names raw_tys raw_cns_info raw_bn_info raw_bclauses raw_fvs lthy3c
82e37a4595c7 automated permute_bn functions (raw ones first)
Christian Urban <urbanc@in.tum.de>
parents: 2559
diff changeset
   332
    else raise TEST lthy3c
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   333
  val alpha_tys = map (domain_type o fastype_of) alpha_trms  
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   334
2300
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   335
  (* definition of alpha-distinct lemmas *)
2316
08bbde090a17 also symmetry
Christian Urban <urbanc@in.tum.de>
parents: 2314
diff changeset
   336
  val _ = warning "Distinct theorems";
2399
107c06267f33 simplified code
Christian Urban <urbanc@in.tum.de>
parents: 2398
diff changeset
   337
  val alpha_distincts = 
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   338
    mk_alpha_distincts lthy4 alpha_cases raw_distinct_thms alpha_trms raw_tys
2300
9fb315392493 added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents: 2299
diff changeset
   339
2361
d73d4d151cce more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2346
diff changeset
   340
  (* definition of alpha_eq_iff  lemmas *)
2316
08bbde090a17 also symmetry
Christian Urban <urbanc@in.tum.de>
parents: 2314
diff changeset
   341
  val _ = warning "Eq-iff theorems";
2475
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   342
  val alpha_eq_iff = 
2295
8aff3f3ce47f started to work on alpha
Christian Urban <urbanc@in.tum.de>
parents: 2294
diff changeset
   343
    if get_STEPS lthy > 5
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   344
    then mk_alpha_eq_iff lthy4 alpha_intros raw_distinct_thms raw_inject_thms alpha_cases
2295
8aff3f3ce47f started to work on alpha
Christian Urban <urbanc@in.tum.de>
parents: 2294
diff changeset
   345
    else raise TEST lthy4
2022
8ffede2c8ce9 Introduce eq_iff_simp to match the one from Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2020
diff changeset
   346
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   347
  (* proving equivariance lemmas for bns, fvs, size and alpha *)
2001
7c8242a02f39 NewParser with Parser functionality, but some cheats included since the order of datayupes is wrong.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2000
diff changeset
   348
  val _ = warning "Proving equivariance";
2406
428d9cb9a243 can also lift the various eqvt lemmas for bn, fv, fv_bn and size
Christian Urban <urbanc@in.tum.de>
parents: 2405
diff changeset
   349
  val raw_bn_eqvt = 
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   350
    if get_STEPS lthy > 6
2405
29ebbe56f450 also able to lift the bn_defs
Christian Urban <urbanc@in.tum.de>
parents: 2404
diff changeset
   351
    then raw_prove_eqvt raw_bns raw_bn_induct (raw_bn_defs @ raw_perm_simps) lthy4
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   352
    else raise TEST lthy4
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   353
2406
428d9cb9a243 can also lift the various eqvt lemmas for bn, fv, fv_bn and size
Christian Urban <urbanc@in.tum.de>
parents: 2405
diff changeset
   354
  (* noting the raw_bn_eqvt lemmas in a temprorary theory *)
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   355
  val lthy_tmp = snd (Local_Theory.note ((Binding.empty, [eqvt_attr]), raw_bn_eqvt) lthy4)
2305
93ab397f5980 smaller code for raw-eqvt proofs
Christian Urban <urbanc@in.tum.de>
parents: 2304
diff changeset
   356
2406
428d9cb9a243 can also lift the various eqvt lemmas for bn, fv, fv_bn and size
Christian Urban <urbanc@in.tum.de>
parents: 2405
diff changeset
   357
  val raw_fv_eqvt = 
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   358
    if get_STEPS lthy > 7
2384
841b7e34e70a fixed order of fold_union to make alpha and fv agree
Christian Urban <urbanc@in.tum.de>
parents: 2378
diff changeset
   359
    then raw_prove_eqvt (raw_fvs @ raw_fv_bns) raw_fv_bns_induct (raw_fv_defs @ raw_perm_simps) 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   360
      (Local_Theory.restore lthy_tmp)
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   361
    else raise TEST lthy4
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   362
2389
0f24c961b5f6 introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents: 2388
diff changeset
   363
  val raw_size_eqvt = 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   364
    if get_STEPS lthy > 8
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   365
    then raw_prove_eqvt raw_size_trms raw_induct_thms (raw_size_thms @ raw_perm_simps) 
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   366
      (Local_Theory.restore lthy_tmp)
2389
0f24c961b5f6 introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents: 2388
diff changeset
   367
      |> map (rewrite_rule @{thms permute_nat_def[THEN eq_reflection]})
0f24c961b5f6 introduced a general alpha_prove method
Christian Urban <urbanc@in.tum.de>
parents: 2388
diff changeset
   368
      |> map (fn thm => thm RS @{thm sym})
2305
93ab397f5980 smaller code for raw-eqvt proofs
Christian Urban <urbanc@in.tum.de>
parents: 2304
diff changeset
   369
    else raise TEST lthy4
93ab397f5980 smaller code for raw-eqvt proofs
Christian Urban <urbanc@in.tum.de>
parents: 2304
diff changeset
   370
 
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   371
  val lthy5 = snd (Local_Theory.note ((Binding.empty, [eqvt_attr]), raw_fv_eqvt) lthy_tmp)
2306
86c977b4a9bb equivariance done
Christian Urban <urbanc@in.tum.de>
parents: 2305
diff changeset
   372
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   373
  val (alpha_eqvt, lthy6) =
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   374
    if get_STEPS lthy > 9
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   375
    then Nominal_Eqvt.equivariance true (alpha_trms @ alpha_bn_trms) alpha_induct alpha_intros lthy5
2311
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   376
    else raise TEST lthy4
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   377
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   378
  (* proving alpha equivalence *)
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   379
  val _ = warning "Proving equivalence"
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   380
2316
08bbde090a17 also symmetry
Christian Urban <urbanc@in.tum.de>
parents: 2314
diff changeset
   381
  val alpha_refl_thms = 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   382
    if get_STEPS lthy > 10
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   383
    then raw_prove_refl alpha_trms alpha_bn_trms alpha_intros raw_induct_thm lthy6 
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   384
    else raise TEST lthy6
2316
08bbde090a17 also symmetry
Christian Urban <urbanc@in.tum.de>
parents: 2314
diff changeset
   385
2311
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   386
  val alpha_sym_thms = 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   387
    if get_STEPS lthy > 11
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   388
    then raw_prove_sym (alpha_trms @ alpha_bn_trms) alpha_intros alpha_induct lthy6 
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   389
    else raise TEST lthy6
2298
Christian Urban <urbanc@in.tum.de>
parents: 2297
diff changeset
   390
2311
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   391
  val alpha_trans_thms = 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   392
    if get_STEPS lthy > 12
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   393
    then raw_prove_trans (alpha_trms @ alpha_bn_trms) (raw_distinct_thms @ raw_inject_thms) 
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   394
           alpha_intros alpha_induct alpha_cases lthy6
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   395
    else raise TEST lthy6
2311
4da5c5c29009 work on transitivity proof
Christian Urban <urbanc@in.tum.de>
parents: 2309
diff changeset
   396
2404
66ae73fd66c0 added rsp-lemmas for alpha_bns
Christian Urban <urbanc@in.tum.de>
parents: 2401
diff changeset
   397
  val (alpha_equivp_thms, alpha_bn_equivp_thms) = 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   398
    if get_STEPS lthy > 13
2404
66ae73fd66c0 added rsp-lemmas for alpha_bns
Christian Urban <urbanc@in.tum.de>
parents: 2401
diff changeset
   399
    then raw_prove_equivp alpha_trms alpha_bn_trms alpha_refl_thms alpha_sym_thms 
66ae73fd66c0 added rsp-lemmas for alpha_bns
Christian Urban <urbanc@in.tum.de>
parents: 2401
diff changeset
   400
       alpha_trans_thms lthy6
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   401
    else raise TEST lthy6
2322
24de7e548094 proved eqvip theorems for alphas
Christian Urban <urbanc@in.tum.de>
parents: 2321
diff changeset
   402
2320
d835a2771608 prove that alpha implies alpha_bn (needed for rsp proofs)
Christian Urban <urbanc@in.tum.de>
parents: 2316
diff changeset
   403
  (* proving alpha implies alpha_bn *)
d835a2771608 prove that alpha implies alpha_bn (needed for rsp proofs)
Christian Urban <urbanc@in.tum.de>
parents: 2316
diff changeset
   404
  val _ = warning "Proving alpha implies bn"
d835a2771608 prove that alpha implies alpha_bn (needed for rsp proofs)
Christian Urban <urbanc@in.tum.de>
parents: 2316
diff changeset
   405
d835a2771608 prove that alpha implies alpha_bn (needed for rsp proofs)
Christian Urban <urbanc@in.tum.de>
parents: 2316
diff changeset
   406
  val alpha_bn_imp_thms = 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   407
    if get_STEPS lthy > 14
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   408
    then raw_prove_bn_imp alpha_trms alpha_bn_trms alpha_intros alpha_induct lthy6 
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   409
    else raise TEST lthy6
2322
24de7e548094 proved eqvip theorems for alphas
Christian Urban <urbanc@in.tum.de>
parents: 2321
diff changeset
   410
  
2397
c670a849af65 more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents: 2396
diff changeset
   411
  (* respectfulness proofs *)
2438
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   412
  val raw_funs_rsp_aux = 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   413
    if get_STEPS lthy > 15
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   414
    then raw_fv_bn_rsp_aux alpha_trms alpha_bn_trms raw_fvs 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   415
      raw_bns raw_fv_bns alpha_induct (raw_bn_defs @ raw_fv_defs) lthy6
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   416
    else raise TEST lthy6 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   417
  
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   418
  val raw_funs_rsp = 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   419
    if get_STEPS lthy > 16
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   420
    then map mk_funs_rsp raw_funs_rsp_aux
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   421
    else raise TEST lthy6 
2388
ebf253d80670 equivariance for size
Christian Urban <urbanc@in.tum.de>
parents: 2387
diff changeset
   422
2438
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   423
  val raw_size_rsp = 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   424
    if get_STEPS lthy > 17
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   425
    then
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   426
      raw_size_rsp_aux (alpha_trms @ alpha_bn_trms) alpha_induct 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   427
      (raw_size_thms @ raw_size_eqvt) lthy6
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   428
      |> map mk_funs_rsp
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   429
    else raise TEST lthy6 
2392
9294d7cec5e2 proved rsp-helper lemmas of size functions
Christian Urban <urbanc@in.tum.de>
parents: 2389
diff changeset
   430
2438
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   431
  val raw_constrs_rsp = 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   432
    if get_STEPS lthy > 18
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   433
    then raw_constrs_rsp raw_constrs alpha_trms alpha_intros
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   434
      (alpha_bn_imp_thms @ raw_funs_rsp_aux) lthy6 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   435
    else raise TEST lthy6 
2397
c670a849af65 more experiments with lifting
Christian Urban <urbanc@in.tum.de>
parents: 2396
diff changeset
   436
2438
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   437
  val alpha_permute_rsp = 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   438
    if get_STEPS lthy > 19
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   439
    then map mk_alpha_permute_rsp alpha_eqvt
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   440
    else raise TEST lthy6 
2384
841b7e34e70a fixed order of fold_union to make alpha and fv agree
Christian Urban <urbanc@in.tum.de>
parents: 2378
diff changeset
   441
2438
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   442
  val alpha_bn_rsp = 
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   443
    if get_STEPS lthy > 20
2440
0a36825b16c1 "isabelle make test" makes all major examples....they work up to supp theorems (excluding)
Christian Urban <urbanc@in.tum.de>
parents: 2438
diff changeset
   444
    then raw_alpha_bn_rsp alpha_bn_trms alpha_bn_equivp_thms alpha_bn_imp_thms
2438
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   445
    else raise TEST lthy6 
2404
66ae73fd66c0 added rsp-lemmas for alpha_bns
Christian Urban <urbanc@in.tum.de>
parents: 2401
diff changeset
   446
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   447
  val raw_perm_bn_rsp =
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   448
    if get_STEPS lthy > 21
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   449
    then raw_perm_bn_rsp (alpha_trms @ alpha_bn_trms) raw_perm_bns alpha_induct 
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   450
      alpha_intros raw_perm_bn_simps lthy6
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   451
    else raise TEST lthy6
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   452
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   453
  (* noting the quot_respects lemmas *)
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   454
  val (_, lthy6a) = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   455
    if get_STEPS lthy > 22
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   456
    then Local_Theory.note ((Binding.empty, [rsp_attr]),
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   457
      raw_constrs_rsp @ raw_funs_rsp @ raw_size_rsp @ alpha_permute_rsp @ 
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   458
      alpha_bn_rsp @ raw_perm_bn_rsp) lthy6
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   459
    else raise TEST lthy6
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   460
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   461
  (* defining the quotient type *)
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   462
  val _ = warning "Declaring the quotient types"
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   463
  val qty_descr = map (fn (vs, bind, mx, _) => (vs, bind, mx)) dts
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   464
     
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   465
  val (qty_infos, lthy7) = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   466
    if get_STEPS lthy > 23
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   467
    then define_qtypes qty_descr alpha_tys alpha_trms alpha_equivp_thms lthy6a
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   468
    else raise TEST lthy6a
2336
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   469
f2d545b77b31 added definition of the quotient types
Christian Urban <urbanc@in.tum.de>
parents: 2324
diff changeset
   470
  val qtys = map #qtyp qty_infos
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   471
  val qty_full_names = map (fst o dest_Type) qtys
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   472
  val qty_names = map Long_Name.base_name qty_full_names             
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   473
2339
1e0b3992189c more quotient-definitions
Christian Urban <urbanc@in.tum.de>
parents: 2338
diff changeset
   474
  (* defining of quotient term-constructors, binding functions, free vars functions *)
2378
2f13fe48c877 updated to new Isabelle; made FSet more "quiet"
Christian Urban <urbanc@in.tum.de>
parents: 2361
diff changeset
   475
  val _ = warning "Defining the quotient constants"
2346
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   476
  val qconstrs_descr = 
2338
e1764a73c292 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2337
diff changeset
   477
    flat (map (fn (_, _, _, cs) => map (fn (b, _, mx) => (Name.of_binding b, mx)) cs) dts)
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   478
    |> map2 (fn t => fn (b, mx) => (b, t, mx)) raw_constrs
2338
e1764a73c292 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2337
diff changeset
   479
2339
1e0b3992189c more quotient-definitions
Christian Urban <urbanc@in.tum.de>
parents: 2338
diff changeset
   480
  val qbns_descr =
2346
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   481
    map2 (fn (b, _, mx) => fn t => (Name.of_binding b, t, mx)) bn_funs raw_bns
2339
1e0b3992189c more quotient-definitions
Christian Urban <urbanc@in.tum.de>
parents: 2338
diff changeset
   482
1e0b3992189c more quotient-definitions
Christian Urban <urbanc@in.tum.de>
parents: 2338
diff changeset
   483
  val qfvs_descr = 
2346
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   484
    map2 (fn n => fn t => ("fv_" ^ n, t, NoSyn)) qty_names raw_fvs
2339
1e0b3992189c more quotient-definitions
Christian Urban <urbanc@in.tum.de>
parents: 2338
diff changeset
   485
2346
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   486
  val qfv_bns_descr = 
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   487
    map2 (fn (b, _, _) => fn t => ("fv_" ^ Name.of_binding b, t, NoSyn)) bn_funs raw_fv_bns
2339
1e0b3992189c more quotient-definitions
Christian Urban <urbanc@in.tum.de>
parents: 2338
diff changeset
   488
2384
841b7e34e70a fixed order of fold_union to make alpha and fv agree
Christian Urban <urbanc@in.tum.de>
parents: 2378
diff changeset
   489
  val qalpha_bns_descr = 
841b7e34e70a fixed order of fold_union to make alpha and fv agree
Christian Urban <urbanc@in.tum.de>
parents: 2378
diff changeset
   490
    map2 (fn (b, _, _) => fn t => ("alpha_" ^ Name.of_binding b, t, NoSyn)) bn_funs  alpha_bn_trms
841b7e34e70a fixed order of fold_union to make alpha and fv agree
Christian Urban <urbanc@in.tum.de>
parents: 2378
diff changeset
   491
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   492
  val qperm_descr =
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   493
    map2 (fn n => fn t => ("permute_" ^ n, Type.legacy_freeze t, NoSyn)) qty_names raw_perm_funs
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   494
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   495
  val qsize_descr =
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   496
    map2 (fn n => fn t => ("size_" ^ n, t, NoSyn)) qty_names raw_size_trms
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   497
2562
e8ec504dddf2 lifted permute_bn constants
Christian Urban <urbanc@in.tum.de>
parents: 2561
diff changeset
   498
  val qperm_bn_descr = 
e8ec504dddf2 lifted permute_bn constants
Christian Urban <urbanc@in.tum.de>
parents: 2561
diff changeset
   499
    map2 (fn (b, _, _) => fn t => ("permute_" ^ Name.of_binding b, t, NoSyn)) bn_funs raw_perm_bns
e8ec504dddf2 lifted permute_bn constants
Christian Urban <urbanc@in.tum.de>
parents: 2561
diff changeset
   500
     
e8ec504dddf2 lifted permute_bn constants
Christian Urban <urbanc@in.tum.de>
parents: 2561
diff changeset
   501
e8ec504dddf2 lifted permute_bn constants
Christian Urban <urbanc@in.tum.de>
parents: 2561
diff changeset
   502
  val ((((((qconstrs_info, qbns_info), qfvs_info), qfv_bns_info), qalpha_bns_info), qpermute_bns), lthy8) = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   503
    if get_STEPS lthy > 24
2346
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   504
    then 
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   505
      lthy7
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   506
      |> define_qconsts qtys qconstrs_descr 
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   507
      ||>> define_qconsts qtys qbns_descr 
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   508
      ||>> define_qconsts qtys qfvs_descr
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   509
      ||>> define_qconsts qtys qfv_bns_descr
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   510
      ||>> define_qconsts qtys qalpha_bns_descr
2562
e8ec504dddf2 lifted permute_bn constants
Christian Urban <urbanc@in.tum.de>
parents: 2561
diff changeset
   511
      ||>> define_qconsts qtys qperm_bn_descr
2338
e1764a73c292 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2337
diff changeset
   512
    else raise TEST lthy7
e1764a73c292 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2337
diff changeset
   513
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   514
  (* definition of the quotient permfunctions and pt-class *)
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   515
  val lthy9 = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   516
    if get_STEPS lthy > 25
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   517
    then define_qperms qtys qty_full_names tvs qperm_descr raw_perm_laws lthy8 
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   518
    else raise TEST lthy8
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   519
  
2401
7645e18e8b19 modified the code for class instantiations (with help from Florian)
Christian Urban <urbanc@in.tum.de>
parents: 2400
diff changeset
   520
  val lthy9a = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   521
    if get_STEPS lthy > 26
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   522
    then define_qsizes qtys qty_full_names tvs qsize_descr lthy9
2400
c6d30d5f5ba1 defined qperms and qsizes
Christian Urban <urbanc@in.tum.de>
parents: 2399
diff changeset
   523
    else raise TEST lthy9
2398
1e6160690546 improved code
Christian Urban <urbanc@in.tum.de>
parents: 2397
diff changeset
   524
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   525
  val qtrms = map #qconst qconstrs_info
2346
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   526
  val qbns = map #qconst qbns_info
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   527
  val qfvs = map #qconst qfvs_info
4c5881455923 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2339
diff changeset
   528
  val qfv_bns = map #qconst qfv_bns_info
2384
841b7e34e70a fixed order of fold_union to make alpha and fv agree
Christian Urban <urbanc@in.tum.de>
parents: 2378
diff changeset
   529
  val qalpha_bns = map #qconst qalpha_bns_info
2434
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   530
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   531
  (* lifting of the theorems *)
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   532
  val _ = warning "Lifting of Theorems"
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   533
  
2559
add799cf0817 adapted to changes by Florian on the quotient package and removed local fix for function package
Christian Urban <urbanc@in.tum.de>
parents: 2500
diff changeset
   534
  val eq_iff_simps = @{thms alphas permute_prod.simps prod_fv.simps prod_alpha_def prod_rel_def
2434
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   535
    prod.cases} 
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   536
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   537
  val ((((((qdistincts, qeq_iffs), qfv_defs), qbn_defs), qperm_simps), qfv_qbn_eqvts), lthyA) = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   538
    if get_STEPS lthy > 27
2434
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   539
    then 
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   540
      lthy9a    
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   541
      |> lift_thms qtys [] alpha_distincts  
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   542
      ||>> lift_thms qtys eq_iff_simps alpha_eq_iff       
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   543
      ||>> lift_thms qtys [] raw_fv_defs
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   544
      ||>> lift_thms qtys [] raw_bn_defs
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   545
      ||>> lift_thms qtys [] raw_perm_simps
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   546
      ||>> lift_thms qtys [] (raw_fv_eqvt @ raw_bn_eqvt)
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   547
    else raise TEST lthy9a
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   548
2563
7c8bfc35663a lifted permute_bn simp rules
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
   549
  val (((((qsize_eqvt, [qinduct]), qexhausts), qsize_simps), qperm_bn_simps), lthyB) = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   550
    if get_STEPS lthy > 28
2434
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   551
    then
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   552
      lthyA 
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   553
      |> lift_thms qtys [] raw_size_eqvt
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   554
      ||>> lift_thms qtys [] [raw_induct_thm]
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   555
      ||>> lift_thms qtys [] raw_exhaust_thms
2487
fbdaaa20396b lifted size_thms and exported them as <name>.size
Christian Urban <urbanc@in.tum.de>
parents: 2483
diff changeset
   556
      ||>> lift_thms qtys [] raw_size_thms
2563
7c8bfc35663a lifted permute_bn simp rules
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
   557
      ||>> lift_thms qtys [] raw_perm_bn_simps
2434
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   558
    else raise TEST lthyA
92dc6cfa3a95 automatic lifting
Christian Urban <urbanc@in.tum.de>
parents: 2431
diff changeset
   559
2474
6e37bfb62474 generated inducts rule by Project_Rule.projections
Christian Urban <urbanc@in.tum.de>
parents: 2471
diff changeset
   560
  val qinducts = Project_Rule.projections lthyA qinduct
6e37bfb62474 generated inducts rule by Project_Rule.projections
Christian Urban <urbanc@in.tum.de>
parents: 2471
diff changeset
   561
2451
d2e929f51fa9 added fs-instance proofs
Christian Urban <urbanc@in.tum.de>
parents: 2450
diff changeset
   562
  (* supports lemmas *) 
2475
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   563
  val _ = warning "Proving Supports Lemmas and fs-Instances"
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   564
  val qsupports_thms =
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   565
    if get_STEPS lthy > 29
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   566
    then prove_supports lthyB qperm_simps qtrms
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   567
    else raise TEST lthyB
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   568
2451
d2e929f51fa9 added fs-instance proofs
Christian Urban <urbanc@in.tum.de>
parents: 2450
diff changeset
   569
  (* finite supp lemmas *)
2450
217ef3e4282e added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents: 2448
diff changeset
   570
  val qfsupp_thms =
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   571
    if get_STEPS lthy > 30
2450
217ef3e4282e added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents: 2448
diff changeset
   572
    then prove_fsupp lthyB qtys qinduct qsupports_thms
217ef3e4282e added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents: 2448
diff changeset
   573
    else raise TEST lthyB
217ef3e4282e added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents: 2448
diff changeset
   574
2451
d2e929f51fa9 added fs-instance proofs
Christian Urban <urbanc@in.tum.de>
parents: 2450
diff changeset
   575
  (* fs instances *)
d2e929f51fa9 added fs-instance proofs
Christian Urban <urbanc@in.tum.de>
parents: 2450
diff changeset
   576
  val lthyC =
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   577
    if get_STEPS lthy > 31
2451
d2e929f51fa9 added fs-instance proofs
Christian Urban <urbanc@in.tum.de>
parents: 2450
diff changeset
   578
    then fs_instance qtys qty_full_names tvs qfsupp_thms lthyB
d2e929f51fa9 added fs-instance proofs
Christian Urban <urbanc@in.tum.de>
parents: 2450
diff changeset
   579
    else raise TEST lthyB
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   580
2475
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   581
  (* fv - supp equality *)
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   582
  val _ = warning "Proving Equality between fv and supp"
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   583
  val qfv_supp_thms = 
2561
7926f1cb45eb respectfulness for permute_bn functions
Christian Urban <urbanc@in.tum.de>
parents: 2560
diff changeset
   584
    if get_STEPS lthy > 32
2483
37941f58ab8f removed dead code
Christian Urban <urbanc@in.tum.de>
parents: 2481
diff changeset
   585
    then prove_fv_supp qtys qtrms qfvs qfv_bns qalpha_bns qfv_defs qeq_iffs 
2481
3a5ebb2fcdbf made supp proofs more robust by not using the standard induction; renamed some example files
Christian Urban <urbanc@in.tum.de>
parents: 2475
diff changeset
   586
      qperm_simps qfv_qbn_eqvts qinduct (flat raw_bclauses) lthyC
2475
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   587
    else []
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   588
2492
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   589
  (* postprocessing of eq and fv theorems *)
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   590
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   591
  val qeq_iffs' = qeq_iffs
2493
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   592
    |> map (simplify (HOL_basic_ss addsimps qfv_supp_thms))
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   593
    |> map (simplify (HOL_basic_ss addsimps @{thms prod_fv_supp prod_alpha_eq Abs_eq_iff[symmetric]}))
2492
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   594
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   595
  val qsupp_constrs = qfv_defs
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   596
    |> map (simplify (HOL_basic_ss addsimps (take (length qfvs) qfv_supp_thms)))
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   597
2493
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   598
  val transform_thm = @{lemma "x = y \<Longrightarrow> a \<notin> x \<longleftrightarrow> a \<notin> y" by simp}
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   599
  val transform_thms = 
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   600
    [ @{lemma "a \<notin> (S \<union> T) \<longleftrightarrow> a \<notin> S \<and> a \<notin> T" by simp}, 
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   601
      @{lemma "a \<notin> (S - T) \<longleftrightarrow> a \<notin> S \<or> a \<in> T" by simp}, 
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   602
      @{lemma "(lhs = (a \<notin> {})) \<longleftrightarrow> lhs" by simp}, 
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   603
      @{thm fresh_def[symmetric]}]
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   604
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   605
  val qfresh_constrs = qsupp_constrs
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   606
    |> map (fn thm => thm RS transform_thm) 
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   607
    |> map (simplify (HOL_basic_ss addsimps transform_thms))
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   608
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   609
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   610
  (* noting the theorems *)  
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   611
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   612
  (* generating the prefix for the theorem names *)
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   613
  val thms_name = 
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   614
    the_default (Binding.name (space_implode "_" qty_names)) opt_thms_name 
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   615
  fun thms_suffix s = Binding.qualified true s thms_name 
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   616
2451
d2e929f51fa9 added fs-instance proofs
Christian Urban <urbanc@in.tum.de>
parents: 2450
diff changeset
   617
  val (_, lthy9') = lthyC
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   618
     |> Local_Theory.note ((thms_suffix "distinct", []), qdistincts) 
2492
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   619
     ||>> Local_Theory.note ((thms_suffix "eq_iff", []), qeq_iffs')
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   620
     ||>> Local_Theory.note ((thms_suffix "fv_defs", []), qfv_defs) 
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   621
     ||>> Local_Theory.note ((thms_suffix "bn_defs", []), qbn_defs) 
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   622
     ||>> Local_Theory.note ((thms_suffix "perm_simps", [eqvt_attr, simp_attr]), qperm_simps) 
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   623
     ||>> Local_Theory.note ((thms_suffix "fv_bn_eqvt", []), qfv_qbn_eqvts) 
2487
fbdaaa20396b lifted size_thms and exported them as <name>.size
Christian Urban <urbanc@in.tum.de>
parents: 2483
diff changeset
   624
     ||>> Local_Theory.note ((thms_suffix "size", []), qsize_simps)
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   625
     ||>> Local_Theory.note ((thms_suffix "size_eqvt", []), qsize_eqvt)
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   626
     ||>> Local_Theory.note ((thms_suffix "induct", []), [qinduct]) 
2475
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   627
     ||>> Local_Theory.note ((thms_suffix "inducts", []), qinducts)
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   628
     ||>> Local_Theory.note ((thms_suffix "exhaust", []), qexhausts)
2448
b9d9c4540265 proved supports lemmas
Christian Urban <urbanc@in.tum.de>
parents: 2440
diff changeset
   629
     ||>> Local_Theory.note ((thms_suffix "supports", []), qsupports_thms)
2450
217ef3e4282e added proofs for fsupp properties
Christian Urban <urbanc@in.tum.de>
parents: 2448
diff changeset
   630
     ||>> Local_Theory.note ((thms_suffix "fsupp", []), qfsupp_thms)
2492
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2487
diff changeset
   631
     ||>> Local_Theory.note ((thms_suffix "supp", []), qsupp_constrs)
2493
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
   632
     ||>> Local_Theory.note ((thms_suffix "fresh", []), qfresh_constrs)
2500
3b6a70e73006 worked example Foo1 with induct_schema
Christian Urban <urbanc@in.tum.de>
parents: 2493
diff changeset
   633
     ||>> Local_Theory.note ((thms_suffix "raw_alpha", []), alpha_intros)
2563
7c8bfc35663a lifted permute_bn simp rules
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
   634
     ||>> Local_Theory.note ((thms_suffix "perm_bn_simps", []), qperm_bn_simps)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   635
in
2435
3772bb3bd7ce cleaning of unused files and code
Christian Urban <urbanc@in.tum.de>
parents: 2434
diff changeset
   636
  (0, lthy9')
2046
73c50e913db6 tuned and added some comments to the code; added also an exception for early exit of the nominal2_cmd function
Christian Urban <urbanc@in.tum.de>
parents: 2037
diff changeset
   637
end handle TEST ctxt => (0, ctxt)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   638
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   639
2475
486d4647bb37 supp-proofs work except for CoreHaskell and Modules (induct is probably not finding the correct instance)
Christian Urban <urbanc@in.tum.de>
parents: 2474
diff changeset
   640
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   641
section {* Preparing and parsing of the specification *}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   642
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   643
ML {* 
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   644
(* generates the parsed datatypes and 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   645
   declares the constructors 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   646
*)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   647
fun prepare_dts dt_strs thy = 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   648
let
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   649
  fun inter_fs_sort thy (a, S) = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   650
    (a, Type.inter_sort (Sign.tsig_of thy) (@{sort fs}, S)) 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   651
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   652
  fun mk_type tname sorts (cname, cargs, mx) =
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   653
  let
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   654
    val full_tname = Sign.full_name thy tname
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   655
    val ty = Type (full_tname, map (TFree o inter_fs_sort thy) sorts)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   656
  in
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   657
    (cname, cargs ---> ty, mx)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   658
  end
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   659
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   660
  fun prep_constr (cname, cargs, mx, _) (constrs, sorts) =
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   661
  let 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   662
    val (cargs', sorts') = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   663
      fold_map (Datatype.read_typ thy) (map snd cargs) sorts
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   664
      |>> map (map_type_tfree (TFree o inter_fs_sort thy)) 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   665
  in 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   666
    (constrs @ [(cname, cargs', mx)], sorts') 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   667
  end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   668
  
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   669
  fun prep_dts (tvs, tname, mx, constrs) (constr_trms, dts, sorts) =
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   670
  let 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   671
    val (constrs', sorts') = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   672
      fold prep_constr constrs ([], sorts)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   673
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   674
    val constr_trms' = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   675
      map (mk_type tname (rev sorts')) constrs'
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   676
  in 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   677
    (constr_trms @ constr_trms', dts @ [(tvs, tname, mx, constrs')], sorts') 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   678
  end
2425
715ab84065a0 nominal_datatypes with type variables do not work
Christian Urban <urbanc@in.tum.de>
parents: 2424
diff changeset
   679
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   680
  val (constr_trms, dts, sorts) = fold prep_dts dt_strs ([], [], []);
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   681
in
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   682
  thy
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   683
  |> Sign.add_consts_i constr_trms
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   684
  |> pair dts
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   685
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   686
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   687
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   688
ML {*
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   689
(* parsing the binding function specification and *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   690
(* declaring the functions in the local theory    *)
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   691
fun prepare_bn_funs bn_fun_strs bn_eq_strs thy =
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   692
let
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   693
  val lthy = Named_Target.theory_init thy
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   694
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   695
  val ((bn_funs, bn_eqs), lthy') = 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   696
    Specification.read_spec bn_fun_strs bn_eq_strs lthy
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   697
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   698
  fun prep_bn_fun ((bn, T), mx) = (bn, T, mx) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   699
  
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   700
  val bn_funs' = map prep_bn_fun bn_funs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   701
in
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   702
  (Local_Theory.exit_global lthy')
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   703
  |> Sign.add_consts_i bn_funs'
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   704
  |> pair (bn_funs', bn_eqs) 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   705
end 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   706
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   707
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   708
text {* associates every SOME with the index in the list; drops NONEs *}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   709
ML {*
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   710
fun indexify xs =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   711
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   712
  fun mapp _ [] = []
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   713
    | mapp i (NONE :: xs) = mapp (i + 1) xs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   714
    | mapp i (SOME x :: xs) = (x, i) :: mapp (i + 1) xs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   715
in 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   716
  mapp 0 xs 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   717
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   718
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   719
fun index_lookup xs x =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   720
  case AList.lookup (op=) xs x of
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   721
    SOME x => x
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   722
  | NONE => error ("Cannot find " ^ x ^ " as argument annotation.");
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   723
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   724
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   725
ML {*
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   726
fun prepare_bclauses dt_strs thy = 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   727
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   728
  val annos_bclauses =
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   729
    get_cnstrs dt_strs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   730
    |> map (map (fn (_, antys, _, bns) => (map fst antys, bns)))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   731
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   732
  fun prep_binder env bn_str =
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   733
    case (Syntax.read_term_global thy bn_str) of
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   734
      Free (x, _) => (NONE, index_lookup env x)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   735
    | Const (a, T) $ Free (x, _) => (SOME (Const (a, T)), index_lookup env x)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   736
    | _ => error ("The term " ^ bn_str ^ " is not allowed as binding function.")
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   737
 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   738
  fun prep_body env bn_str = index_lookup env bn_str
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   739
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   740
  fun prep_bclause env (mode, binders, bodies) = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   741
  let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   742
    val binders' = map (prep_binder env) binders
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   743
    val bodies' = map (prep_body env) bodies
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   744
  in  
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   745
    BC (mode, binders', bodies')
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   746
  end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   747
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   748
  fun prep_bclauses (annos, bclause_strs) = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   749
  let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   750
    val env = indexify annos (* for every label, associate the index *)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   751
  in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   752
    map (prep_bclause env) bclause_strs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   753
  end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   754
in
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   755
  (map (map prep_bclauses) annos_bclauses, thy)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   756
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   757
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   758
1943
48add8d4d7e5 slight tuning
Christian Urban <urbanc@in.tum.de>
parents: 1942
diff changeset
   759
text {* 
48add8d4d7e5 slight tuning
Christian Urban <urbanc@in.tum.de>
parents: 1942
diff changeset
   760
  adds an empty binding clause for every argument
48add8d4d7e5 slight tuning
Christian Urban <urbanc@in.tum.de>
parents: 1942
diff changeset
   761
  that is not already part of a binding clause
48add8d4d7e5 slight tuning
Christian Urban <urbanc@in.tum.de>
parents: 1942
diff changeset
   762
*}
48add8d4d7e5 slight tuning
Christian Urban <urbanc@in.tum.de>
parents: 1942
diff changeset
   763
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   764
ML {*
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   765
fun included i bcs = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   766
let
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   767
  fun incl (BC (_, bns, bds)) = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   768
    member (op =) (map snd bns) i orelse member (op =) bds i
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   769
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   770
  exists incl bcs 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   771
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   772
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   773
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   774
ML {* 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   775
fun complete dt_strs bclauses = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   776
let
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   777
  val args = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   778
    get_cnstrs dt_strs
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   779
    |> map (map (fn (_, antys, _, _) => length antys))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   780
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   781
  fun complt n bcs = 
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   782
  let
2288
3b83960f9544 new fv/fv_bn function (supp breaks now); exported raw perms and raw funs into separate ML-files
Christian Urban <urbanc@in.tum.de>
parents: 2146
diff changeset
   783
    fun add bcs i = (if included i bcs then [] else [BC (Lst, [], [i])]) 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   784
  in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   785
    bcs @ (flat (map_range (add bcs) n))
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   786
  end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   787
in
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   788
  map2 (map2 complt) args bclauses
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   789
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   790
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   791
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   792
ML {*
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   793
fun nominal_datatype2_cmd (opt_thms_name, dt_strs, bn_fun_strs, bn_eq_strs) lthy = 
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   794
let
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   795
  val pre_typs = 
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   796
    map (fn (tvs, tname, mx, _) => (tname, length tvs, mx)) dt_strs
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   797
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   798
  (* this theory is used just for parsing *)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   799
  val thy = ProofContext.theory_of lthy  
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   800
  val tmp_thy = Theory.copy thy 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   801
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   802
  val (((dts, (bn_funs, bn_eqs)), bclauses), tmp_thy') = 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   803
    tmp_thy
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   804
    |> Sign.add_types pre_typs
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   805
    |> prepare_dts dt_strs 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   806
    ||>> prepare_bn_funs bn_fun_strs bn_eq_strs 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   807
    ||>> prepare_bclauses dt_strs 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   808
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   809
  val bclauses' = complete dt_strs bclauses
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   810
in
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2435
diff changeset
   811
  timeit (fn () => nominal_datatype2 opt_thms_name dts bn_funs bn_eqs bclauses' lthy |> snd)
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   812
end
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   813
*}
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   814
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   815
ML {* 
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   816
(* nominal datatype parser *)
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   817
local
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   818
  structure P = Parse;
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   819
  structure S = Scan
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   820
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   821
  fun triple ((x, y), z) = (x, y, z)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   822
  fun tuple1 ((x, y, z), u) = (x, y, z, u)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   823
  fun tuple2 (((x, y), z), u) = (x, y, u, z)
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   824
  fun tuple3 ((x, y), (z, u)) = (x, y, z, u)
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   825
in
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   826
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   827
val _ = Keyword.keyword "bind"
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   828
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   829
val opt_name = Scan.option (P.binding --| Args.colon)
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   830
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   831
val anno_typ = S.option (P.name --| P.$$$ "::") -- P.typ
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   832
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   833
val bind_mode = P.$$$ "bind" |--
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   834
  S.optional (Args.parens 
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   835
    (Args.$$$ "list" >> K Lst || Args.$$$ "set" >> K Set || Args.$$$ "res" >> K Res)) Lst
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   836
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   837
val bind_clauses = 
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   838
  P.enum "," (bind_mode -- S.repeat1 P.term -- (P.$$$ "in" |-- S.repeat1 P.name) >> triple)
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   839
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   840
val cnstr_parser =
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   841
  P.binding -- S.repeat anno_typ -- bind_clauses -- P.opt_mixfix >> tuple2
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   842
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   843
(* datatype parser *)
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   844
val dt_parser =
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   845
  (P.type_args -- P.binding -- P.opt_mixfix >> triple) -- 
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   846
    (P.$$$ "=" |-- P.enum1 "|" cnstr_parser) >> tuple1
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   847
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   848
(* binding function parser *)
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   849
val bnfun_parser = 
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   850
  S.optional (P.$$$ "binder" |-- P.fixes -- Parse_Spec.where_alt_specs) ([], [])
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   851
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   852
(* main parser *)
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   853
val main_parser =
2431
331873ebc5cd can now deal with type variables in nominal datatype definitions
Christian Urban <urbanc@in.tum.de>
parents: 2430
diff changeset
   854
  opt_name -- P.and_list1 dt_parser -- bnfun_parser >> tuple3
2424
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   855
621ebd8b13c4 changed parser so that the binding mode is indicated as "bind (list)", "bind (set)" or "bind (res)"; if only "bind" is given, then bind (list) is assumed as default
Christian Urban <urbanc@in.tum.de>
parents: 2411
diff changeset
   856
end
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   857
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   858
(* Command Keyword *)
2168
ce0255ffaeb4 Renamings
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2146
diff changeset
   859
val _ = Outer_Syntax.local_theory "nominal_datatype" "test" Keyword.thy_decl
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   860
  (main_parser >> nominal_datatype2_cmd)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   861
*}
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   862
2292
Christian Urban <urbanc@in.tum.de>
parents: 2288
diff changeset
   863
1941
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   864
end
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   865
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   866
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   867