src/HOL/Tools/datatype_package.ML
author wenzelm
Mon, 09 Jun 2008 17:07:11 +0200
changeset 27097 9a6db5d8ee8c
parent 27002 215d64dc971e
child 27104 791607529f6d
permissions -rw-r--r--
signature cleanup -- no pervasives anymore;
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$
11539
0f17da240450 tuned headers;
wenzelm
parents: 11345
diff changeset
     3
    Author:     Stefan Berghofer, TU Muenchen
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     4
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
     5
Datatype package for Isabelle/HOL.
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     6
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     7
27097
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
     8
signature DATATYPE_PACKAGE =
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
     9
sig
27097
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    10
  val quiet_mode : bool ref
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    11
  val get_datatypes : theory -> DatatypeAux.datatype_info Symtab.table
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    12
  val print_datatypes : theory -> unit
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    13
  val get_datatype : theory -> string -> DatatypeAux.datatype_info option
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    14
  val the_datatype : theory -> string -> DatatypeAux.datatype_info
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    15
  val datatype_of_constr : theory -> string -> DatatypeAux.datatype_info option
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    16
  val datatype_of_case : theory -> string -> DatatypeAux.datatype_info option
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    17
  val the_datatype_spec : theory -> string -> (string * sort) list * (string * typ list) list
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    18
  val get_datatype_constrs : theory -> string -> (string * typ) list option
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    19
  val construction_interpretation : theory
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    20
    -> {atom : typ -> 'a, dtyp : string -> 'a, rtyp : string -> 'a list -> 'a}
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    21
    -> (string * sort) list -> string list
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    22
    -> (string * (string * 'a list) list) list
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    23
  val induct_tac : string -> int -> tactic
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9739
diff changeset
    24
  val induct_thm_tac : thm -> string -> int -> tactic
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
    25
  val case_tac : string -> int -> tactic
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    26
  val distinct_simproc : simproc
27097
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    27
  val make_case :  Proof.context -> bool -> string list -> term ->
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    28
    (term * term) list -> term * (term * (int * bool)) list
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    29
  val strip_case : Proof.context -> bool -> term -> (term * (term * term) list) option
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    30
  val interpretation : (string list -> theory -> theory) -> theory -> theory
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    31
  val rep_datatype_i : string list option -> (thm list * attribute list) list list ->
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    32
    (thm list * attribute list) list list -> (thm list * attribute list) ->
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
    33
    theory ->
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    34
      {distinct : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    35
       inject : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    36
       exhaustion : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    37
       rec_thms : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    38
       case_thms : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    39
       split_thms : (thm * thm) list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    40
       induction : thm,
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
    41
       simps : thm list} * theory
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26267
diff changeset
    42
  val rep_datatype : string list option -> (Facts.ref * Attrib.src list) list list ->
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26267
diff changeset
    43
    (Facts.ref * Attrib.src list) list list -> Facts.ref * Attrib.src list -> theory ->
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    44
      {distinct : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    45
       inject : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    46
       exhaustion : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    47
       rec_thms : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    48
       case_thms : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    49
       split_thms : (thm * thm) list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    50
       induction : thm,
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
    51
       simps : thm list} * theory
27097
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    52
  val add_datatype_i : bool -> bool -> string list -> (string list * bstring * mixfix *
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    53
    (bstring * typ list * mixfix) list) list -> theory ->
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    54
      {distinct : thm list list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    55
       inject : thm list list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    56
       exhaustion : thm list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    57
       rec_thms : thm list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    58
       case_thms : thm list list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    59
       split_thms : (thm * thm) list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    60
       induction : thm,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    61
       simps : thm list} * theory
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    62
  val add_datatype : bool -> string list -> (string list * bstring * mixfix *
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    63
    (bstring * string list * mixfix) list) list -> theory ->
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    64
      {distinct : thm list list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    65
       inject : thm list list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    66
       exhaustion : thm list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    67
       rec_thms : thm list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    68
       case_thms : thm list list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    69
       split_thms : (thm * thm) list,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    70
       induction : thm,
9a6db5d8ee8c signature cleanup -- no pervasives anymore;
wenzelm
parents: 27002
diff changeset
    71
       simps : thm list} * theory
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18702
diff changeset
    72
  val setup: theory -> theory
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    73
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    74
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    75
structure DatatypePackage : DATATYPE_PACKAGE =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    76
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    77
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    78
open DatatypeAux;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    79
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    80
val quiet_mode = quiet_mode;
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    81
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    82
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22777
diff changeset
    83
(* theory data *)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    84
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
    85
structure DatatypesData = TheoryDataFun
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22777
diff changeset
    86
(
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    87
  type T =
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    88
    {types: datatype_info Symtab.table,
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    89
     constrs: datatype_info Symtab.table,
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    90
     cases: datatype_info Symtab.table};
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    91
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    92
  val empty =
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    93
    {types = Symtab.empty, constrs = Symtab.empty, cases = Symtab.empty};
6556
daa00919502b theory data: copy;
wenzelm
parents: 6479
diff changeset
    94
  val copy = I;
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
    95
  val extend = I;
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    96
  fun merge _
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    97
    ({types = types1, constrs = constrs1, cases = cases1},
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    98
     {types = types2, constrs = constrs2, cases = cases2}) =
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
    99
    {types = Symtab.merge (K true) (types1, types2),
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   100
     constrs = Symtab.merge (K true) (constrs1, constrs2),
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   101
     cases = Symtab.merge (K true) (cases1, cases2)};
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22777
diff changeset
   102
);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   103
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   104
val get_datatypes = #types o DatatypesData.get;
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   105
val map_datatypes = DatatypesData.map;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22777
diff changeset
   106
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22777
diff changeset
   107
fun print_datatypes thy =
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22777
diff changeset
   108
  Pretty.writeln (Pretty.strs ("datatypes:" ::
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22777
diff changeset
   109
    map #1 (NameSpace.extern_table (Sign.type_space thy, get_datatypes thy))));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   110
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   111
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   112
(** theory information about datatypes **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   113
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   114
fun put_dt_infos (dt_infos : (string * datatype_info) list) =
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   115
  map_datatypes (fn {types, constrs, cases} =>
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   116
    {types = fold Symtab.update dt_infos types,
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   117
     constrs = fold Symtab.update
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   118
       (maps (fn (_, info as {descr, index, ...}) => map (rpair info o fst)
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   119
          (#3 (the (AList.lookup op = descr index)))) dt_infos) constrs,
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   120
     cases = fold Symtab.update
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   121
       (map (fn (_, info as {case_name, ...}) => (case_name, info)) dt_infos)
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   122
       cases});
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   123
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   124
val get_datatype = Symtab.lookup o get_datatypes;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   125
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   126
fun the_datatype thy name = (case get_datatype thy name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   127
      SOME info => info
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   128
    | NONE => error ("Unknown datatype " ^ quote name));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   129
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   130
val datatype_of_constr = Symtab.lookup o #constrs o DatatypesData.get;
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   131
val datatype_of_case = Symtab.lookup o #cases o DatatypesData.get;
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   132
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   133
fun get_datatype_descr thy dtco =
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   134
  get_datatype thy dtco
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   135
  |> Option.map (fn info as { descr, index, ... } =>
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   136
       (info, (((fn SOME (_, dtys, cos) => (dtys, cos)) o AList.lookup (op =) descr) index)));
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   137
25537
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   138
fun the_datatype_spec thy dtco =
18518
3b1dfa53e64f adaptions to changes in code generator
haftmann
parents: 18462
diff changeset
   139
  let
26093
haftmann
parents: 25888
diff changeset
   140
    val info as { descr, index, sorts = raw_sorts, ... } = the_datatype thy dtco;
haftmann
parents: 25888
diff changeset
   141
    val SOME (_, dtys, raw_cos) = AList.lookup (op =) descr index;
haftmann
parents: 25888
diff changeset
   142
    val sorts = map ((fn v => (v, (the o AList.lookup (op =) raw_sorts) v))
haftmann
parents: 25888
diff changeset
   143
      o DatatypeAux.dest_DtTFree) dtys;
haftmann
parents: 25888
diff changeset
   144
    val cos = map
haftmann
parents: 25888
diff changeset
   145
      (fn (co, tys) => (co, map (DatatypeAux.typ_of_dtyp descr sorts) tys)) raw_cos;
haftmann
parents: 25888
diff changeset
   146
  in (sorts, cos) end;
18518
3b1dfa53e64f adaptions to changes in code generator
haftmann
parents: 18462
diff changeset
   147
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   148
fun get_datatype_constrs thy dtco =
25537
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   149
  case try (the_datatype_spec thy) dtco
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   150
   of SOME (sorts, cos) =>
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   151
        let
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   152
          fun subst (v, sort) = TVar ((v, 0), sort);
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   153
          fun subst_ty (TFree v) = subst v
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   154
            | subst_ty ty = ty;
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   155
          val dty = Type (dtco, map subst sorts);
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   156
          fun mk_co (co, tys) = (co, map (Term.map_atyps subst_ty) tys ---> dty);
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   157
        in SOME (map mk_co cos) end
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   158
    | NONE => NONE;
18518
3b1dfa53e64f adaptions to changes in code generator
haftmann
parents: 18462
diff changeset
   159
26267
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   160
fun construction_interpretation thy { atom, dtyp, rtyp } sorts tycos =
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   161
  let
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   162
    val descr = (#descr o the_datatype thy o hd) tycos;
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   163
    val k = length tycos;
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   164
    val descr_of = the o AList.lookup (op =) descr;
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   165
    fun interpT (T as DtTFree _) = atom (typ_of_dtyp descr sorts T)
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   166
      | interpT (T as DtType (tyco, Ts)) = if is_rec_type T
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   167
          then rtyp tyco (map interpT Ts)
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   168
          else atom (typ_of_dtyp descr sorts T)
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   169
      | interpT (DtRec l) = if l < k then (dtyp o #1 o descr_of) l
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   170
          else let val (tyco, Ts, _) = descr_of l
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   171
          in rtyp tyco (map interpT Ts) end;
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   172
    fun interpC (c, Ts) = (c, map interpT Ts);
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   173
    fun interpK (_, (tyco, _, cs)) = (tyco, map interpC cs);
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   174
  in map interpK (Library.take (k, descr)) end;
ba710daf77a7 added combinator for interpretation of construction of datatype
haftmann
parents: 26111
diff changeset
   175
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   176
fun find_tname var Bi =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   177
  let val frees = map dest_Free (term_frees Bi)
14412
109cc0dc706b find_tname now handles parameter renaming properly ("as they are printed").
berghofe
parents: 14174
diff changeset
   178
      val params = rename_wrt_term Bi (Logic.strip_params Bi);
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   179
  in case AList.lookup (op =) (frees @ params) var of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   180
       NONE => error ("No such variable in subgoal: " ^ quote var)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   181
     | SOME(Type (tn, _)) => tn
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   182
     | _ => error ("Cannot determine type of " ^ quote var)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   183
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   184
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   185
fun infer_tname state i aterm =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   186
  let
22578
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 22480
diff changeset
   187
    val sign = Thm.theory_of_thm state;
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   188
    val (_, _, Bi, _) = Thm.dest_state (state, i)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   189
    val params = Logic.strip_params Bi;   (*params of subgoal i*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   190
    val params = rev (rename_wrt_term Bi params);   (*as they are printed*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   191
    val (types, sorts) = types_sorts state;
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   192
    fun types' (a, ~1) = (case AList.lookup (op =) params a of NONE => types(a, ~1) | sm => sm)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   193
      | types' ixn = types ixn;
22709
9ab51bac6287 removed obsolete TypeInfer.logicT -- use dummyT;
wenzelm
parents: 22675
diff changeset
   194
    val ([ct], _) = Thm.read_def_cterms (sign, types', sorts) [] false [(aterm, dummyT)];
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   195
  in case #T (rep_cterm ct) of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   196
       Type (tn, _) => tn
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   197
     | _ => error ("Cannot determine type of " ^ quote aterm)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   198
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   199
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   200
(*Warn if the (induction) variable occurs Free among the premises, which
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   201
  usually signals a mistake.  But calls the tactic either way!*)
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   202
fun occs_in_prems tacf vars =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   203
  SUBGOAL (fn (Bi, i) =>
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   204
           (if exists (fn (a, _) => member (op =) vars a)
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   205
                      (fold Term.add_frees (#2 (strip_context Bi)) [])
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   206
             then warning "Induction variable occurs also among premises!"
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   207
             else ();
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   208
            tacf i));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   209
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   210
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   211
(* generic induction tactic for datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   212
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   213
local
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   214
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   215
fun prep_var (Var (ixn, _), SOME x) = SOME (ixn, x)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   216
  | prep_var _ = NONE;
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   217
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   218
fun prep_inst (concl, xs) = (*exception Library.UnequalLengths*)
24830
a7b3ab44d993 moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
wenzelm
parents: 24770
diff changeset
   219
  let val vs = Induct.vars_of concl
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   220
  in map_filter prep_var (Library.drop (length vs - length xs, vs) ~~ xs) end;
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   221
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   222
in
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   223
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   224
fun gen_induct_tac inst_tac (varss, opt_rule) i state =
18751
38dc4ff2a32b bugfix: induct_tac no longer raises THM "dest_state"
paulson
parents: 18728
diff changeset
   225
  SUBGOAL (fn (Bi,_) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   226
  let
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   227
    val (rule, rule_name) =
18751
38dc4ff2a32b bugfix: induct_tac no longer raises THM "dest_state"
paulson
parents: 18728
diff changeset
   228
      case opt_rule of
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   229
          SOME r => (r, "Induction rule")
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   230
        | NONE =>
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   231
            let val tn = find_tname (hd (map_filter I (flat varss))) Bi
22598
f31a869077f0 rep_thm/cterm/ctyp: removed obsolete sign field;
wenzelm
parents: 22578
diff changeset
   232
                val thy = Thm.theory_of_thm state
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   233
            in (#induction (the_datatype thy tn), "Induction rule for type " ^ tn)
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   234
            end
11725
d0c37d04906b HOLogic.dest_concls, InductAttrib.vars_of;
wenzelm
parents: 11539
diff changeset
   235
    val concls = HOLogic.dest_concls (Thm.concl_of rule);
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   236
    val insts = maps prep_inst (concls ~~ varss) handle Library.UnequalLengths =>
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   237
      error (rule_name ^ " has different numbers of variables");
18751
38dc4ff2a32b bugfix: induct_tac no longer raises THM "dest_state"
paulson
parents: 18728
diff changeset
   238
  in occs_in_prems (inst_tac insts rule) (map #2 insts) i end)
38dc4ff2a32b bugfix: induct_tac no longer raises THM "dest_state"
paulson
parents: 18728
diff changeset
   239
  i state;
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   240
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   241
fun induct_tac s =
15444
4f14c151d9f1 induct_tac and case_tac no longer depend on Syntax.string_of_vname.
berghofe
parents: 14981
diff changeset
   242
  gen_induct_tac Tactic.res_inst_tac'
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   243
    (map (single o SOME) (Syntax.read_idents s), NONE);
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   244
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9739
diff changeset
   245
fun induct_thm_tac th s =
15444
4f14c151d9f1 induct_tac and case_tac no longer depend on Syntax.string_of_vname.
berghofe
parents: 14981
diff changeset
   246
  gen_induct_tac Tactic.res_inst_tac'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   247
    ([map SOME (Syntax.read_idents s)], SOME th);
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9739
diff changeset
   248
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   249
end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   250
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   251
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   252
(* generic case tactic for datatypes *)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   253
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   254
fun case_inst_tac inst_tac t rule i state =
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   255
  let
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   256
    val _ $ Var (ixn, _) $ _ = HOLogic.dest_Trueprop
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   257
      (hd (Logic.strip_assums_hyp (hd (Thm.prems_of rule))));
15444
4f14c151d9f1 induct_tac and case_tac no longer depend on Syntax.string_of_vname.
berghofe
parents: 14981
diff changeset
   258
  in inst_tac [(ixn, t)] rule i state end;
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   259
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   260
fun gen_case_tac inst_tac (t, SOME rule) i state =
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   261
      case_inst_tac inst_tac t rule i state
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   262
  | gen_case_tac inst_tac (t, NONE) i state =
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   263
      let val tn = infer_tname state i t in
15444
4f14c151d9f1 induct_tac and case_tac no longer depend on Syntax.string_of_vname.
berghofe
parents: 14981
diff changeset
   264
        if tn = HOLogic.boolN then inst_tac [(("P", 0), t)] case_split_thm i state
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   265
        else case_inst_tac inst_tac t
22578
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 22480
diff changeset
   266
               (#exhaustion (the_datatype (Thm.theory_of_thm state) tn))
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   267
               i state
14471
5688b05b2575 case_tac no longer raises THM exception if goal number is out of range.
berghofe
parents: 14412
diff changeset
   268
      end handle THM _ => Seq.empty;
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   269
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   270
fun case_tac t = gen_case_tac Tactic.res_inst_tac' (t, NONE);
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   271
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   272
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   273
8541
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   274
(** Isar tactic emulations **)
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   275
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   276
local
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   277
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   278
val rule_spec = Scan.lift (Args.$$$ "rule" -- Args.$$$ ":");
18988
d6e5fa2ba8b8 Args/Attrib syntax: Context.generic;
wenzelm
parents: 18964
diff changeset
   279
val opt_rule = Scan.option (rule_spec |-- Attrib.thm);
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   280
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15661
diff changeset
   281
val varss =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15661
diff changeset
   282
  Args.and_list (Scan.repeat (Scan.unless rule_spec (Scan.lift (Args.maybe Args.name))));
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   283
20328
5b240a4216b0 RuleInsts.bires_inst_tac;
wenzelm
parents: 20218
diff changeset
   284
val inst_tac = RuleInsts.bires_inst_tac false;
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   285
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   286
fun induct_meth ctxt (varss, opt_rule) =
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   287
  gen_induct_tac (inst_tac ctxt) (varss, opt_rule);
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   288
fun case_meth ctxt (varss, opt_rule) =
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   289
  gen_case_tac (inst_tac ctxt) (varss, opt_rule);
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   290
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   291
in
8541
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   292
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   293
val tactic_emulations =
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   294
 [("induct_tac", Method.goal_args_ctxt' (varss -- opt_rule) induct_meth,
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   295
    "induct_tac emulation (dynamic instantiation)"),
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   296
  ("case_tac", Method.goal_args_ctxt' (Scan.lift Args.name -- opt_rule) case_meth,
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   297
    "case_tac emulation (dynamic instantiation)")];
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   298
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   299
end;
8541
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   300
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   301
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   302
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   303
(** induct method setup **)
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   304
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   305
(* case names *)
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   306
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   307
local
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   308
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   309
fun dt_recs (DtTFree _) = []
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   310
  | dt_recs (DtType (_, dts)) = maps dt_recs dts
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   311
  | dt_recs (DtRec i) = [i];
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   312
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   313
fun dt_cases (descr: descr) (_, args, constrs) =
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   314
  let
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   315
    fun the_bname i = Sign.base_name (#1 (the (AList.lookup (op =) descr i)));
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   316
    val bnames = map the_bname (distinct (op =) (maps dt_recs args));
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   317
  in map (fn (c, _) => space_implode "_" (Sign.base_name c :: bnames)) constrs end;
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   318
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   319
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   320
fun induct_cases descr =
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   321
  DatatypeProp.indexify_names (maps (dt_cases descr) (map #2 descr));
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   322
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   323
fun exhaust_cases descr i = dt_cases descr (the (AList.lookup (op =) descr i));
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   324
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   325
in
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   326
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   327
fun mk_case_names_induct descr = RuleCases.case_names (induct_cases descr);
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   328
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   329
fun mk_case_names_exhausts descr new =
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   330
  map (RuleCases.case_names o exhaust_cases descr o #1)
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   331
    (filter (fn ((_, (name, _, _))) => member (op =) new name) descr);
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   332
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   333
end;
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   334
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   335
fun add_rules simps case_thms rec_thms inject distinct
11345
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   336
                  weak_case_congs cong_att =
21127
c8e862897d13 cleaned up
haftmann
parents: 21045
diff changeset
   337
  PureThy.add_thmss [(("simps", simps), []),
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   338
    (("", flat case_thms @
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   339
          flat distinct @ rec_thms), [Simplifier.simp_add]),
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   340
    (("", rec_thms), [RecfunCodegen.add_default]),
21127
c8e862897d13 cleaned up
haftmann
parents: 21045
diff changeset
   341
    (("", flat inject), [iff_add]),
21689
58abd6d8abd1 Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents: 21646
diff changeset
   342
    (("", map (fn th => th RS notE) (flat distinct)), [Classical.safe_elim NONE]),
21127
c8e862897d13 cleaned up
haftmann
parents: 21045
diff changeset
   343
    (("", weak_case_congs), [cong_att])]
c8e862897d13 cleaned up
haftmann
parents: 21045
diff changeset
   344
  #> snd;
11345
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   345
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   346
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   347
(* add_cases_induct *)
8306
9855f1801d2b HOLogic.dest_conj;
wenzelm
parents: 8279
diff changeset
   348
19874
cc4b2b882e4c ProjectRule now context dependent;
wenzelm
parents: 19841
diff changeset
   349
fun add_cases_induct infos induction thy =
8306
9855f1801d2b HOLogic.dest_conj;
wenzelm
parents: 8279
diff changeset
   350
  let
19874
cc4b2b882e4c ProjectRule now context dependent;
wenzelm
parents: 19841
diff changeset
   351
    val inducts = ProjectRule.projections (ProofContext.init thy) induction;
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   352
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   353
    fun named_rules (name, {index, exhaustion, ...}: datatype_info) =
24830
a7b3ab44d993 moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
wenzelm
parents: 24770
diff changeset
   354
      [(("", nth inducts index), [Induct.induct_type name]),
a7b3ab44d993 moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
wenzelm
parents: 24770
diff changeset
   355
       (("", exhaustion), [Induct.cases_type name])];
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   356
    fun unnamed_rule i =
24830
a7b3ab44d993 moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
wenzelm
parents: 24770
diff changeset
   357
      (("", nth inducts i), [PureThy.kind_internal, Induct.induct_type ""]);
18462
b67d423b5234 *.inducts holds all projected rules;
wenzelm
parents: 18455
diff changeset
   358
  in
19874
cc4b2b882e4c ProjectRule now context dependent;
wenzelm
parents: 19841
diff changeset
   359
    thy |> PureThy.add_thms
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   360
      (maps named_rules infos @
19874
cc4b2b882e4c ProjectRule now context dependent;
wenzelm
parents: 19841
diff changeset
   361
        map unnamed_rule (length infos upto length inducts - 1)) |> snd
cc4b2b882e4c ProjectRule now context dependent;
wenzelm
parents: 19841
diff changeset
   362
    |> PureThy.add_thmss [(("inducts", inducts), [])] |> snd
18462
b67d423b5234 *.inducts holds all projected rules;
wenzelm
parents: 18455
diff changeset
   363
  end;
8306
9855f1801d2b HOLogic.dest_conj;
wenzelm
parents: 8279
diff changeset
   364
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   365
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   366
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   367
(**** simplification procedure for showing distinctness of constructors ****)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   368
7060
berghofe
parents: 7049
diff changeset
   369
fun stripT (i, Type ("fun", [_, T])) = stripT (i + 1, T)
berghofe
parents: 7049
diff changeset
   370
  | stripT p = p;
berghofe
parents: 7049
diff changeset
   371
berghofe
parents: 7049
diff changeset
   372
fun stripC (i, f $ x) = stripC (i + 1, f)
berghofe
parents: 7049
diff changeset
   373
  | stripC p = p;
berghofe
parents: 7049
diff changeset
   374
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   375
val distinctN = "constr_distinct";
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   376
25537
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   377
fun distinct_rule thy ss tname eq_t = case #distinct (the_datatype thy tname) of
26533
aeef55a3d1d5 Deleted code for axiomatic introduction of datatypes. Instead, the package
berghofe
parents: 26496
diff changeset
   378
    FewConstrs thms => Goal.prove (Simplifier.the_context ss) [] [] eq_t (K
25537
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   379
      (EVERY [rtac eq_reflection 1, rtac iffI 1, rtac notE 1,
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   380
        atac 2, resolve_tac thms 1, etac FalseE 1]))
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   381
  | ManyConstrs (thm, simpset) =>
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   382
      let
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   383
        val [In0_inject, In1_inject, In0_not_In1, In1_not_In0] =
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   384
          map (PureThy.get_thm (ThyInfo.the_theory "Datatype" thy))
25537
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   385
            ["In0_inject", "In1_inject", "In0_not_In1", "In1_not_In0"];
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   386
      in
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   387
        Goal.prove (Simplifier.the_context ss) [] [] eq_t (K
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   388
        (EVERY [rtac eq_reflection 1, rtac iffI 1, dtac thm 1,
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   389
          full_simp_tac (Simplifier.inherit_context ss simpset) 1,
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   390
          REPEAT (dresolve_tac [In0_inject, In1_inject] 1),
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   391
          eresolve_tac [In0_not_In1 RS notE, In1_not_In0 RS notE] 1,
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   392
          etac FalseE 1]))
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   393
      end;
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   394
19539
5b37bb0ad964 ThyInfo.the_theory;
wenzelm
parents: 19346
diff changeset
   395
fun distinct_proc thy ss (t as Const ("op =", _) $ t1 $ t2) =
7060
berghofe
parents: 7049
diff changeset
   396
  (case (stripC (0, t1), stripC (0, t2)) of
berghofe
parents: 7049
diff changeset
   397
     ((i, Const (cname1, T1)), (j, Const (cname2, T2))) =>
berghofe
parents: 7049
diff changeset
   398
         (case (stripT (0, T1), stripT (0, T2)) of
berghofe
parents: 7049
diff changeset
   399
            ((i', Type (tname1, _)), (j', Type (tname2, _))) =>
berghofe
parents: 7049
diff changeset
   400
                if tname1 = tname2 andalso not (cname1 = cname2) andalso i = i' andalso j = j' then
19539
5b37bb0ad964 ThyInfo.the_theory;
wenzelm
parents: 19346
diff changeset
   401
                   (case (get_datatype_descr thy) tname1 of
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19046
diff changeset
   402
                      SOME (_, (_, constrs)) => let val cnames = map fst constrs
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   403
                        in if cname1 mem cnames andalso cname2 mem cnames then
25537
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   404
                             SOME (distinct_rule thy ss tname1
55017c8b0a24 interface and distinct simproc tuned
haftmann
parents: 25495
diff changeset
   405
                               (Logic.mk_equals (t, Const ("False", HOLogic.boolT))))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   406
                           else NONE
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   407
                        end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   408
                    | NONE => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   409
                else NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   410
          | _ => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   411
   | _ => NONE)
20054
24d176b8f240 distinct simproc/simpset: proper context;
wenzelm
parents: 19925
diff changeset
   412
  | distinct_proc _ _ _ = NONE;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   413
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13340
diff changeset
   414
val distinct_simproc =
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   415
  Simplifier.simproc HOL.thy distinctN ["s = t"] distinct_proc;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   416
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   417
val dist_ss = HOL_ss addsimprocs [distinct_simproc];
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   418
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   419
val simproc_setup =
26496
49ae9456eba9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26343
diff changeset
   420
  Simplifier.map_simpset (fn ss => ss addsimprocs [distinct_simproc]);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   421
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   422
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   423
(**** translation rules for case ****)
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   424
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   425
fun make_case ctxt = DatatypeCase.make_case
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   426
  (datatype_of_constr (ProofContext.theory_of ctxt)) ctxt;
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   427
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   428
fun strip_case ctxt = DatatypeCase.strip_case
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   429
  (datatype_of_case (ProofContext.theory_of ctxt));
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   430
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   431
fun add_case_tr' case_names thy =
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24711
diff changeset
   432
  Sign.add_advanced_trfuns ([], [],
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   433
    map (fn case_name =>
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   434
      let val case_name' = Sign.const_syntax_name thy case_name
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   435
      in (case_name', DatatypeCase.case_tr' datatype_of_case case_name')
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   436
      end) case_names, []) thy;
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   437
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   438
val trfun_setup =
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24711
diff changeset
   439
  Sign.add_advanced_trfuns ([],
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24346
diff changeset
   440
    [("_case_syntax", DatatypeCase.case_tr true datatype_of_constr)],
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   441
    [], []);
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   442
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   443
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   444
(* prepare types *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   445
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   446
fun read_typ sign ((Ts, sorts), str) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   447
  let
22675
acf10be7dcca cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
wenzelm
parents: 22598
diff changeset
   448
    val T = Type.no_tvars (Sign.read_def_typ (sign, AList.lookup (op =)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   449
      (map (apfst (rpair ~1)) sorts)) str) handle TYPE (msg, _, _) => error msg
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   450
  in (Ts @ [T], add_typ_tfrees (T, sorts)) end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   451
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   452
fun cert_typ sign ((Ts, sorts), raw_T) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   453
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   454
    val T = Type.no_tvars (Sign.certify_typ sign raw_T) handle
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   455
      TYPE (msg, _, _) => error msg;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   456
    val sorts' = add_typ_tfrees (T, sorts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   457
  in (Ts @ [T],
18964
67f572e03236 renamed gen_duplicates to duplicates;
wenzelm
parents: 18963
diff changeset
   458
      case duplicates (op =) (map fst sorts') of
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   459
         [] => sorts'
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   460
       | dups => error ("Inconsistent sort constraints for " ^ commas dups))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   461
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   462
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   463
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   464
(**** make datatype info ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   465
25677
8b2ddc6e7be1 - Removed redundant head_len field in datatype_info
berghofe
parents: 25537
diff changeset
   466
fun make_dt_info alt_names descr sorts induct reccomb_names rec_thms
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   467
    (((((((((i, (_, (tname, _, _))), case_name), case_thms),
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   468
      exhaustion_thm), distinct_thm), inject), nchotomy), case_cong), weak_case_cong) =
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   469
  (tname,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   470
   {index = i,
25677
8b2ddc6e7be1 - Removed redundant head_len field in datatype_info
berghofe
parents: 25537
diff changeset
   471
    alt_names = alt_names,
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   472
    descr = descr,
18319
c52b139ebde0 Added new component "sorts" to record datatype_info.
berghofe
parents: 18314
diff changeset
   473
    sorts = sorts,
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   474
    rec_names = reccomb_names,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   475
    rec_rewrites = rec_thms,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   476
    case_name = case_name,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   477
    case_rewrites = case_thms,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   478
    induction = induct,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   479
    exhaustion = exhaustion_thm,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   480
    distinct = distinct_thm,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   481
    inject = inject,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   482
    nchotomy = nchotomy,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   483
    case_cong = case_cong,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   484
    weak_case_cong = weak_case_cong});
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   485
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   486
structure DatatypeInterpretation = InterpretationFun(type T = string list val eq = op =);
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   487
val interpretation = DatatypeInterpretation.interpretation;
24626
85eceef2edc7 introduced generic concepts for theory interpretators
haftmann
parents: 24624
diff changeset
   488
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   489
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   490
(******************* definitional introduction of datatypes *******************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   491
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   492
fun add_datatype_def flat_names new_type_names descr sorts types_syntax constr_syntax dt_info
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   493
    case_names_induct case_names_exhausts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   494
  let
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   495
    val _ = message ("Proofs for datatype(s) " ^ commas_quote new_type_names);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   496
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   497
    val ((inject, distinct, dist_rewrites, simproc_dists, induct), thy2) = thy |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   498
      DatatypeRepProofs.representation_proofs flat_names dt_info new_type_names descr sorts
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   499
        types_syntax constr_syntax case_names_induct;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   500
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   501
    val (casedist_thms, thy3) = DatatypeAbsProofs.prove_casedist_thms new_type_names descr
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   502
      sorts induct case_names_exhausts thy2;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   503
    val ((reccomb_names, rec_thms), thy4) = DatatypeAbsProofs.prove_primrec_thms
20054
24d176b8f240 distinct simproc/simpset: proper context;
wenzelm
parents: 19925
diff changeset
   504
      flat_names new_type_names descr sorts dt_info inject dist_rewrites
24d176b8f240 distinct simproc/simpset: proper context;
wenzelm
parents: 19925
diff changeset
   505
      (Simplifier.theory_context thy3 dist_ss) induct thy3;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   506
    val ((case_thms, case_names), thy6) = DatatypeAbsProofs.prove_case_thms
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   507
      flat_names new_type_names descr sorts reccomb_names rec_thms thy4;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   508
    val (split_thms, thy7) = DatatypeAbsProofs.prove_split_thms new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   509
      descr sorts inject dist_rewrites casedist_thms case_thms thy6;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   510
    val (nchotomys, thy8) = DatatypeAbsProofs.prove_nchotomys new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   511
      descr sorts casedist_thms thy7;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   512
    val (case_congs, thy9) = DatatypeAbsProofs.prove_case_congs new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   513
      descr sorts nchotomys case_thms thy8;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   514
    val (weak_case_congs, thy10) = DatatypeAbsProofs.prove_weak_case_congs new_type_names
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   515
      descr sorts thy9;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   516
25677
8b2ddc6e7be1 - Removed redundant head_len field in datatype_info
berghofe
parents: 25537
diff changeset
   517
    val dt_infos = map (make_dt_info NONE (flat descr) sorts induct reccomb_names rec_thms)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   518
      ((0 upto length (hd descr) - 1) ~~ (hd descr) ~~ case_names ~~ case_thms ~~
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   519
        casedist_thms ~~ simproc_dists ~~ inject ~~ nchotomys ~~ case_congs ~~ weak_case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   520
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   521
    val simps = flat (distinct @ inject @ case_thms) @ rec_thms;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   522
18518
3b1dfa53e64f adaptions to changes in code generator
haftmann
parents: 18462
diff changeset
   523
    val thy12 =
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   524
      thy10
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   525
      |> add_case_tr' case_names
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24711
diff changeset
   526
      |> Sign.add_path (space_implode "_" new_type_names)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   527
      |> add_rules simps case_thms rec_thms inject distinct
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   528
          weak_case_congs (Simplifier.attrib (op addcongs))
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   529
      |> put_dt_infos dt_infos
18518
3b1dfa53e64f adaptions to changes in code generator
haftmann
parents: 18462
diff changeset
   530
      |> add_cases_induct dt_infos induct
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24711
diff changeset
   531
      |> Sign.parent_path
18518
3b1dfa53e64f adaptions to changes in code generator
haftmann
parents: 18462
diff changeset
   532
      |> store_thmss "splits" new_type_names (map (fn (x, y) => [x, y]) split_thms) |> snd
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   533
      |> DatatypeInterpretation.data (map fst dt_infos);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   534
  in
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
   535
    ({distinct = distinct,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   536
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   537
      exhaustion = casedist_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   538
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   539
      case_thms = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   540
      split_thms = split_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   541
      induction = induct,
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
   542
      simps = simps}, thy12)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   543
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   544
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
(*********************** declare existing type as datatype *********************)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   547
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   548
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
   549
  let
18418
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   550
    val (((distinct, inject), [induction]), thy1) =
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   551
      thy0
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   552
      |> fold_map apply_theorems raw_distinct
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   553
      ||>> fold_map apply_theorems raw_inject
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   554
      ||>> apply_theorems [raw_induction];
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   555
22598
f31a869077f0 rep_thm/cterm/ctyp: removed obsolete sign field;
wenzelm
parents: 22578
diff changeset
   556
    val ((_, [induction']), _) =
f31a869077f0 rep_thm/cterm/ctyp: removed obsolete sign field;
wenzelm
parents: 22578
diff changeset
   557
      Variable.importT_thms [induction] (Variable.thm_context induction);
5177
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: " ^
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26533
diff changeset
   560
      Syntax.string_of_term_global thy1 t);
5177
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))) =
25888
48cc198b9ac5 Eliminated DatatypeAux.dest_TFree to avoid clashes
berghofe
parents: 25677
diff changeset
   563
          ((tname, map (fst o 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
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   566
    val dtnames = map get_typ (HOLogic.dest_conj (HOLogic.dest_Trueprop (Thm.concl_of induction')));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   567
    val new_type_names = getOpt (alt_names, map fst dtnames);
5177
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
21419
809e7520234a added instance for class size
haftmann
parents: 21350
diff changeset
   588
    val (case_names_induct, case_names_exhausts) =
809e7520234a added instance for class size
haftmann
parents: 21350
diff changeset
   589
      (mk_case_names_induct descr, mk_case_names_exhausts descr (map #1 dtnames));
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   590
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6423
diff changeset
   591
    val _ = message ("Proofs for datatype(s) " ^ commas_quote new_type_names);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   592
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   593
    val (casedist_thms, thy2) = thy1 |>
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   594
      DatatypeAbsProofs.prove_casedist_thms new_type_names [descr] sorts induction
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   595
        case_names_exhausts;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   596
    val ((reccomb_names, rec_thms), thy3) = DatatypeAbsProofs.prove_primrec_thms
20054
24d176b8f240 distinct simproc/simpset: proper context;
wenzelm
parents: 19925
diff changeset
   597
      false new_type_names [descr] sorts dt_info inject distinct
24d176b8f240 distinct simproc/simpset: proper context;
wenzelm
parents: 19925
diff changeset
   598
      (Simplifier.theory_context thy2 dist_ss) induction thy2;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   599
    val ((case_thms, case_names), thy4) = DatatypeAbsProofs.prove_case_thms false
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   600
      new_type_names [descr] sorts reccomb_names rec_thms thy3;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   601
    val (split_thms, thy5) = DatatypeAbsProofs.prove_split_thms
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   602
      new_type_names [descr] sorts inject distinct casedist_thms case_thms thy4;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   603
    val (nchotomys, thy6) = DatatypeAbsProofs.prove_nchotomys new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   604
      [descr] sorts casedist_thms thy5;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   605
    val (case_congs, thy7) = DatatypeAbsProofs.prove_case_congs new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   606
      [descr] sorts nchotomys case_thms thy6;
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18008
diff changeset
   607
    val (weak_case_congs, thy8) = DatatypeAbsProofs.prove_weak_case_congs new_type_names
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   608
      [descr] sorts thy7;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   609
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18319
diff changeset
   610
    val ((_, [induction']), thy10) =
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   611
      thy8
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18319
diff changeset
   612
      |> store_thmss "inject" new_type_names inject
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18319
diff changeset
   613
      ||>> store_thmss "distinct" new_type_names distinct
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24711
diff changeset
   614
      ||> Sign.add_path (space_implode "_" new_type_names)
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18319
diff changeset
   615
      ||>> PureThy.add_thms [(("induct", induction), [case_names_induct])];
9149
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   616
25677
8b2ddc6e7be1 - Removed redundant head_len field in datatype_info
berghofe
parents: 25537
diff changeset
   617
    val dt_infos = map (make_dt_info alt_names descr sorts induction' reccomb_names rec_thms)
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   618
      ((0 upto length descr - 1) ~~ descr ~~ case_names ~~ case_thms ~~ casedist_thms ~~
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   619
        map FewConstrs distinct ~~ inject ~~ nchotomys ~~ case_congs ~~ weak_case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   620
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   621
    val simps = flat (distinct @ inject @ case_thms) @ rec_thms;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   622
19599
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19539
diff changeset
   623
    val thy11 =
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19539
diff changeset
   624
      thy10
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   625
      |> add_case_tr' case_names
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24626
diff changeset
   626
      |> add_rules simps case_thms rec_thms inject distinct
19599
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19539
diff changeset
   627
           weak_case_congs (Simplifier.attrib (op addcongs))
22777
2fc921376a86 - Moved parse / print translations for case to datatype_case.ML
berghofe
parents: 22709
diff changeset
   628
      |> put_dt_infos dt_infos
19599
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19539
diff changeset
   629
      |> add_cases_induct dt_infos induction'
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24711
diff changeset
   630
      |> Sign.parent_path
19599
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19539
diff changeset
   631
      |> store_thmss "splits" new_type_names (map (fn (x, y) => [x, y]) split_thms)
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19539
diff changeset
   632
      |> snd
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   633
      |> DatatypeInterpretation.data (map fst dt_infos);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   634
  in
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
   635
    ({distinct = distinct,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   636
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   637
      exhaustion = casedist_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   638
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   639
      case_thms = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   640
      split_thms = split_thms,
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   641
      induction = induction',
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
   642
      simps = simps}, thy11)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   643
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   644
21350
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21253
diff changeset
   645
val rep_datatype = gen_rep_datatype IsarCmd.apply_theorems;
6e58289b6685 incorporated IsarThy into IsarCmd;
wenzelm
parents: 21253
diff changeset
   646
val rep_datatype_i = gen_rep_datatype IsarCmd.apply_theorems_i;
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   647
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   648
11958
2ece34b9fd8e Isar: fixed rep_datatype args;
wenzelm
parents: 11805
diff changeset
   649
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   650
(******************************** add datatype ********************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   651
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   652
fun gen_add_datatype prep_typ err flat_names new_type_names dts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   653
  let
20820
58693343905f removed obsolete Datatype_Universe.thy (cf. Datatype.thy);
wenzelm
parents: 20715
diff changeset
   654
    val _ = Theory.requires thy "Datatype" "datatype definitions";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   655
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   656
    (* this theory is used just for parsing *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   657
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   658
    val tmp_thy = thy |>
5892
e5e44cc54eb2 Attribute.tthms_of;
wenzelm
parents: 5720
diff changeset
   659
      Theory.copy |>
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24711
diff changeset
   660
      Sign.add_types (map (fn (tvs, tname, mx, _) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   661
        (tname, length tvs, mx)) dts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   662
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   663
    val (tyvars, _, _, _)::_ = dts;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   664
    val (new_dts, types_syntax) = ListPair.unzip (map (fn (tvs, tname, mx, _) =>
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20328
diff changeset
   665
      let val full_tname = Sign.full_name tmp_thy (Syntax.type_name tname mx)
18964
67f572e03236 renamed gen_duplicates to duplicates;
wenzelm
parents: 18963
diff changeset
   666
      in (case duplicates (op =) tvs of
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   667
            [] => if eq_set (tyvars, tvs) then ((full_tname, tvs), (tname, mx))
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   668
                  else error ("Mutually recursive datatypes must have same type parameters")
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   669
          | dups => error ("Duplicate parameter(s) for datatype " ^ full_tname ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   670
              " : " ^ commas dups))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   671
      end) dts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   672
18964
67f572e03236 renamed gen_duplicates to duplicates;
wenzelm
parents: 18963
diff changeset
   673
    val _ = (case duplicates (op =) (map fst new_dts) @ duplicates (op =) new_type_names of
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   674
      [] => () | dups => error ("Duplicate datatypes: " ^ commas dups));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   675
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   676
    fun prep_dt_spec (tvs, tname, mx, constrs) (dts', constr_syntax, sorts, i) =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   677
      let
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   678
        fun prep_constr (cname, cargs, mx') (constrs, constr_syntax', sorts') =
5279
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   679
          let
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20328
diff changeset
   680
            val (cargs', sorts'') = Library.foldl (prep_typ tmp_thy) (([], sorts'), cargs);
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   681
            val _ = (case fold (curry add_typ_tfree_names) cargs' [] \\ tvs of
5279
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   682
                [] => ()
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   683
              | vs => error ("Extra type variables on rhs: " ^ commas vs))
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20328
diff changeset
   684
          in (constrs @ [((if flat_names then Sign.full_name tmp_thy else
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20328
diff changeset
   685
                Sign.full_name_path tmp_thy tname) (Syntax.const_name cname mx'),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   686
                   map (dtyp_of_typ new_dts) cargs')],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   687
              constr_syntax' @ [(cname, mx')], sorts'')
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18643
diff changeset
   688
          end handle ERROR msg =>
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18643
diff changeset
   689
            cat_error msg ("The error above occured in constructor " ^ cname ^
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   690
              " of datatype " ^ tname);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   691
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   692
        val (constrs', constr_syntax', sorts') =
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   693
          fold prep_constr constrs ([], [], sorts)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   694
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   695
      in
18964
67f572e03236 renamed gen_duplicates to duplicates;
wenzelm
parents: 18963
diff changeset
   696
        case duplicates (op =) (map fst constrs') of
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   697
           [] =>
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20328
diff changeset
   698
             (dts' @ [(i, (Sign.full_name tmp_thy (Syntax.type_name tname mx),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   699
                map DtTFree tvs, constrs'))],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   700
              constr_syntax @ [constr_syntax'], sorts', i + 1)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   701
         | dups => error ("Duplicate constructors " ^ commas dups ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   702
             " in datatype " ^ tname)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   703
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   704
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   705
    val (dts', constr_syntax, sorts', i) = fold prep_dt_spec dts ([], [], [], 0);
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20328
diff changeset
   706
    val sorts = sorts' @ (map (rpair (Sign.defaultS tmp_thy)) (tyvars \\ map fst sorts'));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   707
    val dt_info = get_datatypes thy;
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20328
diff changeset
   708
    val (descr, _) = unfold_datatypes tmp_thy dts' sorts dt_info dts' i;
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   709
    val _ = check_nonempty descr handle (exn as Datatype_Empty s) =>
15661
9ef583b08647 reverted renaming of Some/None in comments and strings;
wenzelm
parents: 15574
diff changeset
   710
      if err then error ("Nonemptiness check failed for datatype " ^ s)
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   711
      else raise exn;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   712
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20820
diff changeset
   713
    val descr' = flat descr;
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   714
    val case_names_induct = mk_case_names_induct descr';
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   715
    val case_names_exhausts = mk_case_names_exhausts descr' (map #1 new_dts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   716
  in
26533
aeef55a3d1d5 Deleted code for axiomatic introduction of datatypes. Instead, the package
berghofe
parents: 26496
diff changeset
   717
    add_datatype_def
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   718
      flat_names new_type_names descr sorts types_syntax constr_syntax dt_info
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   719
      case_names_induct case_names_exhausts thy
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   720
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   721
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   722
val add_datatype_i = gen_add_datatype cert_typ;
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   723
val add_datatype = gen_add_datatype read_typ true;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   724
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   725
26111
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   726
(** a datatype antiquotation **)
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   727
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   728
local
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   729
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   730
val sym_datatype = Pretty.str "\\isacommand{datatype}";
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   731
val sym_binder = Pretty.str "{\\isacharequal}";
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   732
val sym_of = Pretty.str "of";
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   733
val sym_sep = Pretty.str "{\\isacharbar}";
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   734
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   735
in
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   736
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   737
fun args_datatype (ctxt, args) =
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   738
  let
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   739
    val (tyco, (ctxt', args')) = Args.tyname (ctxt, args);
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   740
    val thy = Context.theory_of ctxt';
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   741
    val spec = the_datatype_spec thy tyco;
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   742
  in ((tyco, spec), (ctxt', args')) end;
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   743
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   744
fun pretty_datatype ctxt (dtco, (vs, cos)) =
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   745
  let
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   746
    val ty = Type (dtco, map TFree vs);
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   747
    fun pretty_typ_br ty =
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   748
      let
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   749
        val p = Syntax.pretty_typ ctxt ty;
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   750
        val s = explode (Pretty.str_of p);
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   751
      in if member (op =) s " " then Pretty.enclose "(" ")" [p]
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   752
        else p
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   753
      end;
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   754
    fun pretty_constr (co, []) =
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   755
          Syntax.pretty_term ctxt (Const (co, ty))
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   756
      | pretty_constr (co, [ty']) =
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   757
          (Pretty.block o Pretty.breaks)
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   758
            [Syntax.pretty_term ctxt (Const (co, ty' --> ty)),
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   759
              sym_of, Syntax.pretty_typ ctxt ty']
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   760
      | pretty_constr (co, tys) =
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   761
          (Pretty.block o Pretty.breaks)
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   762
            (Syntax.pretty_term ctxt (Const (co, tys ---> ty)) ::
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   763
              sym_of :: map pretty_typ_br tys);
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   764
  in (Pretty.block o Pretty.breaks) (
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   765
    sym_datatype
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   766
    :: Syntax.pretty_typ ctxt ty
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   767
    :: sym_binder
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   768
    :: separate sym_sep (map pretty_constr cos)
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   769
  ) end
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   770
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   771
end;
18451
5ff0244e25e8 slight clean ups
haftmann
parents: 18418
diff changeset
   772
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   773
(** package setup **)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   774
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   775
(* setup theory *)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   776
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18702
diff changeset
   777
val setup =
27002
215d64dc971e moved distinctness_limit to datatype_rep_proofs.ML
haftmann
parents: 26939
diff changeset
   778
  DatatypeRepProofs.distinctness_limit_setup #>
24098
f1eb34ae33af replaced dtK ref by datatype_distinctness_limit configuration option;
wenzelm
parents: 22994
diff changeset
   779
  Method.add_methods tactic_emulations #>
f1eb34ae33af replaced dtK ref by datatype_distinctness_limit configuration option;
wenzelm
parents: 22994
diff changeset
   780
  simproc_setup #>
24626
85eceef2edc7 introduced generic concepts for theory interpretators
haftmann
parents: 24624
diff changeset
   781
  trfun_setup #>
24711
e8bba7723858 simplified interpretation setup;
wenzelm
parents: 24699
diff changeset
   782
  DatatypeInterpretation.init;
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   783
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   784
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   785
(* outer syntax *)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   786
17057
0934ac31985f OuterKeyword;
wenzelm
parents: 16973
diff changeset
   787
local structure P = OuterParse and K = OuterKeyword in
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   788
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   789
val _ = OuterSyntax.keywords ["distinct", "inject", "induction"];
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   790
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   791
val datatype_decl =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   792
  Scan.option (P.$$$ "(" |-- P.name --| P.$$$ ")") -- P.type_args -- P.name -- P.opt_infix --
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12708
diff changeset
   793
    (P.$$$ "=" |-- P.enum1 "|" (P.name -- Scan.repeat P.typ -- P.opt_mixfix));
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   794
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   795
fun mk_datatype args =
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   796
  let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   797
    val names = map (fn ((((NONE, _), t), _), _) => t | ((((SOME t, _), _), _), _) => t) args;
12876
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12708
diff changeset
   798
    val specs = map (fn ((((_, vs), t), mx), cons) =>
a70df1e5bf10 got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents: 12708
diff changeset
   799
      (vs, t, mx, map (fn ((x, y), z) => (x, y, z)) cons)) args;
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
   800
  in snd o add_datatype false names specs end;
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   801
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   802
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   803
  OuterSyntax.command "datatype" "define inductive datatypes" K.thy_decl
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   804
    (P.and_list1 datatype_decl >> (Toplevel.theory o mk_datatype));
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   805
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   806
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   807
val rep_datatype_decl =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   808
  Scan.option (Scan.repeat1 P.name) --
22101
6d13239d5f52 moved parts of OuterParse to SpecParse;
wenzelm
parents: 21772
diff changeset
   809
    Scan.optional (P.$$$ "distinct" |-- P.!!! (P.and_list1 SpecParse.xthms1)) [[]] --
6d13239d5f52 moved parts of OuterParse to SpecParse;
wenzelm
parents: 21772
diff changeset
   810
    Scan.optional (P.$$$ "inject" |-- P.!!! (P.and_list1 SpecParse.xthms1)) [[]] --
6d13239d5f52 moved parts of OuterParse to SpecParse;
wenzelm
parents: 21772
diff changeset
   811
    (P.$$$ "induction" |-- P.!!! SpecParse.xthm);
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   812
18008
f193815cab2c swapped add_datatype result
haftmann
parents: 17956
diff changeset
   813
fun mk_rep_datatype (((opt_ts, dss), iss), ind) = #2 o rep_datatype opt_ts dss iss ind;
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   814
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24830
diff changeset
   815
val _ =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   816
  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
   817
    (rep_datatype_decl >> (Toplevel.theory o mk_rep_datatype));
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   818
26111
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   819
val _ =
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   820
  ThyOutput.add_commands [("datatype",
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   821
    ThyOutput.args args_datatype (ThyOutput.output pretty_datatype))];
91e0999b075f added first version of datatype antiquotation
haftmann
parents: 26093
diff changeset
   822
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   823
end;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   824
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   825
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   826
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   827