src/HOL/Tools/datatype_package.ML
author berghofe
Thu, 22 Jul 1999 16:54:33 +0200
changeset 7060 80d244f81b96
parent 7049 f59d33c6e1c7
child 7151 de17299bf095
permissions -rw-r--r--
Tuned.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     1
(*  Title:      HOL/Tools/datatype_package.ML
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     2
    ID:         $Id$
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     3
    Author:     Stefan Berghofer
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     4
    Copyright   1998  TU Muenchen
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     5
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
     6
Datatype package for Isabelle/HOL.
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     7
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     8
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
     9
signature BASIC_DATATYPE_PACKAGE =
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    10
sig
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    11
  val mutual_induct_tac : string list -> int -> tactic
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    12
  val induct_tac : string -> int -> tactic
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    13
  val exhaust_tac : string -> int -> tactic
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    14
  val distinct_simproc : simproc
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    15
end;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    16
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    17
signature DATATYPE_PACKAGE =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    18
sig
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    19
  include BASIC_DATATYPE_PACKAGE
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    20
  val quiet_mode : bool ref
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    21
  val add_datatype : bool -> string list -> (string list * bstring * mixfix *
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    22
    (bstring * string list * mixfix) list) list -> theory -> theory *
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    23
      {distinct : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    24
       inject : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    25
       exhaustion : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    26
       rec_thms : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    27
       case_thms : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    28
       split_thms : (thm * thm) list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    29
       induction : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    30
       size : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    31
       simps : thm list}
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    32
  val add_datatype_i : bool -> string list -> (string list * bstring * mixfix *
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    33
    (bstring * typ list * mixfix) list) list -> theory -> theory *
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    34
      {distinct : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    35
       inject : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    36
       exhaustion : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    37
       rec_thms : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    38
       case_thms : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    39
       split_thms : (thm * thm) list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    40
       induction : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    41
       size : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    42
       simps : thm list}
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    43
  val rep_datatype_i : string list option -> (thm * theory attribute list) list list ->
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    44
    (thm * theory attribute list) list list -> (thm * theory attribute list) -> theory -> theory *
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    45
      {distinct : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    46
       inject : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    47
       exhaustion : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    48
       rec_thms : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    49
       case_thms : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    50
       split_thms : (thm * thm) list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    51
       induction : thm,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    52
       size : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    53
       simps : thm list}
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    54
  val rep_datatype : string list option -> (xstring * Args.src list) list list ->
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    55
    (xstring * Args.src list) list list -> xstring * Args.src list -> theory -> theory *
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    56
      {distinct : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    57
       inject : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    58
       exhaustion : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    59
       rec_thms : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    60
       case_thms : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    61
       split_thms : (thm * thm) list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    62
       induction : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    63
       size : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    64
       simps : thm list}
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    65
  val get_datatypes : theory -> DatatypeAux.datatype_info Symtab.table
6441
268aa3c4a059 print_datatypes;
wenzelm
parents: 6427
diff changeset
    66
  val print_datatypes : theory -> unit
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    67
  val datatype_info_sg : Sign.sg -> string -> DatatypeAux.datatype_info option
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    68
  val datatype_info : theory -> string -> DatatypeAux.datatype_info option
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    69
  val datatype_info_sg_err : Sign.sg -> string -> DatatypeAux.datatype_info
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    70
  val datatype_info_err : theory -> string -> DatatypeAux.datatype_info
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    71
  val constrs_of : theory -> string -> term list option
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    72
  val constrs_of_sg : Sign.sg -> string -> term list option
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    73
  val case_const_of : theory -> string -> term option
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    74
  val setup: (theory -> theory) list
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    75
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    76
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    77
structure DatatypePackage : DATATYPE_PACKAGE =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    78
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    79
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    80
open DatatypeAux;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    81
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    82
val quiet_mode = quiet_mode;
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    83
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    84
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    85
(* data kind 'HOL/datatypes' *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    86
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    87
structure DatatypesArgs =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    88
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    89
  val name = "HOL/datatypes";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    90
  type T = datatype_info Symtab.table;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    91
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    92
  val empty = Symtab.empty;
6556
daa00919502b theory data: copy;
wenzelm
parents: 6479
diff changeset
    93
  val copy = I;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    94
  val prep_ext = I;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    95
  val merge: T * T -> T = Symtab.merge (K true);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    96
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    97
  fun print sg tab =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    98
    Pretty.writeln (Pretty.strs ("datatypes:" ::
6851
526c0b90bcef cond_extern_table;
wenzelm
parents: 6766
diff changeset
    99
      map #1 (Sign.cond_extern_table sg Sign.typeK tab)));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   100
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   101
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   102
structure DatatypesData = TheoryDataFun(DatatypesArgs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   103
val get_datatypes_sg = DatatypesData.get_sg;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   104
val get_datatypes = DatatypesData.get;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   105
val put_datatypes = DatatypesData.put;
6441
268aa3c4a059 print_datatypes;
wenzelm
parents: 6427
diff changeset
   106
val print_datatypes = DatatypesData.print;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   107
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   108
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   109
(** theory information about datatypes **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   110
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   111
fun datatype_info_sg sg name = Symtab.lookup (get_datatypes_sg sg, name);
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   112
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   113
fun datatype_info_sg_err sg name = (case datatype_info_sg sg name of
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   114
      Some info => info
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   115
    | None => error ("Unknown datatype " ^ quote name));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   116
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   117
val datatype_info = datatype_info_sg o Theory.sign_of;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   118
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   119
fun datatype_info_err thy name = (case datatype_info thy name of
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   120
      Some info => info
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   121
    | None => error ("Unknown datatype " ^ quote name));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   122
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   123
fun constrs_of_sg sg tname = (case datatype_info_sg sg tname of
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   124
   Some {index, descr, ...} =>
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   125
     let val (_, _, constrs) = the (assoc (descr, index))
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   126
     in Some (map (fn (cname, _) => Const (cname, the (Sign.const_type sg cname))) constrs)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   127
     end
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   128
 | _ => None);
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   129
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   130
val constrs_of = constrs_of_sg o Theory.sign_of;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   131
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   132
fun case_const_of thy tname = (case datatype_info thy tname of
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   133
   Some {case_name, ...} => Some (Const (case_name, the (Sign.const_type
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   134
     (Theory.sign_of thy) case_name)))
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   135
 | _ => None);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   136
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   137
fun find_tname var Bi =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   138
  let val frees = map dest_Free (term_frees Bi)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   139
      val params = Logic.strip_params Bi;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   140
  in case assoc (frees @ params, var) of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   141
       None => error ("No such variable in subgoal: " ^ quote var)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   142
     | Some(Type (tn, _)) => tn
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   143
     | _ => error ("Cannot determine type of " ^ quote var)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   144
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   145
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   146
fun infer_tname state sign i aterm =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   147
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   148
    val (_, _, Bi, _) = dest_state (state, i)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   149
    val params = Logic.strip_params Bi;   (*params of subgoal i*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   150
    val params = rev (rename_wrt_term Bi params);   (*as they are printed*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   151
    val (types, sorts) = types_sorts state;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   152
    fun types' (a, ~1) = (case assoc (params, a) of None => types(a, ~1) | sm => sm)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   153
      | types' ixn = types ixn;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   154
    val (ct, _) = read_def_cterm (sign, types', sorts) [] false
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   155
                                  (aterm, TVar (("", 0), []));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   156
  in case #T (rep_cterm ct) of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   157
       Type (tn, _) => tn
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   158
     | _ => error ("Cannot determine type of " ^ quote aterm)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   159
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   160
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   161
(*Warn if the (induction) variable occurs Free among the premises, which
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   162
  usually signals a mistake.  But calls the tactic either way!*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   163
fun occs_in_prems tacf vars = 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   164
  SUBGOAL (fn (Bi, i) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   165
	   (if  exists (fn Free (a, _) => a mem vars)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   166
	              (foldr add_term_frees (#2 (strip_context Bi), []))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   167
	     then warning "Induction variable occurs also among premises!"
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   168
	     else ();
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   169
	    tacf i));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   170
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   171
(* generic induction tactic for datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   172
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   173
fun mutual_induct_tac vars i state =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   174
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   175
    val (_, _, Bi, _) = dest_state (state, i);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   176
    val {sign, ...} = rep_thm state;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   177
    val tn = find_tname (hd vars) Bi;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   178
    val {induction, ...} = datatype_info_sg_err sign tn;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   179
    val ind_vnames = map (fn (_ $ Var (ixn, _)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   180
      implode (tl (explode (Syntax.string_of_vname ixn))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   181
        (dest_conj (HOLogic.dest_Trueprop (concl_of induction)));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   182
    val insts = (ind_vnames ~~ vars) handle _ =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   183
      error ("Induction rule for type " ^ tn ^ " has different number of variables")
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   184
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   185
    occs_in_prems (res_inst_tac insts induction) vars i state
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   186
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   187
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   188
fun induct_tac var = mutual_induct_tac [var];
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   189
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   190
(* generic exhaustion tactic for datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   191
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   192
fun exhaust_tac aterm i state =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   193
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   194
    val {sign, ...} = rep_thm state;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   195
    val tn = infer_tname state sign i aterm;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   196
    val {exhaustion, ...} = datatype_info_sg_err sign tn;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   197
    val _ $ Var (ixn, _) $ _ = HOLogic.dest_Trueprop
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   198
      (hd (Logic.strip_assums_hyp (hd (prems_of exhaustion))));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   199
    val exh_vname = implode (tl (explode (Syntax.string_of_vname ixn)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   200
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   201
    res_inst_tac [(exh_vname, aterm)] exhaustion i state
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   202
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   203
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   204
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   205
(**** simplification procedure for showing distinctness of constructors ****)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   206
7060
berghofe
parents: 7049
diff changeset
   207
fun stripT (i, Type ("fun", [_, T])) = stripT (i + 1, T)
berghofe
parents: 7049
diff changeset
   208
  | stripT p = p;
berghofe
parents: 7049
diff changeset
   209
berghofe
parents: 7049
diff changeset
   210
fun stripC (i, f $ x) = stripC (i + 1, f)
berghofe
parents: 7049
diff changeset
   211
  | stripC p = p;
berghofe
parents: 7049
diff changeset
   212
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   213
val distinctN = "constr_distinct";
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   214
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   215
exception ConstrDistinct of term;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   216
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   217
fun distinct_proc sg _ (t as Const ("op =", _) $ t1 $ t2) =
7060
berghofe
parents: 7049
diff changeset
   218
  (case (stripC (0, t1), stripC (0, t2)) of
berghofe
parents: 7049
diff changeset
   219
     ((i, Const (cname1, T1)), (j, Const (cname2, T2))) =>
berghofe
parents: 7049
diff changeset
   220
         (case (stripT (0, T1), stripT (0, T2)) of
berghofe
parents: 7049
diff changeset
   221
            ((i', Type (tname1, _)), (j', Type (tname2, _))) =>
berghofe
parents: 7049
diff changeset
   222
                if tname1 = tname2 andalso not (cname1 = cname2) andalso i = i' andalso j = j' then
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   223
                   (case (constrs_of_sg sg tname1) of
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   224
                      Some constrs => let val cnames = map (fst o dest_Const) constrs
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   225
                        in if cname1 mem cnames andalso cname2 mem cnames then
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   226
                             let val eq_t = Logic.mk_equals (t, Const ("False", HOLogic.boolT));
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   227
                                 val eq_ct = cterm_of sg eq_t;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   228
                                 val Datatype_thy = theory "Datatype";
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   229
                                 val [In0_inject, In1_inject, In0_not_In1, In1_not_In0] =
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   230
                                   map (get_thm Datatype_thy)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   231
                                     ["In0_inject", "In1_inject", "In0_not_In1", "In1_not_In0"]
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   232
                             in (case (#distinct (datatype_info_sg_err sg tname1)) of
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   233
                                 QuickAndDirty => Some (Thm.invoke_oracle
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   234
                                   Datatype_thy distinctN (sg, ConstrDistinct eq_t))
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   235
                               | FewConstrs thms => Some (prove_goalw_cterm [] eq_ct (K
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   236
                                   [rtac eq_reflection 1, rtac iffI 1, rtac notE 1,
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   237
                                    atac 2, resolve_tac thms 1, etac FalseE 1]))
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   238
                               | ManyConstrs (thm, ss) => Some (prove_goalw_cterm [] eq_ct (K
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   239
                                   [rtac eq_reflection 1, rtac iffI 1, dtac thm 1,
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   240
                                    full_simp_tac ss 1,
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   241
                                    REPEAT (dresolve_tac [In0_inject, In1_inject] 1),
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   242
                                    eresolve_tac [In0_not_In1 RS notE, In1_not_In0 RS notE] 1,
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   243
                                    etac FalseE 1])))
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   244
                             end
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   245
                           else None
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   246
                        end
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   247
                    | None => None)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   248
                else None
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   249
          | _ => None)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   250
   | _ => None)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   251
  | distinct_proc sg _ _ = None;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   252
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   253
val distinct_pats = [Thm.read_cterm (Theory.sign_of HOL.thy) ("s = t", HOLogic.termTVar)];
7049
f59d33c6e1c7 Eliminated addDistinct.
berghofe
parents: 7015
diff changeset
   254
val distinct_simproc = mk_simproc distinctN distinct_pats distinct_proc;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   255
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   256
val dist_ss = HOL_ss addsimprocs [distinct_simproc];
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   257
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   258
val simproc_setup =
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   259
  [Theory.add_oracle (distinctN, fn (_, ConstrDistinct t) => t),
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   260
   fn thy => (simpset_ref_of thy := simpset_of thy addsimprocs [distinct_simproc]; thy)];
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   261
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   262
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   263
(* prepare types *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   264
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   265
fun read_typ sign ((Ts, sorts), str) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   266
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   267
    val T = Type.no_tvars (Sign.read_typ (sign, (curry assoc)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   268
      (map (apfst (rpair ~1)) sorts)) str) handle TYPE (msg, _, _) => error msg
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   269
  in (Ts @ [T], add_typ_tfrees (T, sorts)) end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   270
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   271
fun cert_typ sign ((Ts, sorts), raw_T) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   272
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   273
    val T = Type.no_tvars (Sign.certify_typ sign raw_T) handle
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   274
      TYPE (msg, _, _) => error msg;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   275
    val sorts' = add_typ_tfrees (T, sorts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   276
  in (Ts @ [T],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   277
      case duplicates (map fst sorts') of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   278
         [] => sorts'
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   279
       | dups => error ("Inconsistent sort constraints for " ^ commas dups))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   280
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   281
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   282
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   283
(**** make datatype info ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   284
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   285
fun make_dt_info descr induct reccomb_names rec_thms
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   286
  ((((((((i, (_, (tname, _, _))), case_name), case_thms),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   287
    exhaustion_thm), distinct_thm), inject), nchotomy), case_cong) = (tname,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   288
      {index = i,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   289
       descr = descr,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   290
       rec_names = reccomb_names,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   291
       rec_rewrites = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   292
       case_name = case_name,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   293
       case_rewrites = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   294
       induction = induct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   295
       exhaustion = exhaustion_thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   296
       distinct = distinct_thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   297
       inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   298
       nchotomy = nchotomy,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   299
       case_cong = case_cong});
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   300
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   301
fun store_clasimp thy (cla, simp) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   302
  (claset_ref_of thy := cla; simpset_ref_of thy := simp);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   303
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   304
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   305
(********************* axiomatic introduction of datatypes ********************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   306
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   307
fun add_and_get_axioms label tnames ts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   308
  foldr (fn ((tname, t), (thy', axs)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   309
    let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   310
      val thy'' = thy' |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   311
        Theory.add_path tname |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   312
        PureThy.add_axioms_i [((label, t), [])];
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   313
      val ax = get_axiom thy'' label
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   314
    in (Theory.parent_path thy'', ax::axs)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   315
    end) (tnames ~~ ts, (thy, []));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   316
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   317
fun add_and_get_axiomss label tnames tss thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   318
  foldr (fn ((tname, ts), (thy', axss)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   319
    let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   320
      val thy'' = thy' |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   321
        Theory.add_path tname |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   322
        PureThy.add_axiomss_i [((label, ts), [])];
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   323
      val axs = PureThy.get_thms thy'' label
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   324
    in (Theory.parent_path thy'', axs::axss)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   325
    end) (tnames ~~ tss, (thy, []));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   326
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   327
fun add_datatype_axm flat_names new_type_names descr sorts types_syntax constr_syntax dt_info thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   328
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   329
    val descr' = flat descr;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   330
    val recTs = get_rec_types descr' sorts;
5578
7de426cf179c Package now chooses type variable names more carefully to
berghofe
parents: 5279
diff changeset
   331
    val used = foldr add_typ_tfree_names (recTs, []);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   332
    val newTs = take (length (hd descr), recTs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   333
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   334
    val no_size = exists (fn (_, (_, _, constrs)) => exists (fn (_, cargs) => exists
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   335
      (fn (DtType ("fun", [_, DtRec _])) => true | _ => false) cargs) constrs) descr';
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   336
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   337
    (**** declare new types and constants ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   338
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   339
    val tyvars = map (fn (_, (_, Ts, _)) => map dest_DtTFree Ts) (hd descr);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   340
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   341
    val constr_decls = map (fn (((_, (_, _, constrs)), T), constr_syntax') =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   342
      map (fn ((_, cargs), (cname, mx)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   343
        (cname, map (typ_of_dtyp descr' sorts) cargs ---> T, mx))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   344
          (constrs ~~ constr_syntax')) ((hd descr) ~~ newTs ~~ constr_syntax);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   345
5578
7de426cf179c Package now chooses type variable names more carefully to
berghofe
parents: 5279
diff changeset
   346
    val rec_result_Ts = map TFree (variantlist (replicate (length descr') "'t", used) ~~
7de426cf179c Package now chooses type variable names more carefully to
berghofe
parents: 5279
diff changeset
   347
      replicate (length descr') HOLogic.termS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   348
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   349
    val reccomb_fn_Ts = flat (map (fn (i, (_, _, constrs)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   350
      map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   351
        let
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   352
          val Ts = map (typ_of_dtyp descr' sorts) cargs;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   353
          val recs = filter (is_rec_type o fst) (cargs ~~ Ts);
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   354
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   355
          fun mk_argT (DtRec k, _) = nth_elem (k, rec_result_Ts)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   356
            | mk_argT (DtType ("fun", [_, DtRec k]), Type ("fun", [T, _])) =
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   357
               T --> nth_elem (k, rec_result_Ts);
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   358
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   359
          val argTs = Ts @ map mk_argT recs
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   360
        in argTs ---> nth_elem (i, rec_result_Ts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   361
        end) constrs) descr');
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   362
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   363
    val big_reccomb_name = (space_implode "_" new_type_names) ^ "_rec";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   364
    val reccomb_names = if length descr' = 1 then [big_reccomb_name] else
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   365
      (map ((curry (op ^) (big_reccomb_name ^ "_")) o string_of_int)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   366
        (1 upto (length descr')));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   367
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   368
    val big_size_name = space_implode "_" new_type_names ^ "_size";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   369
    val size_names = if length (flat (tl descr)) = 1 then [big_size_name] else
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   370
      map (fn i => big_size_name ^ "_" ^ string_of_int i)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   371
        (1 upto length (flat (tl descr)));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   372
5578
7de426cf179c Package now chooses type variable names more carefully to
berghofe
parents: 5279
diff changeset
   373
    val freeT = TFree (variant used "'t", HOLogic.termS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   374
    val case_fn_Ts = map (fn (i, (_, _, constrs)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   375
      map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   376
        let val Ts = map (typ_of_dtyp descr' sorts) cargs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   377
        in Ts ---> freeT end) constrs) (hd descr);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   378
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   379
    val case_names = map (fn s => (s ^ "_case")) new_type_names;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   380
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   381
    val thy2' = thy |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   382
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   383
      (** new types **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   384
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   385
      curry (foldr (fn (((name, mx), tvs), thy') => thy' |>
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   386
          TypedefPackage.add_typedecls [(name, tvs, mx)]))
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   387
        (types_syntax ~~ tyvars) |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   388
      add_path flat_names (space_implode "_" new_type_names) |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   389
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   390
      (** primrec combinators **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   391
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   392
      Theory.add_consts_i (map (fn ((name, T), T') =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   393
        (name, reccomb_fn_Ts @ [T] ---> T', NoSyn))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   394
          (reccomb_names ~~ recTs ~~ rec_result_Ts)) |>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   395
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   396
      (** case combinators **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   397
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   398
      Theory.add_consts_i (map (fn ((name, T), Ts) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   399
        (name, Ts @ [T] ---> freeT, NoSyn))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   400
          (case_names ~~ newTs ~~ case_fn_Ts)) |>
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   401
      Theory.add_trrules_i (DatatypeProp.make_case_trrules new_type_names descr);
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   402
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   403
    val reccomb_names' = map (Sign.intern_const (Theory.sign_of thy2')) reccomb_names;
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   404
    val case_names' = map (Sign.intern_const (Theory.sign_of thy2')) case_names;
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   405
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   406
    val thy2 = thy2' |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   407
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   408
      (** size functions **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   409
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   410
      (if no_size then I else Theory.add_consts_i (map (fn (s, T) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   411
        (Sign.base_name s, T --> HOLogic.natT, NoSyn))
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   412
          (size_names ~~ drop (length (hd descr), recTs)))) |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   413
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   414
      (** constructors **)
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   415
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   416
      parent_path flat_names |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   417
      curry (foldr (fn (((((_, (_, _, constrs)), T), tname),
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   418
        constr_syntax'), thy') => thy' |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   419
          add_path flat_names tname |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   420
            Theory.add_consts_i (map (fn ((_, cargs), (cname, mx)) =>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   421
              (cname, map (typ_of_dtyp descr' sorts) cargs ---> T, mx))
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   422
                (constrs ~~ constr_syntax')) |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   423
          parent_path flat_names))
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   424
            (hd descr ~~ newTs ~~ new_type_names ~~ constr_syntax);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   425
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   426
    (**** introduction of axioms ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   427
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   428
    val rec_axs = DatatypeProp.make_primrecs new_type_names descr sorts thy2;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   429
    val size_axs = if no_size then [] else DatatypeProp.make_size new_type_names descr sorts thy2;
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   430
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   431
    val (thy3, inject) = thy2 |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   432
      Theory.add_path (space_implode "_" new_type_names) |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   433
      PureThy.add_axioms_i [(("induct", DatatypeProp.make_ind descr sorts), [])] |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   434
      PureThy.add_axiomss_i [(("recs", rec_axs), [])] |>
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   435
      (if no_size then I else PureThy.add_axiomss_i [(("size", size_axs), [])]) |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   436
      Theory.parent_path |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   437
      add_and_get_axiomss "inject" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   438
        (DatatypeProp.make_injs descr sorts);
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   439
    val induct = get_axiom thy3 "induct";
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   440
    val rec_thms = get_thms thy3 "recs";
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   441
    val size_thms = if no_size then [] else get_thms thy3 "size";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   442
    val (thy4, distinct) = add_and_get_axiomss "distinct" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   443
      (DatatypeProp.make_distincts new_type_names descr sorts thy3) thy3;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   444
    val (thy5, exhaustion) = add_and_get_axioms "exhaust" new_type_names
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   445
      (DatatypeProp.make_casedists descr sorts) thy4;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   446
    val (thy6, case_thms) = add_and_get_axiomss "cases" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   447
      (DatatypeProp.make_cases new_type_names descr sorts thy5) thy5;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   448
    val (split_ts, split_asm_ts) = ListPair.unzip
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   449
      (DatatypeProp.make_splits new_type_names descr sorts thy6);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   450
    val (thy7, split) = add_and_get_axioms "split" new_type_names split_ts thy6;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   451
    val (thy8, split_asm) = add_and_get_axioms "split_asm" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   452
      split_asm_ts thy7;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   453
    val (thy9, nchotomys) = add_and_get_axioms "nchotomy" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   454
      (DatatypeProp.make_nchotomys descr sorts) thy8;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   455
    val (thy10, case_congs) = add_and_get_axioms "case_cong" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   456
      (DatatypeProp.make_case_congs new_type_names descr sorts thy9) thy9;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   457
    
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   458
    val dt_infos = map (make_dt_info descr' induct reccomb_names' rec_thms)
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   459
      ((0 upto length (hd descr) - 1) ~~ (hd descr) ~~ case_names' ~~ case_thms ~~
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   460
        exhaustion ~~ replicate (length (hd descr)) QuickAndDirty ~~ inject ~~
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   461
          nchotomys ~~ case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   462
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   463
    val simps = flat (distinct @ inject @ case_thms) @ size_thms @ rec_thms;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   464
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   465
    val thy11 = thy10 |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   466
      Theory.add_path (space_implode "_" new_type_names) |>
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5892
diff changeset
   467
      PureThy.add_thmss [(("simps", simps), [])] |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   468
      put_datatypes (foldr Symtab.update (dt_infos, dt_info)) |>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   469
      Theory.parent_path;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   470
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   471
    val _ = store_clasimp thy11 ((claset_of thy11, simpset_of thy11)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   472
      addsimps2 flat case_thms addsimps2 size_thms addsimps2 rec_thms
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   473
      addIffs flat (inject @ distinct));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   474
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   475
  in
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   476
    (thy11,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   477
     {distinct = distinct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   478
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   479
      exhaustion = exhaustion,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   480
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   481
      case_thms = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   482
      split_thms = split ~~ split_asm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   483
      induction = induct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   484
      size = size_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   485
      simps = simps})
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   486
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   487
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   488
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   489
(******************* definitional introduction of datatypes *******************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   490
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   491
fun add_datatype_def flat_names new_type_names descr sorts types_syntax constr_syntax dt_info thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   492
  let
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   493
    val _ = message ("Proofs for datatype(s) " ^ commas_quote new_type_names);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   494
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   495
    val (thy2, inject, distinct, dist_rewrites, simproc_dists, induct) = thy |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   496
      DatatypeRepProofs.representation_proofs flat_names dt_info new_type_names descr sorts
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   497
        types_syntax constr_syntax;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   498
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   499
    val (thy3, casedist_thms) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   500
      DatatypeAbsProofs.prove_casedist_thms new_type_names descr sorts induct thy2;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   501
    val (thy4, reccomb_names, rec_thms) = DatatypeAbsProofs.prove_primrec_thms
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   502
      flat_names new_type_names descr sorts dt_info inject dist_rewrites dist_ss induct thy3;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   503
    val (thy6, case_names, case_thms) = DatatypeAbsProofs.prove_case_thms
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   504
      flat_names new_type_names descr sorts reccomb_names rec_thms thy4;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   505
    val (thy7, split_thms) = DatatypeAbsProofs.prove_split_thms new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   506
      descr sorts inject dist_rewrites casedist_thms case_thms thy6;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   507
    val (thy8, nchotomys) = DatatypeAbsProofs.prove_nchotomys new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   508
      descr sorts casedist_thms thy7;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   509
    val (thy9, case_congs) = DatatypeAbsProofs.prove_case_congs new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   510
      descr sorts nchotomys case_thms thy8;
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   511
    val (thy10, size_thms) = DatatypeAbsProofs.prove_size_thms flat_names new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   512
      descr sorts reccomb_names rec_thms thy9;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   513
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   514
    val dt_infos = map (make_dt_info (flat descr) induct reccomb_names rec_thms)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   515
      ((0 upto length (hd descr) - 1) ~~ (hd descr) ~~ case_names ~~ case_thms ~~
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   516
        casedist_thms ~~ simproc_dists ~~ inject ~~ nchotomys ~~ case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   517
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   518
    val simps = flat (distinct @ inject @ case_thms) @ size_thms @ rec_thms;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   519
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   520
    val thy11 = thy10 |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   521
      Theory.add_path (space_implode "_" new_type_names) |>
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5892
diff changeset
   522
      PureThy.add_thmss [(("simps", simps), [])] |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   523
      put_datatypes (foldr Symtab.update (dt_infos, dt_info)) |>
5663
aad79a127628 Fixed bug (improper handling of flag flat_names).
berghofe
parents: 5661
diff changeset
   524
      Theory.parent_path;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   525
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   526
    val _ = store_clasimp thy11 ((claset_of thy11, simpset_of thy11)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   527
      addsimps2 flat case_thms addsimps2 size_thms addsimps2 rec_thms
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   528
      addIffs flat (inject @ distinct));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   529
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   530
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   531
    (thy11,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   532
     {distinct = distinct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   533
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   534
      exhaustion = casedist_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   535
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   536
      case_thms = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   537
      split_thms = split_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   538
      induction = induct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   539
      size = size_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   540
      simps = simps})
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   541
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   542
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   543
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   544
(*********************** declare existing type as datatype *********************)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   545
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   546
fun gen_rep_datatype apply_theorems alt_names raw_distinct raw_inject raw_induction thy0 =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   547
  let
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   548
    fun app_thmss srcs thy = foldl_map (fn (thy, x) => apply_theorems x thy) (thy, srcs);
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   549
    fun app_thm src thy = apsnd Library.hd (apply_theorems [src] thy);
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   550
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   551
    val (((thy1, induction), inject), distinct) = thy0
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   552
      |> app_thmss raw_distinct
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   553
      |> apfst (app_thmss raw_inject)
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   554
      |> apfst (apfst (app_thm raw_induction));
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   555
    val sign = Theory.sign_of thy1;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   556
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   557
    val induction' = freezeT induction;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   558
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   559
    fun err t = error ("Ill-formed predicate in induction rule: " ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   560
      Sign.string_of_term sign t);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   561
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   562
    fun get_typ (t as _ $ Var (_, Type (tname, Ts))) =
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   563
          ((tname, map dest_TFree Ts) handle TERM _ => err t)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   564
      | get_typ t = err t;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   565
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   566
    val dtnames = map get_typ (dest_conj (HOLogic.dest_Trueprop (concl_of induction')));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   567
    val new_type_names = if_none alt_names (map fst dtnames);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   568
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   569
    fun get_constr t = (case Logic.strip_assums_concl t of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   570
        _ $ (_ $ t') => (case head_of t' of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   571
            Const (cname, cT) => (case strip_type cT of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   572
                (Ts, Type (tname, _)) => (tname, (cname, map (dtyp_of_typ dtnames) Ts))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   573
              | _ => err t)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   574
          | _ => err t)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   575
      | _ => err t);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   576
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   577
    fun make_dt_spec [] _ _ = []
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   578
      | make_dt_spec ((tname, tvs)::dtnames') i constrs =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   579
          let val (constrs', constrs'') = take_prefix (equal tname o fst) constrs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   580
          in (i, (tname, map DtTFree tvs, map snd constrs'))::
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   581
            (make_dt_spec dtnames' (i + 1) constrs'')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   582
          end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   583
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   584
    val descr = make_dt_spec dtnames 0 (map get_constr (prems_of induction'));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   585
    val sorts = add_term_tfrees (concl_of induction', []);
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   586
    val dt_info = get_datatypes thy1;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   587
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6423
diff changeset
   588
    val _ = message ("Proofs for datatype(s) " ^ commas_quote new_type_names);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   589
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   590
    val (thy2, casedist_thms) = thy1 |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   591
      DatatypeAbsProofs.prove_casedist_thms new_type_names [descr] sorts induction;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   592
    val (thy3, reccomb_names, rec_thms) = DatatypeAbsProofs.prove_primrec_thms
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   593
      false new_type_names [descr] sorts dt_info inject distinct dist_ss induction thy2;
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   594
    val (thy4, case_names, case_thms) = DatatypeAbsProofs.prove_case_thms false
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   595
      new_type_names [descr] sorts reccomb_names rec_thms thy3;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   596
    val (thy5, split_thms) = DatatypeAbsProofs.prove_split_thms
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   597
      new_type_names [descr] sorts inject distinct casedist_thms case_thms thy4;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   598
    val (thy6, nchotomys) = DatatypeAbsProofs.prove_nchotomys new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   599
      [descr] sorts casedist_thms thy5;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   600
    val (thy7, case_congs) = DatatypeAbsProofs.prove_case_congs new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   601
      [descr] sorts nchotomys case_thms thy6;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   602
    val (thy8, size_thms) =
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   603
      if exists (equal "Arith") (Sign.stamp_names_of (Theory.sign_of thy7)) then
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   604
        DatatypeAbsProofs.prove_size_thms false new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   605
          [descr] sorts reccomb_names rec_thms thy7
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   606
      else (thy7, []);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   607
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   608
    val dt_infos = map (make_dt_info descr induction reccomb_names rec_thms)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   609
      ((0 upto length descr - 1) ~~ descr ~~ case_names ~~ case_thms ~~
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   610
        casedist_thms ~~ map FewConstrs distinct ~~ inject ~~ nchotomys ~~ case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   611
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   612
    val simps = flat (distinct @ inject @ case_thms) @ size_thms @ rec_thms;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   613
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   614
    val thy9 = thy8 |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   615
      Theory.add_path (space_implode "_" new_type_names) |>
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5892
diff changeset
   616
      PureThy.add_thmss [(("simps", simps), [])] |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   617
      put_datatypes (foldr Symtab.update (dt_infos, dt_info)) |>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   618
      Theory.parent_path;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   619
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   620
    val _ = store_clasimp thy9 ((claset_of thy9, simpset_of thy9)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   621
      addsimps2 flat case_thms addsimps2 size_thms addsimps2 rec_thms
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   622
      addIffs flat (inject @ distinct));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   623
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   624
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   625
    (thy9,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   626
     {distinct = distinct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   627
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   628
      exhaustion = casedist_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   629
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   630
      case_thms = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   631
      split_thms = split_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   632
      induction = induction,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   633
      size = size_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   634
      simps = simps})
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   635
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   636
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   637
val rep_datatype = gen_rep_datatype IsarThy.apply_theorems;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   638
val rep_datatype_i = gen_rep_datatype IsarThy.apply_theorems_i;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   639
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   640
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   641
(******************************** add datatype ********************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   642
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   643
fun gen_add_datatype prep_typ flat_names new_type_names dts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   644
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   645
    val _ = Theory.requires thy "Datatype" "datatype definitions";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   646
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   647
    (* this theory is used just for parsing *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   648
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   649
    val tmp_thy = thy |>
5892
e5e44cc54eb2 Attribute.tthms_of;
wenzelm
parents: 5720
diff changeset
   650
      Theory.copy |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   651
      Theory.add_types (map (fn (tvs, tname, mx, _) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   652
        (tname, length tvs, mx)) dts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   653
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   654
    val sign = Theory.sign_of tmp_thy;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   655
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   656
    val (tyvars, _, _, _)::_ = dts;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   657
    val (new_dts, types_syntax) = ListPair.unzip (map (fn (tvs, tname, mx, _) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   658
      let val full_tname = Sign.full_name sign (Syntax.type_name tname mx)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   659
      in (case duplicates tvs of
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   660
            [] => if eq_set (tyvars, tvs) then ((full_tname, tvs), (tname, mx))
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   661
                  else error ("Mutually recursive datatypes must have same type parameters")
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   662
          | dups => error ("Duplicate parameter(s) for datatype " ^ full_tname ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   663
              " : " ^ commas dups))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   664
      end) dts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   665
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   666
    val _ = (case duplicates (map fst new_dts) @ duplicates new_type_names of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   667
      [] => () | dups => error ("Duplicate datatypes: " ^ commas dups));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   668
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   669
    fun prep_dt_spec ((dts', constr_syntax, sorts, i), (tvs, tname, mx, constrs)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   670
      let
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   671
        fun prep_constr ((constrs, constr_syntax', sorts'), (cname, cargs, mx')) =
5279
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   672
          let
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   673
            val (cargs', sorts'') = foldl (prep_typ sign) (([], sorts'), cargs);
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   674
            val _ = (case foldr add_typ_tfree_names (cargs', []) \\ tvs of
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   675
                [] => ()
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   676
              | vs => error ("Extra type variables on rhs: " ^ commas vs))
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   677
          in (constrs @ [((if flat_names then Sign.full_name sign else
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   678
                Sign.full_name_path sign tname) (Syntax.const_name cname mx'),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   679
                   map (dtyp_of_typ new_dts) cargs')],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   680
              constr_syntax' @ [(cname, mx')], sorts'')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   681
          end handle ERROR =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   682
            error ("The error above occured in constructor " ^ cname ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   683
              " of datatype " ^ tname);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   684
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   685
        val (constrs', constr_syntax', sorts') =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   686
          foldl prep_constr (([], [], sorts), constrs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   687
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   688
      in 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   689
        case duplicates (map fst constrs') of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   690
           [] =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   691
             (dts' @ [(i, (Sign.full_name sign (Syntax.type_name tname mx),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   692
                map DtTFree tvs, constrs'))],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   693
              constr_syntax @ [constr_syntax'], sorts', i + 1)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   694
         | dups => error ("Duplicate constructors " ^ commas dups ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   695
             " in datatype " ^ tname)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   696
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   697
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   698
    val (dts', constr_syntax, sorts', i) = foldl prep_dt_spec (([], [], [], 0), dts);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   699
    val sorts = sorts' @ (map (rpair (Sign.defaultS sign)) (tyvars \\ map fst sorts'));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   700
    val dt_info = get_datatypes thy;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   701
    val (descr, _) = unfold_datatypes sign dts' sorts dt_info dts' i;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   702
    val _ = check_nonempty descr;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   703
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   704
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   705
    (if (!quick_and_dirty) then add_datatype_axm else add_datatype_def)
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   706
      flat_names new_type_names descr sorts types_syntax constr_syntax dt_info thy
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   707
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   708
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   709
val add_datatype_i = gen_add_datatype cert_typ;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   710
val add_datatype = gen_add_datatype read_typ;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   711
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   712
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   713
(** package setup **)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   714
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   715
(* setup theory *)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   716
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   717
val setup = [DatatypesData.init] @ simproc_setup;
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   718
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   719
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   720
(* outer syntax *)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   721
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   722
local structure P = OuterParse and K = OuterSyntax.Keyword in
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   723
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   724
val datatype_decl =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   725
  Scan.option (P.$$$ "(" |-- P.name --| P.$$$ ")") -- P.type_args -- P.name -- P.opt_infix --
6729
b6e167580a32 formal comments (still dummy);
wenzelm
parents: 6723
diff changeset
   726
    (P.$$$ "=" |-- P.enum1 "|" (P.name -- Scan.repeat P.typ -- P.opt_mixfix --| P.marg_comment));
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   727
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   728
fun mk_datatype args =
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   729
  let
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   730
    val names = map (fn ((((None, _), t), _), _) => t | ((((Some t, _), _), _), _) => t) args;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   731
    val specs = map (fn ((((_, vs), t), mx), cons) => (vs, t, mx, map (fn ((x, y), z) => (x, y, z)) cons)) args;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   732
  in #1 o add_datatype false names specs end;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   733
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   734
val datatypeP =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   735
  OuterSyntax.command "datatype" "define inductive datatypes" K.thy_decl
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   736
    (P.and_list1 datatype_decl >> (Toplevel.theory o mk_datatype));
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   737
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   738
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   739
val rep_datatype_decl =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   740
  Scan.option (Scan.repeat1 P.name) --
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   741
    Scan.optional (P.$$$ "distinct" |-- P.!!! (P.and_list1 P.xthms1)) [] --
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   742
    Scan.optional (P.$$$ "inject" |-- P.!!! (P.and_list1 P.xthms1)) [] --
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   743
    (P.$$$ "induction" |-- P.!!! P.xthm);
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   744
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   745
fun mk_rep_datatype (((opt_ts, dss), iss), ind) = #1 o rep_datatype opt_ts dss iss ind;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   746
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   747
val rep_datatypeP =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   748
  OuterSyntax.command "rep_datatype" "represent existing types inductively" K.thy_decl
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   749
    (rep_datatype_decl >> (Toplevel.theory o mk_rep_datatype));
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   750
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   751
6479
b0448cab1b1e rep_datatype syntax: 'induction' instead of 'induct';
wenzelm
parents: 6441
diff changeset
   752
val _ = OuterSyntax.add_keywords ["distinct", "inject", "induction"];
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   753
val _ = OuterSyntax.add_parsers [datatypeP, rep_datatypeP];
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   754
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   755
end;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   756
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   757
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   758
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   759
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   760
structure BasicDatatypePackage: BASIC_DATATYPE_PACKAGE = DatatypePackage;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   761
open BasicDatatypePackage;