src/HOL/Tools/datatype_package.ML
author haftmann
Tue, 20 Sep 2005 16:17:34 +0200
changeset 17521 0f1c48de39f5
parent 17412 e26cb20ef0cc
child 17875 d81094515061
permissions -rw-r--r--
introduced AList module in favor of assoc etc.
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
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
     8
signature BASIC_DATATYPE_PACKAGE =
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
     9
sig
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    10
  val induct_tac : string -> int -> tactic
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9739
diff changeset
    11
  val induct_thm_tac : thm -> string -> int -> tactic
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
    12
  val case_tac : string -> int -> tactic
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    13
  val distinct_simproc : simproc
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    14
end;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    15
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    16
signature DATATYPE_PACKAGE =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    17
sig
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    18
  include BASIC_DATATYPE_PACKAGE
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    19
  val quiet_mode : bool ref
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    20
  val add_datatype : bool -> string list -> (string list * bstring * mixfix *
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    21
    (bstring * string list * mixfix) list) list -> theory -> theory *
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    22
      {distinct : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    23
       inject : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    24
       exhaustion : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    25
       rec_thms : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    26
       case_thms : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    27
       split_thms : (thm * thm) list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    28
       induction : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    29
       size : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    30
       simps : thm list}
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
    31
  val add_datatype_i : bool -> bool -> string list -> (string list * bstring * mixfix *
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    32
    (bstring * typ list * mixfix) list) list -> theory -> theory *
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    33
      {distinct : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    34
       inject : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    35
       exhaustion : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    36
       rec_thms : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    37
       case_thms : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    38
       split_thms : (thm * thm) list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    39
       induction : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    40
       size : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    41
       simps : thm list}
12708
31672377dadc clarified IsarThy.apply_theorems_i;
wenzelm
parents: 12448
diff changeset
    42
  val rep_datatype_i : string list option -> (thm list * theory attribute list) list list ->
31672377dadc clarified IsarThy.apply_theorems_i;
wenzelm
parents: 12448
diff changeset
    43
    (thm list * theory attribute list) list list -> (thm list * theory attribute list) ->
31672377dadc clarified IsarThy.apply_theorems_i;
wenzelm
parents: 12448
diff changeset
    44
    theory -> theory *
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    45
      {distinct : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    46
       inject : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    47
       exhaustion : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    48
       rec_thms : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    49
       case_thms : thm list list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    50
       split_thms : (thm * thm) list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    51
       induction : thm,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    52
       size : thm list,
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
    53
       simps : thm list}
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15661
diff changeset
    54
  val rep_datatype : string list option -> (thmref * Attrib.src list) list list ->
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15661
diff changeset
    55
    (thmref * Attrib.src list) list list -> thmref * Attrib.src list -> theory -> theory *
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    56
      {distinct : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    57
       inject : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    58
       exhaustion : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    59
       rec_thms : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    60
       case_thms : thm list list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    61
       split_thms : (thm * thm) list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    62
       induction : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    63
       size : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    64
       simps : thm list}
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    65
  val get_datatypes : theory -> DatatypeAux.datatype_info Symtab.table
6441
268aa3c4a059 print_datatypes;
wenzelm
parents: 6427
diff changeset
    66
  val print_datatypes : theory -> unit
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    67
  val datatype_info : theory -> string -> DatatypeAux.datatype_info option
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
    68
  val datatype_info_err : theory -> string -> DatatypeAux.datatype_info
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    69
  val constrs_of : theory -> string -> term list option
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    70
  val case_const_of : theory -> string -> term option
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
    71
  val weak_case_congs_of : theory -> thm list
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
    72
  val setup: (theory -> theory) list
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
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    83
(* data kind 'HOL/datatypes' *)
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
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
    86
