src/HOL/Tools/datatype_aux.ML
author wenzelm
Fri, 10 Mar 2000 01:13:37 +0100
changeset 8404 4b39358f9810
parent 8324 df7dccddc3de
child 8435 51a040fd2200
permissions -rw-r--r--
type descr;
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_aux.ML
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     2
    ID:         $Id$
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     3
    Author:     Stefan Berghofer
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     4
    Copyright   1998  TU Muenchen
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     5
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     6
Auxiliary functions for defining datatypes
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     7
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     8
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     9
signature DATATYPE_AUX =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    10
sig
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    11
  val quiet_mode : bool ref
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    12
  val message : string -> unit
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    13
  
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    14
  val foldl1 : ('a * 'a -> 'a) -> 'a list -> 'a
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    15
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    16
  val add_path : bool -> string -> theory -> theory
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    17
  val parent_path : bool -> theory -> theory
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    18
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    19
  val store_thmss : string -> string list -> thm list list -> theory -> theory
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    20
  val store_thms : string -> string list -> thm list -> theory -> theory
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    21
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    22
  val split_conj_thm : thm -> thm list
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    23
  val mk_conj : term list -> term
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    24
  val mk_disj : term list -> term
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    25
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    26
  val indtac : thm -> int -> tactic
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    27
  val exh_tac : (string -> thm) -> int -> tactic
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    28
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    29
  datatype simproc_dist = QuickAndDirty
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    30
                        | FewConstrs of thm list
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    31
                        | ManyConstrs of thm * simpset;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    32
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    33
  datatype dtyp =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    34
      DtTFree of string
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    35
    | DtType of string * (dtyp list)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    36
    | DtRec of int;
8404
4b39358f9810 type descr;
wenzelm
parents: 8324
diff changeset
    37
  type descr
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    38
  type datatype_info
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    39
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    40
  exception Datatype
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    41
  val dtyp_of_typ : (string * string list) list -> typ -> dtyp
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    42
  val mk_Free : string -> typ -> int -> term
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    43
  val is_rec_type : dtyp -> bool
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    44
  val typ_of_dtyp : (int * (string * dtyp list *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    45
    (string * dtyp list) list)) list -> (string * sort) list -> dtyp -> typ
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    46
  val dest_DtTFree : dtyp -> string
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    47
  val dest_DtRec : dtyp -> int
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    48
  val dest_TFree : typ -> string
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    49
  val get_nonrec_types : (int * (string * dtyp list *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    50
    (string * dtyp list) list)) list -> (string * sort) list -> typ list
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    51
  val get_branching_types : (int * (string * dtyp list *
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    52
    (string * dtyp list) list)) list -> (string * sort) list -> typ list
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    53
  val get_rec_types : (int * (string * dtyp list *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    54
    (string * dtyp list) list)) list -> (string * sort) list -> typ list
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    55
  val check_nonempty : (int * (string * dtyp list *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    56
    (string * dtyp list) list)) list list -> unit
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    57
  val unfold_datatypes : 
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    58
    Sign.sg -> (int * (string * dtyp list * (string * dtyp list) list)) list ->
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    59
      (string * sort) list -> datatype_info Symtab.table ->
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    60
        (int * (string * dtyp list * (string * dtyp list) list)) list -> int ->
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    61
          (int * (string * dtyp list *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    62
            (string * dtyp list) list)) list list * int
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    63
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    64
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    65
structure DatatypeAux : DATATYPE_AUX =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    66
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    67
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    68
val quiet_mode = ref false;
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    69
fun message s = if !quiet_mode then () else writeln s;
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    70
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    71
(* FIXME: move to library ? *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    72
fun foldl1 f (x::xs) = foldl f (x, xs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    73
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    74
fun add_path flat_names s = if flat_names then I else Theory.add_path s;
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    75
fun parent_path flat_names = if flat_names then I else Theory.parent_path;
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    76
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    77
(* store theorems in theory *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    78
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    79
fun store_thmss label tnames thmss thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    80
  foldr (fn ((tname, thms), thy') => thy' |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    81
    Theory.add_path tname |>
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5891
diff changeset
    82
    PureThy.add_thmss [((label, thms), [])] |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    83
    Theory.parent_path)
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    84
      (tnames ~~ thmss, thy);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    85
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    86
fun store_thms label tnames thms thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    87
  foldr (fn ((tname, thm), thy') => thy' |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    88
    Theory.add_path tname |>
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5891
diff changeset
    89
    PureThy.add_thms [((label, thm), [])] |>
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    90
    Theory.parent_path)
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5177
diff changeset
    91
      (tnames ~~ thms, thy);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    92
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    93
(* split theorem thm_1 & ... & thm_n into n theorems *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    94
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    95
fun split_conj_thm th =
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    96
  ((th RS conjunct1)::(split_conj_thm (th RS conjunct2))) handle THM _ => [th];
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    97
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    98
val mk_conj = foldr1 (HOLogic.mk_binop "op &");
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    99
val mk_disj = foldr1 (HOLogic.mk_binop "op |");
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   100
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   101
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   102
(* instantiate induction rule *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   103
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   104
fun indtac indrule i st =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   105
  let
8305
93aa21ec5494 HOLogic.dest_conj;
wenzelm
parents: 7015
diff changeset
   106
    val ts = HOLogic.dest_conj (HOLogic.dest_Trueprop (concl_of indrule));
93aa21ec5494 HOLogic.dest_conj;
wenzelm
parents: 7015
diff changeset
   107
    val ts' = HOLogic.dest_conj (HOLogic.dest_Trueprop
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   108
      (Logic.strip_imp_concl (nth_elem (i - 1, prems_of st))));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   109
    val getP = if can HOLogic.dest_imp (hd ts) then
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   110
      (apfst Some) o HOLogic.dest_imp else pair None;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   111
    fun abstr (t1, t2) = (case t1 of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   112
        None => let val [Free (s, T)] = add_term_frees (t2, [])
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   113
          in absfree (s, T, t2) end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   114
      | Some (_ $ t' $ _) => Abs ("x", fastype_of t', abstract_over (t', t2)))
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6092
diff changeset
   115
    val cert = cterm_of (Thm.sign_of_thm st);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   116
    val Ps = map (cert o head_of o snd o getP) ts;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   117
    val indrule' = cterm_instantiate (Ps ~~
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   118
      (map (cert o abstr o getP) ts')) indrule
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   119
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   120
    rtac indrule' i st
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   121
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   122
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   123
(* perform exhaustive case analysis on last parameter of subgoal i *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   124
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   125
fun exh_tac exh_thm_of i state =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   126
  let
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6092
diff changeset
   127
    val sg = Thm.sign_of_thm state;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   128
    val prem = nth_elem (i - 1, prems_of state);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   129
    val params = Logic.strip_params prem;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   130
    val (_, Type (tname, _)) = hd (rev params);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   131
    val exhaustion = lift_rule (state, i) (exh_thm_of tname);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   132
    val prem' = hd (prems_of exhaustion);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   133
    val _ $ (_ $ lhs $ _) = hd (rev (Logic.strip_assums_hyp prem'));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   134
    val exhaustion' = cterm_instantiate [(cterm_of sg (head_of lhs),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   135
      cterm_of sg (foldr (fn ((_, T), t) => Abs ("z", T, t))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   136
        (params, Bound 0)))] exhaustion
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   137
  in compose_tac (false, exhaustion', nprems_of exhaustion) i state
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   138
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   139
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   140
(* handling of distinctness theorems *)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   141
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   142
datatype simproc_dist = QuickAndDirty
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   143
                      | FewConstrs of thm list
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   144
                      | ManyConstrs of thm * simpset;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   145
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   146
(********************** Internal description of datatypes *********************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   147
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   148
datatype dtyp =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   149
    DtTFree of string
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   150
  | DtType of string * (dtyp list)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   151
  | DtRec of int;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   152
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   153
(* information about datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   154
8404
4b39358f9810 type descr;
wenzelm
parents: 8324
diff changeset
   155
type descr = (int * (string * dtyp list * (string * dtyp list) list)) list;
4b39358f9810 type descr;
wenzelm
parents: 8324
diff changeset
   156
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   157
type datatype_info =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   158
  {index : int,
8404
4b39358f9810 type descr;
wenzelm
parents: 8324
diff changeset
   159
   descr : descr,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   160
   rec_names : string list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   161
   rec_rewrites : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   162
   case_name : string,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   163
   case_rewrites : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   164
   induction : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   165
   exhaustion : thm,
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   166
   distinct : simproc_dist,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   167
   inject : thm list,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   168
   nchotomy : thm,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   169
   case_cong : thm};
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   170
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   171
fun mk_Free s T i = Free (s ^ (string_of_int i), T);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   172
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   173
fun subst_DtTFree _ substs (T as (DtTFree name)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   174
      (case assoc (substs, name) of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   175
         None => T
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   176
       | Some U => U)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   177
  | subst_DtTFree i substs (DtType (name, ts)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   178
      DtType (name, map (subst_DtTFree i substs) ts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   179
  | subst_DtTFree i _ (DtRec j) = DtRec (i + j);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   180
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   181
exception Datatype;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   182
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   183
fun dest_DtTFree (DtTFree a) = a
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   184
  | dest_DtTFree _ = raise Datatype;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   185
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   186
fun dest_DtRec (DtRec i) = i
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   187
  | dest_DtRec _ = raise Datatype;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   188
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   189
fun is_rec_type (DtType (_, dts)) = exists is_rec_type dts
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   190
  | is_rec_type (DtRec _) = true
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   191
  | is_rec_type _ = false;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   192
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   193
fun dest_TFree (TFree (n, _)) = n;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   194
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   195
fun dtyp_of_typ _ (TFree (n, _)) = DtTFree n
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   196
  | dtyp_of_typ _ (TVar _) = error "Illegal schematic type variable(s)"
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   197
  | dtyp_of_typ new_dts (Type (tname, Ts)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   198
      (case assoc (new_dts, tname) of
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   199
         None => DtType (tname, map (dtyp_of_typ new_dts) Ts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   200
       | Some vs => if map (try dest_TFree) Ts = map Some vs then
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   201
             DtRec (find_index (curry op = tname o fst) new_dts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   202
           else error ("Illegal occurence of recursive type " ^ tname));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   203
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   204
fun typ_of_dtyp descr sorts (DtTFree a) = TFree (a, the (assoc (sorts, a)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   205
  | typ_of_dtyp descr sorts (DtRec i) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   206
      let val (s, ds, _) = the (assoc (descr, i))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   207
      in Type (s, map (typ_of_dtyp descr sorts) ds) end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   208
  | typ_of_dtyp descr sorts (DtType (s, ds)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   209
      Type (s, map (typ_of_dtyp descr sorts) ds);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   210
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   211
(* find all non-recursive types in datatype description *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   212
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   213
fun get_nonrec_types descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   214
  let fun add (Ts, T as DtTFree _) = T ins Ts
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   215
        | add (Ts, T as DtType ("fun", [_, DtRec _])) = Ts
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   216
        | add (Ts, T as DtType _) = T ins Ts
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   217
        | add (Ts, _) = Ts
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   218
  in map (typ_of_dtyp descr sorts) (foldl (fn (Ts, (_, (_, _, constrs))) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   219
    foldl (fn (Ts', (_, cargs)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   220
      foldl add (Ts', cargs)) (Ts, constrs)) ([], descr))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   221
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   222
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   223
(* get all recursive types in datatype description *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   224
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   225
fun get_rec_types descr sorts = map (fn (_ , (s, ds, _)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   226
  Type (s, map (typ_of_dtyp descr sorts) ds)) descr;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   227
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   228
(* get all branching types *)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   229
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   230
fun get_branching_types descr sorts = 
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   231
  let fun add (Ts, DtType ("fun", [T, DtRec _])) = T ins Ts
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   232
        | add (Ts, _) = Ts
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   233
  in map (typ_of_dtyp descr sorts) (foldl (fn (Ts, (_, (_, _, constrs))) =>
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   234
    foldl (fn (Ts', (_, cargs)) =>
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   235
      foldl add (Ts', cargs)) (Ts, constrs)) ([], descr))
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   236
  end;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   237
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   238
(* nonemptiness check for datatypes *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   239
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   240
fun check_nonempty descr =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   241
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   242
    val descr' = flat descr;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   243
    fun is_nonempty_dt is i =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   244
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   245
        val (_, _, constrs) = the (assoc (descr', i));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   246
        fun arg_nonempty (DtRec i) = if i mem is then false
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   247
              else is_nonempty_dt (i::is) i
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   248
          | arg_nonempty (DtType ("fun", [_, T])) = arg_nonempty T
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   249
          | arg_nonempty _ = true;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   250
      in exists ((forall arg_nonempty) o snd) constrs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   251
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   252
  in assert_all (fn (i, _) => is_nonempty_dt [i] i) (hd descr)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   253
    (fn (_, (s, _, _)) => "Nonemptiness check failed for datatype " ^ s)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   254
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   255
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   256
(* unfold a list of mutually recursive datatype specifications *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   257
(* all types of the form DtType (dt_name, [..., DtRec _, ...]) *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   258
(* need to be unfolded                                         *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   259
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   260
fun unfold_datatypes sign orig_descr sorts (dt_info : datatype_info Symtab.table) descr i =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   261
  let
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   262
    fun typ_error T msg = error ("Non-admissible type expression\n" ^
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   263
      Sign.string_of_typ sign (typ_of_dtyp (orig_descr @ descr) sorts T) ^ "\n" ^ msg);
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   264
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   265
    fun get_dt_descr T i tname dts =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   266
      (case Symtab.lookup (dt_info, tname) of
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   267
         None => typ_error T (tname ^ " is not a datatype - can't use it in\
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   268
           \ nested recursion")
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   269
       | (Some {index, descr, ...}) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   270
           let val (_, vars, _) = the (assoc (descr, index));
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   271
               val subst = ((map dest_DtTFree vars) ~~ dts) handle LIST _ =>
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   272
                 typ_error T ("Type constructor " ^ tname ^ " used with wrong\
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   273
                  \ number of arguments")
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   274
           in (i + index, map (fn (j, (tn, args, cs)) => (i + j,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   275
             (tn, map (subst_DtTFree i subst) args,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   276
              map (apsnd (map (subst_DtTFree i subst))) cs))) descr)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   277
           end);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   278
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   279
    (* unfold a single constructor argument *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   280
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   281
    fun unfold_arg ((i, Ts, descrs), T as (DtType (tname, dts))) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   282
          if is_rec_type T then
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   283
            if tname = "fun" then
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   284
              if is_rec_type (hd dts) then
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   285
                typ_error T "Non-strictly positive recursive occurrence of type"
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   286
              else
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   287
                (case hd (tl dts) of
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   288
                   DtType ("fun", _) => typ_error T "Curried function types not allowed"
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   289
                 | T' => let val (i', [T''], descrs') = unfold_arg ((i, [], descrs), T')
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   290
                         in (i', Ts @ [DtType (tname, [hd dts, T''])], descrs') end)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   291
            else
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   292
              let val (index, descr) = get_dt_descr T i tname dts;
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   293
                  val (descr', i') = unfold_datatypes sign orig_descr sorts dt_info descr (i + length descr)
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   294
              in (i', Ts @ [DtRec index], descrs @ descr') end
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   295
          else (i, Ts @ [T], descrs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   296
      | unfold_arg ((i, Ts, descrs), T) = (i, Ts @ [T], descrs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   297
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   298
    (* unfold a constructor *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   299
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   300
    fun unfold_constr ((i, constrs, descrs), (cname, cargs)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   301
      let val (i', cargs', descrs') = foldl unfold_arg ((i, [], descrs), cargs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   302
      in (i', constrs @ [(cname, cargs')], descrs') end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   303
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   304
    (* unfold a single datatype *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   305
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   306
    fun unfold_datatype ((i, dtypes, descrs), (j, (tname, tvars, constrs))) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   307
      let val (i', constrs', descrs') =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   308
        foldl unfold_constr ((i, [], descrs), constrs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   309
      in (i', dtypes @ [(j, (tname, tvars, constrs'))], descrs')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   310
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   311
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   312
    val (i', descr', descrs) = foldl unfold_datatype ((i, [],[]), descr);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   313
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   314
  in (descr' :: descrs, i') end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   315
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   316
end;