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