(struct
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    87
  val name = "HOL/datatypes";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    88
  type T = datatype_info Symtab.table;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    89
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    90
  val empty = Symtab.empty;
6556
daa00919502b theory data: copy;
wenzelm
parents: 6479
diff changeset
    91
  val copy = I;
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
    92
  val extend = I;
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
    93
  fun merge _ tabs : T = Symtab.merge (K true) tabs;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    94
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    95
  fun print sg tab =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    96
    Pretty.writeln (Pretty.strs ("datatypes:" ::
16364
dc9f7066d80a refer to name spaces values instead of names;
wenzelm
parents: 16122
diff changeset
    97
      map #1 (NameSpace.extern_table (Sign.type_space sg, tab))));
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
    98
end);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    99
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   100
val get_datatypes = DatatypesData.get;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   101
val put_datatypes = DatatypesData.put;
6441
268aa3c4a059 print_datatypes;
wenzelm
parents: 6427
diff changeset
   102
val print_datatypes = DatatypesData.print;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   103
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   104
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   105
(** theory information about datatypes **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   106
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17325
diff changeset
   107
val datatype_info = Symtab.lookup o get_datatypes;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   108
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   109
fun datatype_info_err thy name = (case datatype_info thy name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   110
      SOME info => info
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   111
    | NONE => error ("Unknown datatype " ^ quote name));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   112
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   113
fun constrs_of thy tname = (case datatype_info thy tname of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   114
   SOME {index, descr, ...} =>
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   115
     let val (_, _, constrs) = valOf (AList.lookup (op =) descr index)
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   116
     in SOME (map (fn (cname, _) => Const (cname, Sign.the_const_type thy cname)) constrs)
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   117
     end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   118
 | _ => NONE);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   119
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   120
fun case_const_of thy tname = (case datatype_info thy tname of
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   121
   SOME {case_name, ...} => SOME (Const (case_name, Sign.the_const_type thy case_name))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   122
 | _ => NONE);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   123
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   124
val weak_case_congs_of = map (#weak_case_cong o #2) o Symtab.dest o get_datatypes;
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   125
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   126
fun find_tname var Bi =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   127
  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
   128
      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
   129
  in case AList.lookup (op =) (frees @ params) var of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   130
       NONE => error ("No such variable in subgoal: " ^ quote var)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   131
     | SOME(Type (tn, _)) => tn
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   132
     | _ => error ("Cannot determine type of " ^ quote var)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   133
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   134
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   135
fun infer_tname state i aterm =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   136
  let
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   137
    val sign = Thm.sign_of_thm state;
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   138
    val (_, _, Bi, _) = Thm.dest_state (state, i)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   139
    val params = Logic.strip_params Bi;   (*params of subgoal i*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   140
    val params = rev (rename_wrt_term Bi params);   (*as they are printed*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   141
    val (types, sorts) = types_sorts state;
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   142
    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
   143
      | types' ixn = types ixn;
8100
6186ee807f2e replaced HOLogic.termTVar by HOLogic.termT;
wenzelm
parents: 7904
diff changeset
   144
    val (ct, _) = read_def_cterm (sign, types', sorts) [] false (aterm, TypeInfer.logicT);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   145
  in case #T (rep_cterm ct) of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   146
       Type (tn, _) => tn
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   147
     | _ => error ("Cannot determine type of " ^ quote aterm)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   148
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   149
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   150
(*Warn if the (induction) variable occurs Free among the premises, which
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   151
  usually signals a mistake.  But calls the tactic either way!*)
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   152
fun occs_in_prems tacf vars =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   153
  SUBGOAL (fn (Bi, i) =>
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   154
           (if  exists (fn Free (a, _) => a mem vars)
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   155
                      (foldr add_term_frees [] (#2 (strip_context Bi)))
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   156
             then warning "Induction variable occurs also among premises!"
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   157
             else ();
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   158
            tacf i));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   159
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   160
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   161
(* generic induction tactic for datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   162
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   163
local
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   164
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   165
fun prep_var (Var (ixn, _), SOME x) = SOME (ixn, x)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   166
  | prep_var _ = NONE;
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   167
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   168
fun prep_inst (concl, xs) =	(*exception UnequalLengths *)
11725
d0c37d04906b HOLogic.dest_concls, InductAttrib.vars_of;
wenzelm
parents: 11539
diff changeset
   169
  let val vs = InductAttrib.vars_of concl
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   170
  in List.mapPartial prep_var (Library.drop (length vs - length xs, vs) ~~ xs) end;
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   171
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   172
in
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   173
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   174
fun gen_induct_tac inst_tac (varss, opt_rule) i state =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   175
  let
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   176
    val (_, _, Bi, _) = Thm.dest_state (state, i);
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   177
    val {sign, ...} = Thm.rep_thm state;
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   178
    val (rule, rule_name) =
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   179
      (case opt_rule of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   180
        SOME r => (r, "Induction rule")
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   181
      | NONE =>
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   182
          let val tn = find_tname (hd (List.mapPartial I (List.concat varss))) Bi
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   183
          in (#induction (datatype_info_err sign tn), "Induction rule for type " ^ tn) end);
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   184
11725
d0c37d04906b HOLogic.dest_concls, InductAttrib.vars_of;
wenzelm
parents: 11539
diff changeset
   185
    val concls = HOLogic.dest_concls (Thm.concl_of rule);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   186
    val insts = List.concat (map prep_inst (concls ~~ varss)) handle UnequalLengths =>
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   187
      error (rule_name ^ " has different numbers of variables");
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   188
  in occs_in_prems (inst_tac insts rule) (map #2 insts) i state end;
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   189
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   190
fun induct_tac s =
15444
4f14c151d9f1 induct_tac and case_tac no longer depend on Syntax.string_of_vname.
berghofe
parents: 14981
diff changeset
   191
  gen_induct_tac Tactic.res_inst_tac'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   192
    (map (Library.single o SOME) (Syntax.read_idents s), NONE);
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   193
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9739
diff changeset
   194
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
   195
  gen_induct_tac Tactic.res_inst_tac'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   196
    ([map SOME (Syntax.read_idents s)], SOME th);
9747
043098ba5098 introduced induct_thm_tac
nipkow
parents: 9739
diff changeset
   197
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   198
end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   199
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   200
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   201
(* generic case tactic for datatypes *)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   202
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   203
fun case_inst_tac inst_tac t rule i state =
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   204
  let
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   205
    val _ $ Var (ixn, _) $ _ = HOLogic.dest_Trueprop
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   206
      (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
   207
  in inst_tac [(ixn, t)] rule i state end;
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   208
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   209
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
   210
      case_inst_tac inst_tac t rule i state
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   211
  | gen_case_tac inst_tac (t, NONE) i state =
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   212
      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
   213
        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
   214
        else case_inst_tac inst_tac t
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   215
               (#exhaustion (datatype_info_err (Thm.sign_of_thm state) tn))
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   216
               i state
14471
5688b05b2575 case_tac no longer raises THM exception if goal number is out of range.
berghofe
parents: 14412
diff changeset
   217
      end handle THM _ => Seq.empty;
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   218
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   219
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
   220
8279
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   221
3453f73fad71 added cases_tac;
wenzelm
parents: 8100
diff changeset
   222
8541
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   223
(** Isar tactic emulations **)
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   224
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   225
local
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   226
8689
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   227
val rule_spec = Scan.lift (Args.$$$ "rule" -- Args.$$$ ":");
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   228
val opt_rule = Scan.option (rule_spec |-- Attrib.local_thm);
a2e82eed6454 improved induct_tac;
wenzelm
parents: 8686
diff changeset
   229
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15661
diff changeset
   230
val varss =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15661
diff changeset
   231
  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
   232
15444
4f14c151d9f1 induct_tac and case_tac no longer depend on Syntax.string_of_vname.
berghofe
parents: 14981
diff changeset
   233
val inst_tac = Method.bires_inst_tac false;
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   234
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   235
fun induct_meth ctxt (varss, opt_rule) =
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   236
  gen_induct_tac (inst_tac ctxt) (varss, opt_rule);
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   237
fun case_meth ctxt (varss, opt_rule) =
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   238
  gen_case_tac (inst_tac ctxt) (varss, opt_rule);
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   239
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   240
in
8541
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   241
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   242
val tactic_emulations =
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   243
 [("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
   244
    "induct_tac emulation (dynamic instantiation)"),
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13641
diff changeset
   245
  ("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
   246
    "case_tac emulation (dynamic instantiation)")];
8672
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   247
1f51c411da5a induct/case_tac emulation: optional rule;
wenzelm
parents: 8645
diff changeset
   248
end;
8541
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   249
b0d2002f9f04 proof methods: 'case_tac' / 'induct_tac';
wenzelm
parents: 8478
diff changeset
   250
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   251
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   252
(** induct method setup **)
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   253
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   254
(* case names *)
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   255
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   256
local
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   257
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   258
fun dt_recs (DtTFree _) = []
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   259
  | dt_recs (DtType (_, dts)) = List.concat (map dt_recs dts)
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   260
  | dt_recs (DtRec i) = [i];
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   261
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   262
fun dt_cases (descr: descr) (_, args, constrs) =
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   263
  let
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   264
    fun the_bname i = Sign.base_name (#1 (valOf (AList.lookup (op =) descr i)));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   265
    val bnames = map the_bname (distinct (List.concat (map dt_recs args)));
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   266
  in map (fn (c, _) => space_implode "_" (Sign.base_name c :: bnames)) constrs end;
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   267
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   268
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   269
fun induct_cases descr =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   270
  DatatypeProp.indexify_names (List.concat (map (dt_cases descr) (map #2 descr)));
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   271
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   272
fun exhaust_cases descr i = dt_cases descr (valOf (AList.lookup (op =) descr i));
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   273
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   274
in
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   275
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   276
fun mk_case_names_induct descr = RuleCases.case_names (induct_cases descr);
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   277
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   278
fun mk_case_names_exhausts descr new =
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   279
  map (RuleCases.case_names o exhaust_cases descr o #1)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   280
    (List.filter (fn ((_, (name, _, _))) => name mem_string new) descr);
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   281
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   282
end;
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   283
17084
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 17057
diff changeset
   284
fun name_notE th =
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 17057
diff changeset
   285
    Thm.name_thm (Thm.name_of_thm th ^ "_E", th RS notE);
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 17057
diff changeset
   286
      
11345
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   287
fun add_rules simps case_thms size_thms rec_thms inject distinct
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   288
                  weak_case_congs cong_att =
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   289
  (#1 o PureThy.add_thmss [(("simps", simps), []),
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   290
    (("", List.concat case_thms @ size_thms @ 
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   291
          List.concat distinct  @ rec_thms), [Simplifier.simp_add_global]),
16672
f83f3aef274d (intermediate commit)
haftmann
parents: 16646
diff changeset
   292
    (("", size_thms @ rec_thms),             [RecfunCodegen.add NONE]),
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   293
    (("", List.concat inject),               [iff_add_global]),
17084
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 17057
diff changeset
   294
    (("", map name_notE (List.concat distinct)),  [Classical.safe_elim_global]),
16672
f83f3aef274d (intermediate commit)
haftmann
parents: 16646
diff changeset
   295
    (("", weak_case_congs),                  [cong_att])]);
11345
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   296
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   297
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   298
(* add_cases_induct *)
8306
9855f1801d2b HOLogic.dest_conj;
wenzelm
parents: 8279
diff changeset
   299
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   300
fun add_cases_induct infos induction =
8306
9855f1801d2b HOLogic.dest_conj;
wenzelm
parents: 8279
diff changeset
   301
  let
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   302
    val n = length (HOLogic.dest_concls (Thm.concl_of induction));
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   303
    fun proj i thm =
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   304
      if n = 1 then thm
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   305
      else (if i + 1 < n then (fn th => th RS conjunct1) else I)
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   306
        (Library.funpow i (fn th => th RS conjunct2) thm)
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   307
        |> Drule.zero_var_indexes
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   308
        |> RuleCases.save thm;
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   309
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   310
    fun named_rules (name, {index, exhaustion, ...}: datatype_info) =
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   311
      [(("", proj index induction), [InductAttrib.induct_type_global name]),
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   312
       (("", exhaustion), [InductAttrib.cases_type_global name])];
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   313
    fun unnamed_rule i =
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   314
      (("", proj i induction), [InductAttrib.induct_type_global ""]);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   315
    val rules = List.concat (map named_rules infos) @ map unnamed_rule (length infos upto n - 1);
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   316
  in #1 o PureThy.add_thms rules end;
8306
9855f1801d2b HOLogic.dest_conj;
wenzelm
parents: 8279
diff changeset
   317
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   318
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   319
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   320
(**** simplification procedure for showing distinctness of constructors ****)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   321
7060
berghofe
parents: 7049
diff changeset
   322
fun stripT (i, Type ("fun", [_, T])) = stripT (i + 1, T)
berghofe
parents: 7049
diff changeset
   323
  | stripT p = p;
berghofe
parents: 7049
diff changeset
   324
berghofe
parents: 7049
diff changeset
   325
fun stripC (i, f $ x) = stripC (i + 1, f)
berghofe
parents: 7049
diff changeset
   326
  | stripC p = p;
berghofe
parents: 7049
diff changeset
   327
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   328
val distinctN = "constr_distinct";
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   329
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   330
exception ConstrDistinct of term;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   331
16973
b2a894562b8f simprocs: Simplifier.inherit_bounds;
wenzelm
parents: 16672
diff changeset
   332
fun distinct_proc sg ss (t as Const ("op =", _) $ t1 $ t2) =
7060
berghofe
parents: 7049
diff changeset
   333
  (case (stripC (0, t1), stripC (0, t2)) of
berghofe
parents: 7049
diff changeset
   334
     ((i, Const (cname1, T1)), (j, Const (cname2, T2))) =>
berghofe
parents: 7049
diff changeset
   335
         (case (stripT (0, T1), stripT (0, T2)) of
berghofe
parents: 7049
diff changeset
   336
            ((i', Type (tname1, _)), (j', Type (tname2, _))) =>
berghofe
parents: 7049
diff changeset
   337
                if tname1 = tname2 andalso not (cname1 = cname2) andalso i = i' andalso j = j' then
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   338
                   (case (constrs_of sg tname1) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   339
                      SOME constrs => let val cnames = map (fst o dest_Const) constrs
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   340
                        in if cname1 mem cnames andalso cname2 mem cnames then
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   341
                             let val eq_t = Logic.mk_equals (t, Const ("False", HOLogic.boolT));
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   342
                                 val eq_ct = cterm_of sg eq_t;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   343
                                 val Datatype_thy = theory "Datatype";
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   344
                                 val [In0_inject, In1_inject, In0_not_In1, In1_not_In0] =
16486
1a12cdb6ee6b get_thm(s): Name;
wenzelm
parents: 16430
diff changeset
   345
                                   map (get_thm Datatype_thy o Name)
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   346
                                     ["In0_inject", "In1_inject", "In0_not_In1", "In1_not_In0"]
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   347
                             in (case (#distinct (datatype_info_err sg tname1)) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   348
                                 QuickAndDirty => SOME (Thm.invoke_oracle
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   349
                                   Datatype_thy distinctN (sg, ConstrDistinct eq_t))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   350
                               | FewConstrs thms => SOME (Tactic.prove sg [] [] eq_t (K
13480
bb72bd43c6c3 use Tactic.prove instead of prove_goalw_cterm in internal proofs!
wenzelm
parents: 13466
diff changeset
   351
                                   (EVERY [rtac eq_reflection 1, rtac iffI 1, rtac notE 1,
bb72bd43c6c3 use Tactic.prove instead of prove_goalw_cterm in internal proofs!
wenzelm
parents: 13466
diff changeset
   352
                                    atac 2, resolve_tac thms 1, etac FalseE 1])))
16973
b2a894562b8f simprocs: Simplifier.inherit_bounds;
wenzelm
parents: 16672
diff changeset
   353
                               | ManyConstrs (thm, simpset) => SOME (Tactic.prove sg [] [] eq_t (K
13480
bb72bd43c6c3 use Tactic.prove instead of prove_goalw_cterm in internal proofs!
wenzelm
parents: 13466
diff changeset
   354
                                   (EVERY [rtac eq_reflection 1, rtac iffI 1, dtac thm 1,
16973
b2a894562b8f simprocs: Simplifier.inherit_bounds;
wenzelm
parents: 16672
diff changeset
   355
                                    full_simp_tac (Simplifier.inherit_bounds ss simpset) 1,
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   356
                                    REPEAT (dresolve_tac [In0_inject, In1_inject] 1),
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   357
                                    eresolve_tac [In0_not_In1 RS notE, In1_not_In0 RS notE] 1,
13480
bb72bd43c6c3 use Tactic.prove instead of prove_goalw_cterm in internal proofs!
wenzelm
parents: 13466
diff changeset
   358
                                    etac FalseE 1]))))
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   359
                             end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   360
                           else NONE
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   361
                        end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   362
                    | NONE => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   363
                else NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   364
          | _ => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   365
   | _ => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   366
  | distinct_proc sg _ _ = NONE;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   367
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13340
diff changeset
   368
val distinct_simproc =
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   369
  Simplifier.simproc HOL.thy distinctN ["s = t"] distinct_proc;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   370
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   371
val dist_ss = HOL_ss addsimprocs [distinct_simproc];
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   372
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   373
val simproc_setup =
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   374
  [Theory.add_oracle (distinctN, fn (_, ConstrDistinct t) => t),
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   375
   fn thy => (simpset_ref_of thy := simpset_of thy addsimprocs [distinct_simproc]; thy)];
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   376
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   377
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   378
(**** translation rules for case ****)
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   379
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   380
fun case_tr sg [t, u] =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   381
    let
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   382
      fun case_error s name ts = raise TERM ("Error in case expression" ^
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   383
        getOpt (Option.map (curry op ^ " for datatype ") name, "") ^ ":\n" ^ s, ts);
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   384
      fun dest_case1 (Const ("_case1", _) $ t $ u) = (case strip_comb t of
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   385
            (Const (s, _), ts) => (Sign.intern_const sg s, ts)
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   386
          | (Free (s, _), ts) => (Sign.intern_const sg s, ts)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   387
          | _ => case_error "Head is not a constructor" NONE [t, u], u)
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   388
        | dest_case1 t = raise TERM ("dest_case1", [t]);
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   389
      fun dest_case2 (Const ("_case2", _) $ t $ u) = t :: dest_case2 u
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   390
        | dest_case2 t = [t];
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   391
      val cases as ((cname, _), _) :: _ = map dest_case1 (dest_case2 u);
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   392
      val tab = Symtab.dest (get_datatypes sg);
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   393
      val (cases', default) = (case split_last cases of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   394
          (cases', (("dummy_pattern", []), t)) => (cases', SOME t)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   395
        | _ => (cases, NONE))
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   396
      fun abstr (Free (x, T), body) = Term.absfree (x, T, body)
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   397
        | abstr (Const ("_constrain", _) $ Free (x, T) $ tT, body) =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   398
            Syntax.const Syntax.constrainAbsC $ Term.absfree (x, T, body) $ tT
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   399
        | abstr (Const ("Pair", _) $ x $ y, body) =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   400
            Syntax.const "split" $ abstr (x, abstr (y, body))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   401
        | abstr (t, _) = case_error "Illegal pattern" NONE [t];
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   402
    in case find_first (fn (_, {descr, index, ...}) =>
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   403
      exists (equal cname o fst) (#3 (snd (List.nth (descr, index))))) tab of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   404
        NONE => case_error ("Not a datatype constructor: " ^ cname) NONE [u]
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   405
      | SOME (tname, {descr, case_name, index, ...}) =>
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   406
        let
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   407
          val _ = if exists (equal "dummy_pattern" o fst o fst) cases' then
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   408
            case_error "Illegal occurrence of '_' dummy pattern" (SOME tname) [u] else ();
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   409
          val (_, (_, dts, constrs)) = List.nth (descr, index);
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   410
          val sorts = map (rpair [] o dest_DtTFree) dts;
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   411
          fun find_case (cases, (s, dt)) =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   412
            (case find_first (equal s o fst o fst) cases' of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   413
               NONE => (case default of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   414
                   NONE => case_error ("No clause for constructor " ^ s) (SOME tname) [u]
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   415
                 | SOME t => (cases, list_abs (map (rpair dummyT) (DatatypeProp.make_tnames
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   416
                     (map (typ_of_dtyp descr sorts) dt)), t)))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   417
             | SOME (c as ((_, vs), t)) =>
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   418
                 if length dt <> length vs then
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   419
                    case_error ("Wrong number of arguments for constructor " ^ s)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   420
                      (SOME tname) vs
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   421
                 else (cases \ c, foldr abstr t vs))
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   422
          val (cases'', fs) = foldl_map find_case (cases', constrs)
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   423
        in case (cases'', length constrs = length cases', default) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   424
            ([], true, SOME _) =>
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   425
              case_error "Extra '_' dummy pattern" (SOME tname) [u]
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   426
          | (_ :: _, _, _) =>
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   427
              let val extra = distinct (map (fst o fst) cases'')
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   428
              in case extra \\ map fst constrs of
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   429
                  [] => case_error ("More than one clause for constructor(s) " ^
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   430
                    commas extra) (SOME tname) [u]
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   431
                | extra' => case_error ("Illegal constructor(s): " ^ commas extra')
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   432
                    (SOME tname) [u]
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   433
              end
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   434
          | _ => list_comb (Syntax.const case_name, fs) $ t
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   435
        end
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   436
    end
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   437
  | case_tr sg ts = raise TERM ("case_tr", ts);
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   438
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   439
fun case_tr' constrs sg ts =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   440
  if length ts <> length constrs + 1 then raise Match else
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   441
  let
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   442
    val (fs, x) = split_last ts;
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   443
    fun strip_abs 0 t = ([], t)
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   444
      | strip_abs i (Abs p) =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   445
        let val (x, u) = Syntax.atomic_abs_tr' p
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   446
        in apfst (cons x) (strip_abs (i-1) u) end
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   447
      | strip_abs i (Const ("split", _) $ t) = (case strip_abs (i+1) t of
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   448
          (v :: v' :: vs, u) => (Syntax.const "Pair" $ v $ v' :: vs, u));
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   449
    fun is_dependent i t =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   450
      let val k = length (strip_abs_vars t) - i
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   451
      in k < 0 orelse exists (fn j => j >= k)
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   452
        (loose_bnos (strip_abs_body t))
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   453
      end;
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   454
    val cases = map (fn ((cname, dts), t) =>
16364
dc9f7066d80a refer to name spaces values instead of names;
wenzelm
parents: 16122
diff changeset
   455
      (Sign.extern_const sg cname,
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   456
       strip_abs (length dts) t, is_dependent (length dts) t))
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   457
      (constrs ~~ fs);
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   458
    fun count_cases (cs, (_, _, true)) = cs
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   459
      | count_cases (cs, (cname, (_, body), false)) = (case AList.lookup (op =) cs body of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   460
          NONE => (body, [cname]) :: cs
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17261
diff changeset
   461
        | SOME cnames => AList.update (op =) (body, cnames @ [cname]) cs);
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   462
    val cases' = sort (int_ord o Library.swap o pairself (length o snd))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   463
      (Library.foldl count_cases ([], cases));
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   464
    fun mk_case1 (cname, (vs, body), _) = Syntax.const "_case1" $
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   465
      list_comb (Syntax.const cname, vs) $ body;
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   466
  in
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   467
    Syntax.const "_case_syntax" $ x $
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   468
      foldr1 (fn (t, u) => Syntax.const "_case2" $ t $ u) (map mk_case1
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   469
        (case cases' of
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   470
           [] => cases
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   471
         | (default, cnames) :: _ =>
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   472
           if length cnames = 1 then cases
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   473
           else if length cnames = length constrs then
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   474
             [hd cases, ("dummy_pattern", ([], default), false)]
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   475
           else
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   476
             filter_out (fn (cname, _, _) => cname mem cnames) cases @
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   477
             [("dummy_pattern", ([], default), false)]))
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   478
  end;
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   479
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   480
fun make_case_tr' case_names descr = List.concat (map
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   481
  (fn ((_, (_, _, constrs)), case_name) => map (rpair (case_tr' constrs))
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   482
    (NameSpace.accesses' case_name)) (descr ~~ case_names));
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   483
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   484
val trfun_setup =
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   485
  [Theory.add_advanced_trfuns ([], [("_case_syntax", case_tr)], [], [])];
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   486
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   487
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   488
(* prepare types *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   489
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   490
fun read_typ sign ((Ts, sorts), str) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   491
  let
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   492
    val T = Type.no_tvars (Sign.read_typ (sign, AList.lookup (op =)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   493
      (map (apfst (rpair ~1)) sorts)) str) handle TYPE (msg, _, _) => error msg
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   494
  in (Ts @ [T], add_typ_tfrees (T, sorts)) end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   495
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   496
fun cert_typ sign ((Ts, sorts), raw_T) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   497
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   498
    val T = Type.no_tvars (Sign.certify_typ sign raw_T) handle
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   499
      TYPE (msg, _, _) => error msg;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   500
    val sorts' = add_typ_tfrees (T, sorts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   501
  in (Ts @ [T],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   502
      case duplicates (map fst sorts') of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   503
         [] => sorts'
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   504
       | dups => error ("Inconsistent sort constraints for " ^ commas dups))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   505
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   506
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   507
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   508
(**** make datatype info ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   509
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   510
fun make_dt_info descr induct reccomb_names rec_thms
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   511
    (((((((((i, (_, (tname, _, _))), case_name), case_thms),
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   512
      exhaustion_thm), distinct_thm), inject), nchotomy), case_cong), weak_case_cong) =
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   513
  (tname,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   514
   {index = i,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   515
    descr = descr,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   516
    rec_names = reccomb_names,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   517
    rec_rewrites = rec_thms,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   518
    case_name = case_name,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   519
    case_rewrites = case_thms,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   520
    induction = induct,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   521
    exhaustion = exhaustion_thm,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   522
    distinct = distinct_thm,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   523
    inject = inject,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   524
    nchotomy = nchotomy,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   525
    case_cong = case_cong,
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   526
    weak_case_cong = weak_case_cong});
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   527
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   528
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   529
(********************* axiomatic introduction of datatypes ********************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   530
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   531
fun add_and_get_axioms_atts label tnames attss ts thy =
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   532
  foldr (fn (((tname, atts), t), (thy', axs)) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   533
    let
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   534
      val (thy'', [ax]) = thy' |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   535
        Theory.add_path tname |>
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   536
        PureThy.add_axioms_i [((label, t), atts)];
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   537
    in (Theory.parent_path thy'', ax::axs)
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   538
    end) (thy, []) (tnames ~~ attss ~~ ts);
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   539
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   540
fun add_and_get_axioms label tnames =
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   541
  add_and_get_axioms_atts label tnames (replicate (length tnames) []);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   542
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   543
fun add_and_get_axiomss label tnames tss thy =
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   544
  foldr (fn ((tname, ts), (thy', axss)) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   545
    let
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   546
      val (thy'', [axs]) = thy' |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   547
        Theory.add_path tname |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   548
        PureThy.add_axiomss_i [((label, ts), [])];
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   549
    in (Theory.parent_path thy'', axs::axss)
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   550
    end) (thy, []) (tnames ~~ tss);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   551
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   552
fun add_datatype_axm flat_names new_type_names descr sorts types_syntax constr_syntax dt_info
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   553
    case_names_induct case_names_exhausts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   554
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   555
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   556
    val recTs = get_rec_types descr' sorts;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   557
    val used = foldr add_typ_tfree_names [] recTs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   558
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   559
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   560
    val no_size = exists (fn (_, (_, _, constrs)) => exists (fn (_, cargs) => exists
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13480
diff changeset
   561
      (fn dt => is_rec_type dt andalso not (null (fst (strip_dtyp dt))))
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13480
diff changeset
   562
        cargs) constrs) descr';
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   563
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   564
    (**** declare new types and constants ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   565
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   566
    val tyvars = map (fn (_, (_, Ts, _)) => map dest_DtTFree Ts) (hd descr);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   567
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   568
    val constr_decls = map (fn (((_, (_, _, constrs)), T), constr_syntax') =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   569
      map (fn ((_, cargs), (cname, mx)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   570
        (cname, map (typ_of_dtyp descr' sorts) cargs ---> T, mx))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   571
          (constrs ~~ constr_syntax')) ((hd descr) ~~ newTs ~~ constr_syntax);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   572
15457
1fbd4aba46e3 Adapted to modified interface of PureThy.get_thm(s).
berghofe
parents: 15444
diff changeset
   573
    val (rec_result_Ts, reccomb_fn_Ts) = DatatypeProp.make_primrec_Ts descr sorts used;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   574
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   575
    val big_reccomb_name = (space_implode "_" new_type_names) ^ "_rec";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   576
    val reccomb_names = if length descr' = 1 then [big_reccomb_name] else
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   577
      (map ((curry (op ^) (big_reccomb_name ^ "_")) o string_of_int)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   578
        (1 upto (length descr')));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   579
9739
8470c4662685 Improved names for size function.
berghofe
parents: 9714
diff changeset
   580
    val size_names = DatatypeProp.indexify_names
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   581
      (map (fn T => name_of_typ T ^ "_size") (Library.drop (length (hd descr), recTs)));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   582
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12311
diff changeset
   583
    val freeT = TFree (variant used "'t", HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   584
    val case_fn_Ts = map (fn (i, (_, _, constrs)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   585
      map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   586
        let val Ts = map (typ_of_dtyp descr' sorts) cargs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   587
        in Ts ---> freeT end) constrs) (hd descr);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   588
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   589
    val case_names = map (fn s => (s ^ "_case")) new_type_names;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   590
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   591
    val thy2' = thy |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   592
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   593
      (** new types **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   594
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   595
      curry (Library.foldr (fn (((name, mx), tvs), thy') => thy' |>
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   596
          TypedefPackage.add_typedecls [(name, tvs, mx)]))
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   597
        (types_syntax ~~ tyvars) |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   598
      add_path flat_names (space_implode "_" new_type_names) |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   599
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   600
      (** primrec combinators **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   601
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   602
      Theory.add_consts_i (map (fn ((name, T), T') =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   603
        (name, reccomb_fn_Ts @ [T] ---> T', NoSyn))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   604
          (reccomb_names ~~ recTs ~~ rec_result_Ts)) |>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   605
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   606
      (** case combinators **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   607
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   608
      Theory.add_consts_i (map (fn ((name, T), Ts) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   609
        (name, Ts @ [T] ---> freeT, NoSyn))
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   610
          (case_names ~~ newTs ~~ case_fn_Ts));
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   611
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   612
    val reccomb_names' = map (Sign.intern_const thy2') reccomb_names;
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   613
    val case_names' = map (Sign.intern_const thy2') case_names;
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   614
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   615
    val thy2 = thy2' |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   616
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   617
      (** size functions **)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   618
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   619
      (if no_size then I else Theory.add_consts_i (map (fn (s, T) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   620
        (Sign.base_name s, T --> HOLogic.natT, NoSyn))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   621
          (size_names ~~ Library.drop (length (hd descr), recTs)))) |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   622
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   623
      (** constructors **)
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   624
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   625
      parent_path flat_names |>
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   626
      curry (Library.foldr (fn (((((_, (_, _, constrs)), T), tname),
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   627
        constr_syntax'), thy') => thy' |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   628
          add_path flat_names tname |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   629
            Theory.add_consts_i (map (fn ((_, cargs), (cname, mx)) =>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   630
              (cname, map (typ_of_dtyp descr' sorts) cargs ---> T, mx))
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   631
                (constrs ~~ constr_syntax')) |>
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   632
          parent_path flat_names))
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   633
            (hd descr ~~ newTs ~~ new_type_names ~~ constr_syntax);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   634
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   635
    (**** introduction of axioms ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   636
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   637
    val rec_axs = DatatypeProp.make_primrecs new_type_names descr sorts thy2;
9739
8470c4662685 Improved names for size function.
berghofe
parents: 9714
diff changeset
   638
    val size_axs = if no_size then [] else DatatypeProp.make_size descr sorts thy2;
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   639
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   640
    val (thy3, (([induct], [rec_thms]), inject)) =
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   641
      thy2 |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   642
      Theory.add_path (space_implode "_" new_type_names) |>
10911
eb5721204b38 proper induction rule for arbitrarily branching datatype;
wenzelm
parents: 10525
diff changeset
   643
      PureThy.add_axioms_i [(("induct", DatatypeProp.make_ind descr sorts),
13340
9b0332344ae2 Simplified proof of induction rule for datatypes involving function types.
berghofe
parents: 12922
diff changeset
   644
        [case_names_induct])] |>>>
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   645
      PureThy.add_axiomss_i [(("recs", rec_axs), [])] |>>
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   646
      (if no_size then I else #1 o PureThy.add_axiomss_i [(("size", size_axs), [])]) |>>
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   647
      Theory.parent_path |>>>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   648
      add_and_get_axiomss "inject" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   649
        (DatatypeProp.make_injs descr sorts);
16486
1a12cdb6ee6b get_thm(s): Name;
wenzelm
parents: 16430
diff changeset
   650
    val size_thms = if no_size then [] else get_thms thy3 (Name "size");
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   651
    val (thy4, distinct) = add_and_get_axiomss "distinct" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   652
      (DatatypeProp.make_distincts new_type_names descr sorts thy3) thy3;
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   653
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   654
    val exhaust_ts = DatatypeProp.make_casedists descr sorts;
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   655
    val (thy5, exhaustion) = add_and_get_axioms_atts "exhaust" new_type_names
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   656
      (map Library.single case_names_exhausts) exhaust_ts thy4;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   657
    val (thy6, case_thms) = add_and_get_axiomss "cases" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   658
      (DatatypeProp.make_cases new_type_names descr sorts thy5) thy5;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   659
    val (split_ts, split_asm_ts) = ListPair.unzip
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   660
      (DatatypeProp.make_splits new_type_names descr sorts thy6);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   661
    val (thy7, split) = add_and_get_axioms "split" new_type_names split_ts thy6;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   662
    val (thy8, split_asm) = add_and_get_axioms "split_asm" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   663
      split_asm_ts thy7;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   664
    val (thy9, nchotomys) = add_and_get_axioms "nchotomy" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   665
      (DatatypeProp.make_nchotomys descr sorts) thy8;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   666
    val (thy10, case_congs) = add_and_get_axioms "case_cong" new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   667
      (DatatypeProp.make_case_congs new_type_names descr sorts thy9) thy9;
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   668
    val (thy11, weak_case_congs) = add_and_get_axioms "weak_case_cong" new_type_names
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   669
      (DatatypeProp.make_weak_case_congs new_type_names descr sorts thy10) thy10;
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   670
6305
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   671
    val dt_infos = map (make_dt_info descr' induct reccomb_names' rec_thms)
4cbdb974220c Fixed bug in add_datatype_axm:
berghofe
parents: 6103
diff changeset
   672
      ((0 upto length (hd descr) - 1) ~~ (hd descr) ~~ case_names' ~~ case_thms ~~
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   673
        exhaustion ~~ replicate (length (hd descr)) QuickAndDirty ~~ inject ~~
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   674
          nchotomys ~~ case_congs ~~ weak_case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   675
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   676
    val simps = List.concat (distinct @ inject @ case_thms) @ size_thms @ rec_thms;
9386
8800603d99f6 theorems foo.splits = foo.split foo.split_asm;
wenzelm
parents: 9149
diff changeset
   677
    val split_thms = split ~~ split_asm;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   678
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   679
    val thy12 = thy11 |>
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   680
      Theory.add_advanced_trfuns ([], [], make_case_tr' case_names' (hd descr), []) |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   681
      Theory.add_path (space_implode "_" new_type_names) |>
11345
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   682
      add_rules simps case_thms size_thms rec_thms inject distinct
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   683
                weak_case_congs Simplifier.cong_add_global |> 
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17325
diff changeset
   684
      put_datatypes (fold Symtab.update dt_infos dt_info) |>
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   685
      add_cases_induct dt_infos induct |>
9386
8800603d99f6 theorems foo.splits = foo.split foo.split_asm;
wenzelm
parents: 9149
diff changeset
   686
      Theory.parent_path |>
13466
42766aa25460 Added calls to add_dt_realizers.
berghofe
parents: 13462
diff changeset
   687
      (#1 o store_thmss "splits" new_type_names (map (fn (x, y) => [x, y]) split_thms)) |>
42766aa25460 Added calls to add_dt_realizers.
berghofe
parents: 13462
diff changeset
   688
      DatatypeRealizer.add_dt_realizers sorts (map snd dt_infos);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   689
  in
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   690
    (thy12,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   691
     {distinct = distinct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   692
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   693
      exhaustion = exhaustion,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   694
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   695
      case_thms = case_thms,
9386
8800603d99f6 theorems foo.splits = foo.split foo.split_asm;
wenzelm
parents: 9149
diff changeset
   696
      split_thms = split_thms,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   697
      induction = induct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   698
      size = size_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   699
      simps = simps})
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   700
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   701
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   702
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   703
(******************* definitional introduction of datatypes *******************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   704
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   705
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
   706
    case_names_induct case_names_exhausts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   707
  let
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   708
    val _ = message ("Proofs for datatype(s) " ^ commas_quote new_type_names);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   709
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   710
    val (thy2, inject, distinct, dist_rewrites, simproc_dists, induct) = thy |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   711
      DatatypeRepProofs.representation_proofs flat_names dt_info new_type_names descr sorts
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   712
        types_syntax constr_syntax case_names_induct;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   713
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   714
    val (thy3, casedist_thms) = DatatypeAbsProofs.prove_casedist_thms new_type_names descr
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   715
      sorts induct case_names_exhausts thy2;
8478
6053a5cd2881 Eliminated store_clasimp.
berghofe
parents: 8442
diff changeset
   716
    val (thy4, (reccomb_names, rec_thms)) = DatatypeAbsProofs.prove_primrec_thms
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   717
      flat_names new_type_names descr sorts dt_info inject dist_rewrites dist_ss induct thy3;
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   718
    val (thy6, (case_thms, case_names)) = DatatypeAbsProofs.prove_case_thms
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   719
      flat_names new_type_names descr sorts reccomb_names rec_thms thy4;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   720
    val (thy7, split_thms) = DatatypeAbsProofs.prove_split_thms new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   721
      descr sorts inject dist_rewrites casedist_thms case_thms thy6;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   722
    val (thy8, nchotomys) = DatatypeAbsProofs.prove_nchotomys new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   723
      descr sorts casedist_thms thy7;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   724
    val (thy9, case_congs) = DatatypeAbsProofs.prove_case_congs new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   725
      descr sorts nchotomys case_thms thy8;
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   726
    val (thy10, weak_case_congs) = DatatypeAbsProofs.prove_weak_case_congs new_type_names
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   727
      descr sorts thy9;
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   728
    val (thy11, size_thms) = DatatypeAbsProofs.prove_size_thms flat_names new_type_names
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   729
      descr sorts reccomb_names rec_thms thy10;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   730
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   731
    val dt_infos = map (make_dt_info (List.concat descr) induct reccomb_names rec_thms)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   732
      ((0 upto length (hd descr) - 1) ~~ (hd descr) ~~ case_names ~~ case_thms ~~
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   733
        casedist_thms ~~ simproc_dists ~~ inject ~~ nchotomys ~~ case_congs ~~ weak_case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   734
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   735
    val simps = List.concat (distinct @ inject @ case_thms) @ size_thms @ rec_thms;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   736
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   737
    val thy12 = thy11 |>
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   738
      Theory.add_advanced_trfuns ([], [], make_case_tr' case_names (hd descr), []) |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   739
      Theory.add_path (space_implode "_" new_type_names) |>
11345
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   740
      add_rules simps case_thms size_thms rec_thms inject distinct
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   741
                weak_case_congs (Simplifier.change_global_ss (op addcongs)) |> 
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17325
diff changeset
   742
      put_datatypes (fold Symtab.update dt_infos dt_info) |>
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   743
      add_cases_induct dt_infos induct |>
9386
8800603d99f6 theorems foo.splits = foo.split foo.split_asm;
wenzelm
parents: 9149
diff changeset
   744
      Theory.parent_path |>
13466
42766aa25460 Added calls to add_dt_realizers.
berghofe
parents: 13462
diff changeset
   745
      (#1 o store_thmss "splits" new_type_names (map (fn (x, y) => [x, y]) split_thms)) |>
42766aa25460 Added calls to add_dt_realizers.
berghofe
parents: 13462
diff changeset
   746
      DatatypeRealizer.add_dt_realizers sorts (map snd dt_infos);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   747
  in
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   748
    (thy12,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   749
     {distinct = distinct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   750
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   751
      exhaustion = casedist_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   752
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   753
      case_thms = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   754
      split_thms = split_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   755
      induction = induct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   756
      size = size_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   757
      simps = simps})
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   758
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   759
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   760
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   761
(*********************** declare existing type as datatype *********************)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   762
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   763
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
   764
  let
12922
ed70a600f0ea clarified internal theory dependencies;
wenzelm
parents: 12876
diff changeset
   765
    val _ = Theory.requires thy0 "Inductive" "datatype representations";
ed70a600f0ea clarified internal theory dependencies;
wenzelm
parents: 12876
diff changeset
   766
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   767
    fun app_thmss srcs thy = foldl_map (fn (thy, x) => apply_theorems x thy) (thy, srcs);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   768
    fun app_thm src thy = apsnd hd (apply_theorems [src] thy);
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   769
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   770
    val (((thy1, induction), inject), distinct) = thy0
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   771
      |> app_thmss raw_distinct
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   772
      |> apfst (app_thmss raw_inject)
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   773
      |> apfst (apfst (app_thm raw_induction));
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   774
    val sign = Theory.sign_of thy1;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   775
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   776
    val induction' = freezeT induction;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   777
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   778
    fun err t = error ("Ill-formed predicate in induction rule: " ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   779
      Sign.string_of_term sign t);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   780
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   781
    fun get_typ (t as _ $ Var (_, Type (tname, Ts))) =
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   782
          ((tname, map dest_TFree Ts) handle TERM _ => err t)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   783
      | get_typ t = err t;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   784
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   785
    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
   786
    val new_type_names = getOpt (alt_names, map fst dtnames);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   787
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   788
    fun get_constr t = (case Logic.strip_assums_concl t of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   789
        _ $ (_ $ t') => (case head_of t' of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   790
            Const (cname, cT) => (case strip_type cT of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   791
                (Ts, Type (tname, _)) => (tname, (cname, map (dtyp_of_typ dtnames) Ts))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   792
              | _ => err t)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   793
          | _ => err t)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   794
      | _ => err t);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   795
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   796
    fun make_dt_spec [] _ _ = []
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   797
      | make_dt_spec ((tname, tvs)::dtnames') i constrs =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   798
          let val (constrs', constrs'') = take_prefix (equal tname o fst) constrs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   799
          in (i, (tname, map DtTFree tvs, map snd constrs'))::
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   800
            (make_dt_spec dtnames' (i + 1) constrs'')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   801
          end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   802
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   803
    val descr = make_dt_spec dtnames 0 (map get_constr (prems_of induction'));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   804
    val sorts = add_term_tfrees (concl_of induction', []);
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   805
    val dt_info = get_datatypes thy1;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   806
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   807
    val case_names_induct = mk_case_names_induct descr;
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   808
    val case_names_exhausts = mk_case_names_exhausts descr (map #1 dtnames);
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   809
    
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   810
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6423
diff changeset
   811
    val _ = message ("Proofs for datatype(s) " ^ commas_quote new_type_names);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   812
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   813
    val (thy2, casedist_thms) = thy1 |>
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   814
      DatatypeAbsProofs.prove_casedist_thms new_type_names [descr] sorts induction
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   815
        case_names_exhausts;
8478
6053a5cd2881 Eliminated store_clasimp.
berghofe
parents: 8442
diff changeset
   816
    val (thy3, (reccomb_names, rec_thms)) = DatatypeAbsProofs.prove_primrec_thms
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   817
      false new_type_names [descr] sorts dt_info inject distinct dist_ss induction thy2;
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   818
    val (thy4, (case_thms, case_names)) = DatatypeAbsProofs.prove_case_thms false
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   819
      new_type_names [descr] sorts reccomb_names rec_thms thy3;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   820
    val (thy5, split_thms) = DatatypeAbsProofs.prove_split_thms
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   821
      new_type_names [descr] sorts inject distinct casedist_thms case_thms thy4;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   822
    val (thy6, nchotomys) = DatatypeAbsProofs.prove_nchotomys new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   823
      [descr] sorts casedist_thms thy5;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   824
    val (thy7, case_congs) = DatatypeAbsProofs.prove_case_congs new_type_names
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   825
      [descr] sorts nchotomys case_thms thy6;
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   826
    val (thy8, weak_case_congs) = DatatypeAbsProofs.prove_weak_case_congs new_type_names
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   827
      [descr] sorts thy7;
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   828
    val (thy9, size_thms) =
16430
bc07926e4f03 accomodate change of TheoryDataFun;
wenzelm
parents: 16364
diff changeset
   829
      if Context.exists_name "NatArith" thy8 then
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   830
        DatatypeAbsProofs.prove_size_thms false new_type_names
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   831
          [descr] sorts reccomb_names rec_thms thy8
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8541
diff changeset
   832
      else (thy8, []);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   833
9149
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   834
    val (thy10, [induction']) = thy9 |>
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   835
      (#1 o store_thmss "inject" new_type_names inject) |>
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   836
      (#1 o store_thmss "distinct" new_type_names distinct) |>
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   837
      Theory.add_path (space_implode "_" new_type_names) |>
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   838
      PureThy.add_thms [(("induct", induction), [case_names_induct])];
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   839
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   840
    val dt_infos = map (make_dt_info descr induction' reccomb_names rec_thms)
10121
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   841
      ((0 upto length descr - 1) ~~ descr ~~ case_names ~~ case_thms ~~ casedist_thms ~~
fb9be005cc44 export get_datatypes_sg;
wenzelm
parents: 9747
diff changeset
   842
        map FewConstrs distinct ~~ inject ~~ nchotomys ~~ case_congs ~~ weak_case_congs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   843
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   844
    val simps = List.concat (distinct @ inject @ case_thms) @ size_thms @ rec_thms;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   845
9149
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   846
    val thy11 = thy10 |>
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   847
      Theory.add_advanced_trfuns ([], [], make_case_tr' case_names descr, []) |>
11345
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   848
      add_rules simps case_thms size_thms rec_thms inject distinct
cd605c85e421 improved iff_add_global, new function add_rules factoring out common behaviour
oheimb
parents: 10930
diff changeset
   849
                weak_case_congs (Simplifier.change_global_ss (op addcongs)) |> 
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17325
diff changeset
   850
      put_datatypes (fold Symtab.update dt_infos dt_info) |>
11805
b110a1ea90da declare projected induction rules stemming from nested recursion;
wenzelm
parents: 11725
diff changeset
   851
      add_cases_induct dt_infos induction' |>
9386
8800603d99f6 theorems foo.splits = foo.split foo.split_asm;
wenzelm
parents: 9149
diff changeset
   852
      Theory.parent_path |>
13466
42766aa25460 Added calls to add_dt_realizers.
berghofe
parents: 13462
diff changeset
   853
      (#1 o store_thmss "splits" new_type_names (map (fn (x, y) => [x, y]) split_thms)) |>
42766aa25460 Added calls to add_dt_realizers.
berghofe
parents: 13462
diff changeset
   854
      DatatypeRealizer.add_dt_realizers sorts (map snd dt_infos);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   855
  in
9149
a126a40cba76 export proper induction rule;
wenzelm
parents: 8697
diff changeset
   856
    (thy11,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   857
     {distinct = distinct,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   858
      inject = inject,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   859
      exhaustion = casedist_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   860
      rec_thms = rec_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   861
      case_thms = case_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   862
      split_thms = split_thms,
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   863
      induction = induction',
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   864
      size = size_thms,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   865
      simps = simps})
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   866
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   867
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   868
val rep_datatype = gen_rep_datatype IsarThy.apply_theorems;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   869
val rep_datatype_i = gen_rep_datatype IsarThy.apply_theorems_i;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   870
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   871
11958
2ece34b9fd8e Isar: fixed rep_datatype args;
wenzelm
parents: 11805
diff changeset
   872
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   873
(******************************** add datatype ********************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   874
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   875
fun gen_add_datatype prep_typ err flat_names new_type_names dts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   876
  let
12922
ed70a600f0ea clarified internal theory dependencies;
wenzelm
parents: 12876
diff changeset
   877
    val _ = Theory.requires thy "Datatype_Universe" "datatype definitions";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   878
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   879
    (* this theory is used just for parsing *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   880
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   881
    val tmp_thy = thy |>
5892
e5e44cc54eb2 Attribute.tthms_of;
wenzelm
parents: 5720
diff changeset
   882
      Theory.copy |>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   883
      Theory.add_types (map (fn (tvs, tname, mx, _) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   884
        (tname, length tvs, mx)) dts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   885
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6385
diff changeset
   886
    val sign = Theory.sign_of tmp_thy;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   887
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   888
    val (tyvars, _, _, _)::_ = dts;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   889
    val (new_dts, types_syntax) = ListPair.unzip (map (fn (tvs, tname, mx, _) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   890
      let val full_tname = Sign.full_name sign (Syntax.type_name tname mx)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   891
      in (case duplicates tvs of
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   892
            [] => if eq_set (tyvars, tvs) then ((full_tname, tvs), (tname, mx))
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   893
                  else error ("Mutually recursive datatypes must have same type parameters")
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   894
          | dups => error ("Duplicate parameter(s) for datatype " ^ full_tname ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   895
              " : " ^ commas dups))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   896
      end) dts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   897
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   898
    val _ = (case duplicates (map fst new_dts) @ duplicates new_type_names of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   899
      [] => () | dups => error ("Duplicate datatypes: " ^ commas dups));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   900
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   901
    fun prep_dt_spec ((dts', constr_syntax, sorts, i), (tvs, tname, mx, constrs)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   902
      let
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   903
        fun prep_constr ((constrs, constr_syntax', sorts'), (cname, cargs, mx')) =
5279
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   904
          let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   905
            val (cargs', sorts'') = Library.foldl (prep_typ sign) (([], sorts'), cargs);
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   906
            val _ = (case foldr add_typ_tfree_names [] cargs' \\ tvs of
5279
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   907
                [] => ()
cba6a96f5812 Improved well-formedness check.
berghofe
parents: 5177
diff changeset
   908
              | vs => error ("Extra type variables on rhs: " ^ commas vs))
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   909
          in (constrs @ [((if flat_names then Sign.full_name sign else
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   910
                Sign.full_name_path sign tname) (Syntax.const_name cname mx'),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   911
                   map (dtyp_of_typ new_dts) cargs')],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   912
              constr_syntax' @ [(cname, mx')], sorts'')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   913
          end handle ERROR =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   914
            error ("The error above occured in constructor " ^ cname ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   915
              " of datatype " ^ tname);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   916
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   917
        val (constrs', constr_syntax', sorts') =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   918
          Library.foldl prep_constr (([], [], sorts), constrs)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   919
8405
0255394a05da add_cases_induct: produce proper case names;
wenzelm
parents: 8325
diff changeset
   920
      in
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   921
        case duplicates (map fst constrs') of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   922
           [] =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   923
             (dts' @ [(i, (Sign.full_name sign (Syntax.type_name tname mx),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   924
                map DtTFree tvs, constrs'))],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   925
              constr_syntax @ [constr_syntax'], sorts', i + 1)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   926
         | dups => error ("Duplicate constructors " ^ commas dups ^
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   927
             " in datatype " ^ tname)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   928
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   929
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   930
    val (dts', constr_syntax, sorts', i) = Library.foldl prep_dt_spec (([], [], [], 0), dts);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   931
    val sorts = sorts' @ (map (rpair (Sign.defaultS sign)) (tyvars \\ map fst sorts'));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   932
    val dt_info = get_datatypes thy;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6851
diff changeset
   933
    val (descr, _) = unfold_datatypes sign dts' sorts dt_info dts' i;
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   934
    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
   935
      if err then error ("Nonemptiness check failed for datatype " ^ s)
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   936
      else raise exn;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   937
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   938
    val descr' = List.concat descr;
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   939
    val case_names_induct = mk_case_names_induct descr';
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   940
    val case_names_exhausts = mk_case_names_exhausts descr' (map #1 new_dts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   941
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   942
    (if (!quick_and_dirty) then add_datatype_axm else add_datatype_def)
8437
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   943
      flat_names new_type_names descr sorts types_syntax constr_syntax dt_info
258281c43dea removed cases_of;
wenzelm
parents: 8405
diff changeset
   944
      case_names_induct case_names_exhausts thy
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   945
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   946
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   947
val add_datatype_i = gen_add_datatype cert_typ;
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14799
diff changeset
   948
val add_datatype = gen_add_datatype read_typ true;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   949
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   950
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   951
(** package setup **)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   952
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   953
(* setup theory *)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   954
14799
a405aadff16c Added more flexible parse / print translations for case expressions.
berghofe
parents: 14471
diff changeset
   955
val setup = [DatatypesData.init, Method.add_methods tactic_emulations] @ simproc_setup @ trfun_setup;
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   956
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   957
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   958
(* outer syntax *)
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   959
17057
0934ac31985f OuterKeyword;
wenzelm
parents: 16973
diff changeset
   960
local structure P = OuterParse and K = OuterKeyword in
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   961
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   962
val datatype_decl =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   963
  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
   964
    (P.$$$ "=" |-- P.enum1 "|" (P.name -- Scan.repeat P.typ -- P.opt_mixfix));
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   965
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   966
fun mk_datatype args =
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   967
  let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   968
    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
   969
    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
   970
      (vs, t, mx, map (fn ((x, y), z) => (x, y, z)) cons)) args;
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   971
  in #1 o add_datatype false names specs end;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   972
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   973
val datatypeP =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   974
  OuterSyntax.command "datatype" "define inductive datatypes" K.thy_decl
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   975
    (P.and_list1 datatype_decl >> (Toplevel.theory o mk_datatype));
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   976
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   977
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   978
val rep_datatype_decl =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   979
  Scan.option (Scan.repeat1 P.name) --
11958
2ece34b9fd8e Isar: fixed rep_datatype args;
wenzelm
parents: 11805
diff changeset
   980
    Scan.optional (P.$$$ "distinct" |-- P.!!! (P.and_list1 P.xthms1)) [[]] --
2ece34b9fd8e Isar: fixed rep_datatype args;
wenzelm
parents: 11805
diff changeset
   981
    Scan.optional (P.$$$ "inject" |-- P.!!! (P.and_list1 P.xthms1)) [[]] --
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   982
    (P.$$$ "induction" |-- P.!!! P.xthm);
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   983
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   984
fun mk_rep_datatype (((opt_ts, dss), iss), ind) = #1 o rep_datatype opt_ts dss iss ind;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   985
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   986
val rep_datatypeP =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   987
  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
   988
    (rep_datatype_decl >> (Toplevel.theory o mk_rep_datatype));
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   989
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   990
6479
b0448cab1b1e rep_datatype syntax: 'induction' instead of 'induct';
wenzelm
parents: 6441
diff changeset
   991
val _ = OuterSyntax.add_keywords ["distinct", "inject", "induction"];
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   992
val _ = OuterSyntax.add_parsers [datatypeP, rep_datatypeP];
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   993
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   994
end;
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   995
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   996
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   997
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   998
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
   999
structure BasicDatatypePackage: BASIC_DATATYPE_PACKAGE = DatatypePackage;
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
  1000
open BasicDatatypePackage;
15704
93163972dbdc *** MESSAGE REFERS TO PREVIOUS VERSION ***
wenzelm
parents: 15703
diff changeset
  1001