src/HOL/Tools/Datatype/datatype_aux.ML
author wenzelm
Mon, 12 Dec 2011 20:55:57 +0100
changeset 45821 c2f6c50e3d42
parent 45743 857b7fcb0365
child 45822 843dc212f69e
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
     1
(*  Title:      HOL/Tools/Datatype/datatype_aux.ML
11539
0f17da240450 tuned headers;
wenzelm
parents: 10120
diff changeset
     2
    Author:     Stefan Berghofer, TU Muenchen
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     3
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
     4
Datatype package: auxiliary data structures and functions.
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     5
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     6
31737
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
     7
signature DATATYPE_COMMON =
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
     8
sig
32964
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
     9
  type config = {strict : bool, quiet : bool}
31737
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    10
  val default_config : config
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    11
  datatype dtyp =
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    12
      DtTFree of string
32964
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    13
    | DtType of string * dtyp list
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    14
    | DtRec of int
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    15
  type descr = (int * (string * dtyp list * (string * dtyp list) list)) list
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    16
  type info =
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    17
   {index : int,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    18
    descr : descr,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    19
    sorts : (string * sort) list,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    20
    inject : thm list,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    21
    distinct : thm list,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    22
    induct : thm,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    23
    inducts : thm list,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    24
    exhaust : thm,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    25
    nchotomy : thm,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    26
    rec_names : string list,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    27
    rec_rewrites : thm list,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    28
    case_name : string,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    29
    case_rewrites : thm list,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    30
    case_cong : thm,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    31
    weak_case_cong : thm,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    32
    split : thm,
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    33
    split_asm: thm}
31737
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    34
end
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    35
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    36
signature DATATYPE_AUX =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    37
sig
31737
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    38
  include DATATYPE_COMMON
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    39
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
    40
  val message : config -> string -> unit
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
    41
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18377
diff changeset
    42
  val store_thmss_atts : string -> string list -> attribute list list -> thm list list
18349
58de95a16d3c Added store_thmss_atts to signature again.
berghofe
parents: 18319
diff changeset
    43
    -> theory -> thm list list * theory
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18145
diff changeset
    44
  val store_thmss : string -> string list -> thm list list -> theory -> thm list list * theory
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18377
diff changeset
    45
  val store_thms_atts : string -> string list -> attribute list list -> thm list
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18145
diff changeset
    46
    -> theory -> thm list * theory
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 18145
diff changeset
    47
  val store_thms : string -> string list -> thm list -> theory -> thm list * theory
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    48
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    49
  val split_conj_thm : thm -> thm list
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    50
  val mk_conj : term list -> term
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    51
  val mk_disj : term list -> term
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    52
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    53
  val app_bnds : term -> int -> term
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    54
45735
7d7d7af647a9 tuned signature;
wenzelm
parents: 45701
diff changeset
    55
  val ind_tac : thm -> string list -> int -> tactic
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    56
  val exh_tac : (string -> thm) -> int -> tactic
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    57
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    58
  exception Datatype
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14673
diff changeset
    59
  exception Datatype_Empty of string
9740
1c5b0f27de56 New function name_of_typ.
berghofe
parents: 8435
diff changeset
    60
  val name_of_typ : typ -> string
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    61
  val dtyp_of_typ : (string * string list) list -> typ -> dtyp
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    62
  val mk_Free : string -> typ -> int -> term
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    63
  val is_rec_type : dtyp -> bool
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    64
  val typ_of_dtyp : descr -> (string * sort) list -> dtyp -> typ
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    65
  val dest_DtTFree : dtyp -> string
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    66
  val dest_DtRec : dtyp -> int
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    67
  val strip_dtyp : dtyp -> dtyp list * dtyp
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    68
  val body_index : dtyp -> int
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    69
  val mk_fun_dtyp : dtyp list -> dtyp -> dtyp
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    70
  val get_nonrec_types : descr -> (string * sort) list -> typ list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    71
  val get_branching_types : descr -> (string * sort) list -> typ list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    72
  val get_arities : descr -> int list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    73
  val get_rec_types : descr -> (string * sort) list -> typ list
31605
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
    74
  val interpret_construction : descr -> (string * sort) list
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
    75
    -> { atyp: typ -> 'a, dtyp: typ list -> int * bool -> string * typ list -> 'a }
33243
17014b1b9353 normalized basic type abbreviations;
wenzelm
parents: 33042
diff changeset
    76
    -> ((string * typ list) * (string * 'a list) list) list
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    77
  val check_nonempty : descr list -> unit
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
    78
  val unfold_datatypes :
45742
debb68e8d23f some localization;
wenzelm
parents: 45738
diff changeset
    79
    Proof.context -> descr -> (string * sort) list -> info Symtab.table ->
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
    80
      descr -> int -> descr list * int
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
    81
  val find_shortest_path : descr -> int -> (string * int) option
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    82
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    83
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
    84
structure Datatype_Aux : DATATYPE_AUX =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    85
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    86
31668
a616e56a5ec8 datatype packages: record datatype_config for configuration flags; less verbose signatures
haftmann
parents: 31605
diff changeset
    87
(* datatype option flags *)
a616e56a5ec8 datatype packages: record datatype_config for configuration flags; less verbose signatures
haftmann
parents: 31605
diff changeset
    88
32964
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    89
type config = {strict : bool, quiet : bool};
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    90
val default_config : config = {strict = true, quiet = false};
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    91
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    92
fun message ({quiet = true, ...} : config) s = writeln s
2d7e1ab55037 tuned signature;
wenzelm
parents: 32952
diff changeset
    93
  | message _ _ = ();
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    94
8435
51a040fd2200 adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8404
diff changeset
    95
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    96
(* store theorems in theory *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    97
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18349
diff changeset
    98
fun store_thmss_atts label tnames attss thmss =
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18349
diff changeset
    99
  fold_map (fn ((tname, atts), thms) =>
40929
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40722
diff changeset
   100
    Global_Theory.add_thmss
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40722
diff changeset
   101
      [((Binding.qualify true tname (Binding.name label), thms), atts)]
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40722
diff changeset
   102
    #-> (fn thm::_ => pair thm)) (tnames ~~ attss ~~ thmss)
28361
232fcbba2e4e explicit checkpoint for low-level (global) theory operations, admits concurrent proofs;
wenzelm
parents: 26939
diff changeset
   103
  ##> Theory.checkpoint;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   104
18101
43724981f8f9 New function store_thmss_atts.
berghofe
parents: 18069
diff changeset
   105
fun store_thmss label tnames = store_thmss_atts label tnames (replicate (length tnames) []);
43724981f8f9 New function store_thmss_atts.
berghofe
parents: 18069
diff changeset
   106
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18349
diff changeset
   107
fun store_thms_atts label tnames attss thmss =
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18349
diff changeset
   108
  fold_map (fn ((tname, atts), thms) =>
40929
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40722
diff changeset
   109
    Global_Theory.add_thms
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40722
diff changeset
   110
      [((Binding.qualify true tname (Binding.name label), thms), atts)]
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40722
diff changeset
   111
    #-> (fn thm::_ => pair thm)) (tnames ~~ attss ~~ thmss)
28361
232fcbba2e4e explicit checkpoint for low-level (global) theory operations, admits concurrent proofs;
wenzelm
parents: 26939
diff changeset
   112
  ##> Theory.checkpoint;
8435
51a040fd2200 adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8404
diff changeset
   113
51a040fd2200 adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8404
diff changeset
   114
fun store_thms label tnames = store_thms_atts label tnames (replicate (length tnames) []);
51a040fd2200 adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8404
diff changeset
   115
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   116
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   117
(* split theorem thm_1 & ... & thm_n into n theorems *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   118
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   119
fun split_conj_thm th =
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   120
  ((th RS conjunct1)::(split_conj_thm (th RS conjunct2))) handle THM _ => [th];
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   121
38795
848be46708dc formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
haftmann
parents: 36692
diff changeset
   122
val mk_conj = foldr1 (HOLogic.mk_binop @{const_name HOL.conj});
848be46708dc formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
haftmann
parents: 36692
diff changeset
   123
val mk_disj = foldr1 (HOLogic.mk_binop @{const_name HOL.disj});
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   124
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   125
fun app_bnds t i = list_comb (t, map Bound (i - 1 downto 0));
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   126
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   127
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   128
(* instantiate induction rule *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   129
45735
7d7d7af647a9 tuned signature;
wenzelm
parents: 45701
diff changeset
   130
fun ind_tac indrule indnames = CSUBGOAL (fn (cgoal, i) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   131
  let
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   132
    val cert = cterm_of (Thm.theory_of_cterm cgoal);
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   133
    val goal = term_of cgoal;
8305
93aa21ec5494 HOLogic.dest_conj;
wenzelm
parents: 7015
diff changeset
   134
    val ts = HOLogic.dest_conj (HOLogic.dest_Trueprop (concl_of indrule));
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   135
    val ts' = HOLogic.dest_conj (HOLogic.dest_Trueprop (Logic.strip_imp_concl goal));
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   136
    val getP =
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   137
      if can HOLogic.dest_imp (hd ts)
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   138
      then apfst SOME o HOLogic.dest_imp
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   139
      else pair NONE;
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   140
    val flt =
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   141
      if null indnames then I
45738
0430f9123e43 eliminated some legacy operations;
wenzelm
parents: 45735
diff changeset
   142
      else filter (member (op =) indnames o fst);
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   143
    fun abstr (t1, t2) =
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   144
      (case t1 of
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   145
        NONE =>
45738
0430f9123e43 eliminated some legacy operations;
wenzelm
parents: 45735
diff changeset
   146
          (case flt (Term.add_frees t2 []) of
0430f9123e43 eliminated some legacy operations;
wenzelm
parents: 45735
diff changeset
   147
            [(s, T)] => SOME (absfree (s, T) t2)
25676
f3815084e89e - Removed redundant head_len field in datatype_info
berghofe
parents: 24712
diff changeset
   148
          | _ => NONE)
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   149
      | SOME (_ $ t') => SOME (Abs ("x", fastype_of t', abstract_over (t', t2))));
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   150
    val insts =
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   151
      map_filter (fn (t, u) =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   152
        (case abstr (getP u) of
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   153
          NONE => NONE
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   154
        | SOME u' => SOME (t |> getP |> snd |> head_of |> cert, cert u'))) (ts ~~ ts');
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   155
    val indrule' = cterm_instantiate insts indrule;
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   156
  in rtac indrule' i end);
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   157
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   158
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   159
(* perform exhaustive case analysis on last parameter of subgoal i *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   160
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   161
fun exh_tac exh_thm_of = CSUBGOAL (fn (cgoal, i) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   162
  let
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   163
    val thy = Thm.theory_of_cterm cgoal;
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   164
    val goal = term_of cgoal;
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   165
    val params = Logic.strip_params goal;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   166
    val (_, Type (tname, _)) = hd (rev params);
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   167
    val exhaustion = Thm.lift_rule cgoal (exh_thm_of tname);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   168
    val prem' = hd (prems_of exhaustion);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   169
    val _ $ (_ $ lhs $ _) = hd (rev (Logic.strip_assums_hyp prem'));
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   170
    val exhaustion' =
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   171
      cterm_instantiate [(cterm_of thy (head_of lhs),
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   172
        cterm_of thy (fold_rev (fn (_, T) => fn t => Abs ("z", T, t)) params (Bound 0)))] exhaustion;
42368
3b8498ac2314 proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
wenzelm
parents: 42364
diff changeset
   173
  in compose_tac (false, exhaustion', nprems_of exhaustion) i end);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   174
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   175
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   176
(********************** Internal description of datatypes *********************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   178
datatype dtyp =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   179
    DtTFree of string
45821
wenzelm
parents: 45743
diff changeset
   180
  | DtType of string * dtyp list
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   181
  | DtRec of int;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   182
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   183
(* information about datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   184
16901
d649ff14096a Tuned comment.
berghofe
parents: 15574
diff changeset
   185
(* index, datatype name, type arguments, constructor name, types of constructor's arguments *)
8404
4b39358f9810 type descr;
wenzelm
parents: 8324
diff changeset
   186
type descr = (int * (string * dtyp list * (string * dtyp list) list)) list;
4b39358f9810 type descr;
wenzelm
parents: 8324
diff changeset
   187
31737
b3f63611784e simplified names of common datatype types
haftmann
parents: 31668
diff changeset
   188
type info =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   189
  {index : int,
8404
4b39358f9810 type descr;
wenzelm
parents: 8324
diff changeset
   190
   descr : descr,
18319
c52b139ebde0 Added new component "sorts" to record datatype_info.
berghofe
parents: 18314
diff changeset
   191
   sorts : (string * sort) list,
32718
45929374f1bd more appropriate order of field in dt_info
haftmann
parents: 32712
diff changeset
   192
   inject : thm list,
32900
dc883c6126d4 dropped simproc_dist formally
haftmann
parents: 32733
diff changeset
   193
   distinct : thm list,
32727
9072201cd69d avoid compound fields in datatype info record
haftmann
parents: 32718
diff changeset
   194
   induct : thm,
9072201cd69d avoid compound fields in datatype info record
haftmann
parents: 32718
diff changeset
   195
   inducts : thm list,
32718
45929374f1bd more appropriate order of field in dt_info
haftmann
parents: 32712
diff changeset
   196
   exhaust : thm,
45929374f1bd more appropriate order of field in dt_info
haftmann
parents: 32712
diff changeset
   197
   nchotomy : thm,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   198
   rec_names : string list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   199
   rec_rewrites : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   200
   case_name : string,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   201
   case_rewrites : thm list,
10120
0f315aeee16e info: weak_case_cong;
wenzelm
parents: 9740
diff changeset
   202
   case_cong : thm,
32718
45929374f1bd more appropriate order of field in dt_info
haftmann
parents: 32712
diff changeset
   203
   weak_case_cong : thm,
32727
9072201cd69d avoid compound fields in datatype info record
haftmann
parents: 32718
diff changeset
   204
   split : thm,
9072201cd69d avoid compound fields in datatype info record
haftmann
parents: 32718
diff changeset
   205
   split_asm: thm};
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   206
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   207
fun mk_Free s T i = Free (s ^ string_of_int i, T);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   208
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   209
fun subst_DtTFree _ substs (T as DtTFree name) = the_default T (AList.lookup (op =) substs name)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   210
  | subst_DtTFree i substs (DtType (name, ts)) = DtType (name, map (subst_DtTFree i substs) ts)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   211
  | subst_DtTFree i _ (DtRec j) = DtRec (i + j);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   212
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   213
exception Datatype;
14887
4938ce4ef295 Added exception Datatype_Empty.
berghofe
parents: 14673
diff changeset
   214
exception Datatype_Empty of string;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   215
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   216
fun dest_DtTFree (DtTFree a) = a
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   217
  | dest_DtTFree _ = raise Datatype;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   218
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   219
fun dest_DtRec (DtRec i) = i
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   220
  | dest_DtRec _ = raise Datatype;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   221
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   222
fun is_rec_type (DtType (_, dts)) = exists is_rec_type dts
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   223
  | is_rec_type (DtRec _) = true
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   224
  | is_rec_type _ = false;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   225
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   226
fun strip_dtyp (DtType ("fun", [T, U])) = apfst (cons T) (strip_dtyp U)
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   227
  | strip_dtyp T = ([], T);
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   228
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   229
val body_index = dest_DtRec o snd o strip_dtyp;
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   230
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   231
fun mk_fun_dtyp [] U = U
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   232
  | mk_fun_dtyp (T :: Ts) U = DtType ("fun", [T, mk_fun_dtyp Ts U]);
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   233
13707
55670a70a5f9 name_of_type now replaces non-identifiers by dummy names.
berghofe
parents: 13641
diff changeset
   234
fun name_of_typ (Type (s, Ts)) =
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   235
      let val s' = Long_Name.base_name s in
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   236
        space_implode "_"
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   237
          (filter_out (equal "") (map name_of_typ Ts) @
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   238
            [if Lexicon.is_identifier s' then s' else "x"])
13707
55670a70a5f9 name_of_type now replaces non-identifiers by dummy names.
berghofe
parents: 13641
diff changeset
   239
      end
9740
1c5b0f27de56 New function name_of_typ.
berghofe
parents: 8435
diff changeset
   240
  | name_of_typ _ = "";
1c5b0f27de56 New function name_of_typ.
berghofe
parents: 8435
diff changeset
   241
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   242
fun dtyp_of_typ _ (TFree (n, _)) = DtTFree n
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   243
  | dtyp_of_typ _ (TVar _) = error "Illegal schematic type variable(s)"
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   244
  | dtyp_of_typ new_dts (Type (tname, Ts)) =
17485
c39871c52977 introduced AList module
haftmann
parents: 17412
diff changeset
   245
      (case AList.lookup (op =) new_dts tname of
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   246
        NONE => DtType (tname, map (dtyp_of_typ new_dts) Ts)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   247
      | SOME vs =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   248
          if map (try (fst o dest_TFree)) Ts = map SOME vs then
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   249
            DtRec (find_index (curry op = tname o fst) new_dts)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   250
          else error ("Illegal occurrence of recursive type " ^ tname));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   251
17485
c39871c52977 introduced AList module
haftmann
parents: 17412
diff changeset
   252
fun typ_of_dtyp descr sorts (DtTFree a) = TFree (a, (the o AList.lookup (op =) sorts) a)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   253
  | typ_of_dtyp descr sorts (DtRec i) =
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   254
      let val (s, ds, _) = the (AList.lookup (op =) descr i)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   255
      in Type (s, map (typ_of_dtyp descr sorts) ds) end
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   256
  | typ_of_dtyp descr sorts (DtType (s, ds)) = Type (s, map (typ_of_dtyp descr sorts) ds);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   257
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   258
(* find all non-recursive types in datatype description *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   259
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   260
fun get_nonrec_types descr sorts =
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   261
  map (typ_of_dtyp descr sorts) (fold (fn (_, (_, _, constrs)) =>
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   262
    fold (fn (_, cargs) => union (op =) (filter_out is_rec_type cargs)) constrs) descr []);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   263
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   264
(* get all recursive types in datatype description *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   265
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   266
fun get_rec_types descr sorts = map (fn (_ , (s, ds, _)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   267
  Type (s, map (typ_of_dtyp descr sorts) ds)) descr;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   268
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   269
(* get all branching types *)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   270
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   271
fun get_branching_types descr sorts =
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   272
  map (typ_of_dtyp descr sorts)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   273
    (fold
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   274
      (fn (_, (_, _, constrs)) =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   275
        fold (fn (_, cargs) => fold (strip_dtyp #> fst #> fold (insert op =)) cargs) constrs)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   276
      descr []);
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   277
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   278
fun get_arities descr =
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   279
  fold
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   280
    (fn (_, (_, _, constrs)) =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   281
      fold (fn (_, cargs) =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   282
        fold (insert op =) (map (length o fst o strip_dtyp) (filter is_rec_type cargs))) constrs)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   283
    descr [];
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   284
31605
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   285
(* interpret construction of datatype *)
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   286
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   287
fun interpret_construction descr vs {atyp, dtyp} =
31605
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   288
  let
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   289
    val typ_of_dtyp = typ_of_dtyp descr vs;
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   290
    fun interpT dT =
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   291
      (case strip_dtyp dT of
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   292
        (dTs, DtRec l) =>
31605
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   293
          let
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   294
            val (tyco, dTs', _) = the (AList.lookup (op =) descr l);
31605
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   295
            val Ts = map typ_of_dtyp dTs;
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   296
            val Ts' = map typ_of_dtyp dTs';
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   297
            val is_proper = forall (can dest_TFree) Ts';
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   298
          in dtyp Ts (l, is_proper) (tyco, Ts') end
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   299
      | _ => atyp (typ_of_dtyp dT));
31605
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   300
    fun interpC (c, dTs) = (c, map interpT dTs);
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   301
    fun interpD (_, (tyco, dTs, cs)) = ((tyco, map typ_of_dtyp dTs), map interpC cs);
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   302
  in map interpD descr end;
92d7a5094e23 separate directory for datatype package
haftmann
parents: 30364
diff changeset
   303
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   304
(* nonemptiness check for datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   305
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   306
fun check_nonempty descr =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   307
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 32900
diff changeset
   308
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   309
    fun is_nonempty_dt is i =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   310
      let
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   311
        val (_, _, constrs) = the (AList.lookup (op =) descr' i);
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   312
        fun arg_nonempty (_, DtRec i) =
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   313
              if member (op =) is i then false
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   314
              else is_nonempty_dt (i :: is) i
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   315
          | arg_nonempty _ = true;
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   316
      in exists (forall (arg_nonempty o strip_dtyp) o snd) constrs end
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   317
  in
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   318
    assert_all (fn (i, _) => is_nonempty_dt [i] i) (hd descr)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   319
      (fn (_, (s, _, _)) => raise Datatype_Empty s)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   320
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   321
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   322
(* unfold a list of mutually recursive datatype specifications *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   323
(* all types of the form DtType (dt_name, [..., DtRec _, ...]) *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   324
(* need to be unfolded                                         *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   325
45742
debb68e8d23f some localization;
wenzelm
parents: 45738
diff changeset
   326
fun unfold_datatypes ctxt orig_descr sorts (dt_info : info Symtab.table) descr i =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   327
  let
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   328
    fun typ_error T msg =
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   329
      error ("Non-admissible type expression\n" ^
45742
debb68e8d23f some localization;
wenzelm
parents: 45738
diff changeset
   330
        Syntax.string_of_typ ctxt (typ_of_dtyp (orig_descr @ descr) sorts T) ^ "\n" ^ msg);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   331
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   332
    fun get_dt_descr T i tname dts =
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17261
diff changeset
   333
      (case Symtab.lookup dt_info tname of
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   334
        NONE =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   335
          typ_error T (tname ^ " is not a datatype - can't use it in nested recursion")
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   336
      | SOME {index, descr, ...} =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   337
          let
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   338
            val (_, vars, _) = the (AList.lookup (op =) descr index);
45743
857b7fcb0365 misc tuning;
wenzelm
parents: 45742
diff changeset
   339
            val subst = map dest_DtTFree vars ~~ dts
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   340
              handle ListPair.UnequalLengths =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   341
                typ_error T ("Type constructor " ^ tname ^ " used with wrong number of arguments");
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   342
          in
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   343
            (i + index,
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   344
              map (fn (j, (tn, args, cs)) =>
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   345
                (i + j, (tn, map (subst_DtTFree i subst) args,
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   346
                  map (apsnd (map (subst_DtTFree i subst))) cs))) descr)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   347
          end);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   348
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   349
    (* unfold a single constructor argument *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   350
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   351
    fun unfold_arg T (i, Ts, descrs) =
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   352
      if is_rec_type T then
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   353
        let val (Us, U) = strip_dtyp T in
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   354
          if exists is_rec_type Us then
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   355
            typ_error T "Non-strictly positive recursive occurrence of type"
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   356
          else
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   357
            (case U of
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   358
              DtType (tname, dts) =>
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   359
                let
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   360
                  val (index, descr) = get_dt_descr T i tname dts;
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   361
                  val (descr', i') =
45742
debb68e8d23f some localization;
wenzelm
parents: 45738
diff changeset
   362
                    unfold_datatypes ctxt orig_descr sorts dt_info descr (i + length descr);
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   363
                in (i', Ts @ [mk_fun_dtyp Us (DtRec index)], descrs @ descr') end
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   364
            | _ => (i, Ts @ [T], descrs))
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   365
        end
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 11539
diff changeset
   366
      else (i, Ts @ [T], descrs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   367
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   368
    (* unfold a constructor *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   369
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   370
    fun unfold_constr (cname, cargs) (i, constrs, descrs) =
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   371
      let val (i', cargs', descrs') = fold unfold_arg cargs (i, [], descrs)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   372
      in (i', constrs @ [(cname, cargs')], descrs') end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   373
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   374
    (* unfold a single datatype *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   375
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   376
    fun unfold_datatype (j, (tname, tvars, constrs)) (i, dtypes, descrs) =
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   377
      let val (i', constrs', descrs') = fold unfold_constr constrs (i, [], descrs)
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   378
      in (i', dtypes @ [(j, (tname, tvars, constrs'))], descrs') end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   379
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 33243
diff changeset
   380
    val (i', descr', descrs) = fold unfold_datatype descr (i, [], []);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   381
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   382
  in (descr' :: descrs, i') end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   383
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   384
(* find shortest path to constructor with no recursive arguments *)
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   385
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   386
fun find_nonempty descr is i =
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   387
  let
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   388
    fun arg_nonempty (_, DtRec i) =
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   389
          if member (op =) is i
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   390
          then NONE
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   391
          else Option.map (Integer.add 1 o snd) (find_nonempty descr (i :: is) i)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   392
      | arg_nonempty _ = SOME 0;
33971
9c7fa7f76950 modernized structure Datatype_Aux
haftmann
parents: 33970
diff changeset
   393
    fun max_inf (SOME i) (SOME j) = SOME (Integer.max i j)
33970
haftmann
parents: 33968
diff changeset
   394
      | max_inf _ _ = NONE;
haftmann
parents: 33968
diff changeset
   395
    fun max xs = fold max_inf xs (SOME 0);
haftmann
parents: 33968
diff changeset
   396
    val (_, _, constrs) = the (AList.lookup (op =) descr i);
45700
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   397
    val xs =
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   398
      sort (int_ord o pairself snd)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   399
        (map_filter (fn (s, dts) => Option.map (pair s)
9dcbf6a1829c misc tuning;
wenzelm
parents: 44241
diff changeset
   400
          (max (map (arg_nonempty o strip_dtyp) dts))) constrs)
33970
haftmann
parents: 33968
diff changeset
   401
  in if null xs then NONE else SOME (hd xs) end;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   402
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   403
fun find_shortest_path descr i = find_nonempty descr [i] i;
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33338
diff changeset
   404
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   405
end;