src/HOL/datatype.ML
author oheimb
Thu, 18 Apr 1996 14:43:00 +0200
changeset 1663 7e84d8712a0b
parent 1574 5a63ab90ee8a
child 1668 8ead1fe65aad
permissions -rw-r--r--
adapted proof of drop_succ_Cons: problem with non-confluent simpset removed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(* Title:       HOL/datatype.ML
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
   ID:          $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
   Author:      Max Breitling, Carsten Clasohm, Tobias Nipkow, Norbert Voelker
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
   Copyright 1995 TU Muenchen
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
(*used for constructor parameters*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
datatype dt_type = dtVar of string |
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
  dtTyp of dt_type list * string |
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
  dtRek of dt_type list * string;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
structure Datatype =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
struct
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
local 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
val mysort = sort;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
open ThyParse HOLogic;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
exception Impossible;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
exception RecError of string;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
val is_dtRek = (fn dtRek _ => true  |  _  => false);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
fun opt_parens s = if s = "" then "" else enclose "(" ")" s; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
(* ----------------------------------------------------------------------- *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
(* Derivation of the primrec combinator application from the equations     *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
(* substitute fname(ls,xk,rs) by yk(ls,rs) in t for (xk,yk) in pairs  *) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
fun subst_apps (_,_) [] t = t
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
  | subst_apps (fname,rpos) pairs t =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
    let 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
    fun subst (Abs(a,T,t)) = Abs(a,T,subst t)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
      | subst (funct $ body) = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    35
        let val (f,b) = strip_comb (funct$body)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    36
        in 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    37
          if is_Const f andalso fst(dest_Const f) = fname 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    38
            then 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    39
              let val (ls,rest) = (take(rpos,b), drop(rpos,b));
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    40
                val (xk,rs) = (hd rest,tl rest)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    41
                  handle LIST _ => raise RecError "not enough arguments \
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    42
                   \ in recursive application on rhs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
              in 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    44
                (case assoc (pairs,xk) of 
1574
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1465
diff changeset
    45
                   None   => list_comb(f, map subst b)
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1465
diff changeset
    46
                 | Some U => list_comb(U, map subst (ls @ rs)))
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    47
              end
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    48
          else list_comb(f, map subst b)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    49
        end
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
      | subst(t) = t
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
    in subst t end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
(* abstract rhs *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
fun abst_rec (fname,rpos,tc,ls,cargs,rs,rhs) =       
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
  let val rargs = (map fst o 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    57
                   (filter (fn (a,T) => is_dtRek T))) (cargs ~~ tc);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
      val subs = map (fn (s,T) => (s,dummyT))
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    59
                   (rev(rename_wrt_term rhs rargs));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
      val subst_rhs = subst_apps (fname,rpos)
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    61
                        (map Free rargs ~~ map Free subs) rhs;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
  in 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
      list_abs_free (cargs @ subs @ ls @ rs, subst_rhs) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
  end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
(* parsing the prim rec equations *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
fun dest_eq ( Const("Trueprop",_) $ (Const ("op =",_) $ lhs $ rhs))
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
                 = (lhs, rhs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
   | dest_eq _ = raise RecError "not a proper equation"; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
fun dest_rec eq = 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
  let val (lhs,rhs) = dest_eq eq; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
    val (name,args) = strip_comb lhs; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
    val (ls',rest)  = take_prefix is_Free args; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
    val (middle,rs') = take_suffix is_Free rest;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
    val rpos = length ls';
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
    val (c,cargs') = strip_comb (hd middle)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
      handle LIST "hd" => raise RecError "constructor missing";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
    val (ls,cargs,rs) = (map dest_Free ls', map dest_Free cargs'
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    81
                         , map dest_Free rs')
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
      handle TERM ("dest_Free",_) => 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    83
          raise RecError "constructor has illegal argument in pattern";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
  in 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
    if length middle > 1 then 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
      raise RecError "more than one non-variable in pattern"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
    else if not(null(findrep (map fst (ls @ rs @ cargs)))) then 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
      raise RecError "repeated variable name in pattern" 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    89
         else (fst(dest_Const name) handle TERM _ => 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    90
               raise RecError "function is not declared as constant in theory"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    91
                 ,rpos,ls,fst( dest_Const c),cargs,rs,rhs)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
  end; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
(* check function specified for all constructors and sort function terms *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
fun check_and_sort (n,its) = 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
  if length its = n 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
    then map snd (mysort (fn ((i : int,_),(j,_)) => i<j) its)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
  else raise error "Primrec definition error:\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
   \Please give an equation for every constructor";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
(* translate rec equations into function arguments suitable for rec comb *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
(* theory parameter needed for printing error messages                   *) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
fun trans_recs _ _ [] = error("No primrec equations.")
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
  | trans_recs thy cs' (eq1::eqs) = 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
    let val (name1,rpos1,ls1,_,_,_,_) = dest_rec eq1
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   108
      handle RecError s =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   109
        error("Primrec definition error: " ^ s ^ ":\n" 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   110
              ^ "   " ^ Sign.string_of_term (sign_of thy) eq1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
      val tcs = map (fn (_,c,T,_,_) => (c,T)) cs';  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
      val cs = map fst tcs;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
      fun trans_recs' _ [] = []
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
        | trans_recs' cis (eq::eqs) = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   115
          let val (name,rpos,ls,c,cargs,rs,rhs) = dest_rec eq; 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   116
            val tc = assoc(tcs,c);
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   117
            val i = (1 + find (c,cs))  handle LIST "find" => 0; 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   118
          in
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   119
          if name <> name1 then 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   120
            raise RecError "function names inconsistent"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   121
          else if rpos <> rpos1 then 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   122
            raise RecError "position of rec. argument inconsistent"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   123
          else if i = 0 then 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   124
            raise RecError "illegal argument in pattern" 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   125
          else if i mem cis then
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   126
            raise RecError "constructor already occured as pattern "
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   127
               else (i,abst_rec (name,rpos,the tc,ls,cargs,rs,rhs))
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   128
                     :: trans_recs' (i::cis) eqs 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   129
          end
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   130
          handle RecError s =>
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   131
                error("Primrec definition error\n" ^ s ^ "\n" 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   132
                      ^ "   " ^ Sign.string_of_term (sign_of thy) eq);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
    in (  name1, ls1
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   134
        , check_and_sort (length cs, trans_recs' [] (eq1::eqs)))
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
    end ;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
  fun add_datatype (typevars, tname, cons_list') thy = 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
    let
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
      fun typid(dtRek(_,id)) = id
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
        | typid(dtVar s) = implode (tl (explode s))
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   142
        | typid(dtTyp(_,id)) = id;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   143
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
      fun index_vnames(vn::vns,tab) =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
            (case assoc(tab,vn) of
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
               None => if vn mem vns
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
                       then (vn^"1") :: index_vnames(vns,(vn,2)::tab)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
                       else vn :: index_vnames(vns,tab)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
             | Some(i) => (vn^(string_of_int i)) ::
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
                          index_vnames(vns,(vn,i+1)::tab))
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   151
        | index_vnames([],tab) = [];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   152
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
      fun mk_var_names types = index_vnames(map typid types,[]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   154
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
      (*search for free type variables and convert recursive *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   156
      fun analyse_types (cons, types, syn) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   157
        let fun analyse(t as dtVar v) =
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
                  if t mem typevars then t
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
                  else error ("Free type variable " ^ v ^ " on rhs.")
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   160
              | analyse(dtTyp(typl,s)) =
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   161
                  if tname <> s then dtTyp(analyses typl, s)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
                  else if typevars = typl then dtRek(typl, s)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
                       else error (s ^ " used in different ways")
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   164
              | analyse(dtRek _) = raise Impossible
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   165
            and analyses ts = map analyse ts;
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   166
        in (cons, Syntax.const_name cons syn, analyses types,
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
            mk_var_names types, syn)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
        end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   169
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
     (*test if all elements are recursive, i.e. if the type is empty*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
      
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
      fun non_empty (cs : ('a * 'b * dt_type list * 'c *'d) list) = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   173
        not(forall (exists is_dtRek o #3) cs) orelse
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   174
        error("Empty datatype not allowed!");
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   175
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
      val cons_list = map analyse_types cons_list';
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
      val dummy = non_empty cons_list;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   178
      val num_of_cons = length cons_list;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   179
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
     (* Auxiliary functions to construct argument and equation lists *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
     (*generate 'var_n, ..., var_m'*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   183
      fun Args(var, delim, n, m) = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   184
        space_implode delim (map (fn n => var^string_of_int(n)) (n upto m));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
      fun C_exp name vns = name ^ opt_parens(space_implode ") (" vns);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   187
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
     (*Arg_eqs([x1,...,xn],[y1,...,yn]) = "x1 = y1 & ... & xn = yn" *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
      fun arg_eqs vns vns' =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
        let fun mkeq(x,x') = x ^ "=" ^ x'
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
        in space_implode " & " (map mkeq (vns~~vns')) end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
     (*Pretty printers for type lists;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
       pp_typlist1: parentheses, pp_typlist2: brackets*)
1279
f59b4f9f2cdc All constants introduced by datatype now operate on class term explicitly.
nipkow
parents: 980
diff changeset
   195
      fun pp_typ (dtVar s) = "(" ^ s ^ "::term)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
        | pp_typ (dtTyp (typvars, id)) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   197
          if null typvars then id else (pp_typlist1 typvars) ^ id
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
        | pp_typ (dtRek (typvars, id)) = (pp_typlist1 typvars) ^ id
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   199
      and
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   200
        pp_typlist' ts = commas (map pp_typ ts)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   201
      and
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   202
        pp_typlist1 ts = if null ts then "" else parens (pp_typlist' ts);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   203
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   204
      fun pp_typlist2 ts = if null ts then "" else brackets (pp_typlist' ts);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   206
     (* Generate syntax translation for case rules *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   207
      fun calc_xrules c_nr y_nr ((_, name, _, vns, _) :: cs) = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   208
        let val arity = length vns;
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   209
          val body  = "z" ^ string_of_int(c_nr);
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   210
          val args1 = if arity=0 then ""
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   211
                      else " " ^ Args ("y", " ", y_nr, y_nr+arity-1);
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   212
          val args2 = if arity=0 then ""
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   213
                      else "(% " ^ Args ("y", " ", y_nr, y_nr+arity-1) 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   214
                        ^ ". ";
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   215
          val (rest1,rest2) = 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   216
            if null cs then ("","")
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   217
            else let val (h1, h2) = calc_xrules (c_nr+1) (y_nr+arity) cs
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   218
            in (" | " ^ h1, " " ^ h2) end;
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   219
        in (name ^ args1 ^ " => " ^ body ^ rest1,
964
5f690b184f91 fixed two severe bugs in calc_xrules and case_rule
clasohm
parents: 923
diff changeset
   220
            args2 ^ body ^ (if args2 = "" then "" else ")") ^ rest2)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
        end
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
        | calc_xrules _ _ [] = raise Impossible;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
      
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
      val xrules =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   225
        let val (first_part, scnd_part) = calc_xrules 1 1 cons_list
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   226
        in [("logic", "case x of " ^ first_part) <->
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   227
             ("logic", tname ^ "_case " ^ scnd_part ^ " x")]
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   228
        end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   229
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   230
     (*type declarations for constructors*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   231
      fun const_type (id, _, typlist, _, syn) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   232
        (id,  
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   233
         (if null typlist then "" else pp_typlist2 typlist ^ " => ") ^
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   234
            pp_typlist1 typevars ^ tname, syn);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   235
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   236
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   237
      fun assumpt (dtRek _ :: ts, v :: vs ,found) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   238
        let val h = if found then ";P(" ^ v ^ ")" else "[| P(" ^ v ^ ")"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   239
        in h ^ (assumpt (ts, vs, true)) end
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   240
        | assumpt (t :: ts, v :: vs, found) = assumpt (ts, vs, found)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   241
      | assumpt ([], [], found) = if found then "|] ==>" else ""
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   242
        | assumpt _ = raise Impossible;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   243
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   244
      fun t_inducting ((_, name, types, vns, _) :: cs) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   245
        let
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   246
          val h = if null types then " P(" ^ name ^ ")"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   247
                  else " !!" ^ (space_implode " " vns) ^ "." ^
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   248
                    (assumpt (types, vns, false)) ^
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   249
                    "P(" ^ C_exp name vns ^ ")";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   250
          val rest = t_inducting cs;
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   251
        in if rest = "" then h else h ^ "; " ^ rest end
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   252
        | t_inducting [] = "";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   253
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   254
      fun t_induct cl typ_name =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   255
        "[|" ^ t_inducting cl ^ "|] ==> P(" ^ typ_name ^ ")";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   256
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   257
      fun gen_typlist typevar f ((_, _, ts, _, _) :: cs) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   258
        let val h = if (length ts) > 0
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   259
                      then pp_typlist2(f ts) ^ "=>"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   260
                    else ""
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   261
        in h ^ typevar ^  "," ^ (gen_typlist typevar f cs) end
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   262
        | gen_typlist _ _ [] = "";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   263
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   264
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   265
(* -------------------------------------------------------------------- *)
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   266
(* The case constant and rules                                          *)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   267
                
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   268
      val t_case = tname ^ "_case";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   269
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   270
      fun case_rule n (id, name, _, vns, _) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   271
        let val args = if vns = [] then "" else " " ^ space_implode " " vns
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   272
        in (t_case ^ "_" ^ id,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   273
            t_case ^ " " ^ Args("f", " ", 1, num_of_cons)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   274
            ^ " (" ^ name ^ args ^ ") = f"^string_of_int(n) ^ args)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   275
        end
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   276
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   277
      fun case_rules n (c :: cs) = case_rule n c :: case_rules(n+1) cs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   278
        | case_rules _ [] = [];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   279
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   280
      val datatype_arity = length typevars;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   281
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   282
      val types = [(tname, datatype_arity, NoSyn)];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   283
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   284
      val arities = 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   285
        let val term_list = replicate datatype_arity termS;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   286
        in [(tname, term_list, termS)] 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   287
        end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   288
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   289
      val datatype_name = pp_typlist1 typevars ^ tname;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   290
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   291
      val new_tvar_name = variant (map (fn dtVar s => s) typevars) "'z";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   292
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   293
      val case_const =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   294
        (t_case,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   295
         "[" ^ gen_typlist new_tvar_name I cons_list 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   296
         ^  pp_typlist1 typevars ^ tname ^ "] =>" ^ new_tvar_name^"::term",
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   297
         NoSyn);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   298
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   299
      val rules_case = case_rules 1 cons_list;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   300
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   301
(* -------------------------------------------------------------------- *)
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   302
(* The prim-rec combinator                                              *) 
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   303
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   304
      val t_rec = tname ^ "_rec"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   305
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   306
(* adding type variables for dtRek types to end of list of dt_types      *)   
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   307
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   308
      fun add_reks ts = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   309
        ts @ map (fn _ => dtVar new_tvar_name) (filter is_dtRek ts); 
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   310
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   311
(* positions of the dtRek types in a list of dt_types, starting from 1  *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   312
      fun rek_vars ts vns = map snd (filter (is_dtRek o fst) (ts ~~ vns))
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   313
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   314
      fun rec_rule n (id,name,ts,vns,_) = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   315
        let val args = opt_parens(space_implode ") (" vns)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   316
          val fargs = opt_parens(Args("f", ") (", 1, num_of_cons))
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   317
          fun rarg vn = t_rec ^ fargs ^ " (" ^ vn ^ ")"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   318
          val rargs = opt_parens(space_implode ") ("
964
5f690b184f91 fixed two severe bugs in calc_xrules and case_rule
clasohm
parents: 923
diff changeset
   319
                                 (map rarg (rek_vars ts vns)))
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   320
        in
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   321
          (t_rec ^ "_" ^ id,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   322
           t_rec ^ fargs ^ " (" ^ name ^ args ^ ") = f"
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   323
           ^ string_of_int(n) ^ args ^ rargs)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   324
        end
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   325
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   326
      fun rec_rules n (c::cs) = rec_rule n c :: rec_rules (n+1) cs 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   327
        | rec_rules _ [] = [];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   328
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   329
      val rec_const =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   330
        (t_rec,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   331
         "[" ^ (gen_typlist new_tvar_name add_reks cons_list) 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   332
         ^ (pp_typlist1 typevars) ^ tname ^ "] =>" ^ new_tvar_name^"::term",
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   333
         NoSyn);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   334
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   335
      val rules_rec = rec_rules 1 cons_list
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   336
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   337
(* -------------------------------------------------------------------- *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   338
      val consts = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   339
        map const_type cons_list
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   340
        @ (if num_of_cons < dtK then []
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   341
           else [(tname ^ "_ord", datatype_name ^ "=>nat", NoSyn)])
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   342
        @ [case_const,rec_const];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   343
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   344
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   345
      fun Ci_ing ((id, name, _, vns, _) :: cs) =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   346
           if null vns then Ci_ing cs
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   347
           else let val vns' = variantlist(vns,vns)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   348
                in ("inject_" ^ id,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   349
                    "(" ^ (C_exp name vns) ^ "=" ^ (C_exp name vns')
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   350
                    ^ ") = (" ^ (arg_eqs vns vns') ^ ")") :: (Ci_ing cs)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   351
                end
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   352
        | Ci_ing [] = [];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   353
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   354
      fun Ci_negOne (id1,name1,_,vns1,_) (id2,name2,_,vns2,_) =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   355
            let val vns2' = variantlist(vns2,vns1)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   356
                val ax = C_exp name1 vns1 ^ "~=" ^ C_exp name2 vns2'
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   357
        in (id1 ^ "_not_" ^ id2, ax) end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   358
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   359
      fun Ci_neg1 [] = []
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   360
        | Ci_neg1 (c1::cs) = (map (Ci_negOne c1) cs) @ Ci_neg1 cs;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   361
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   362
      fun suc_expr n = 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   363
        if n=0 then "0" else "Suc(" ^ suc_expr(n-1) ^ ")";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   364
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   365
      fun Ci_neg2() =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   366
        let val ord_t = tname ^ "_ord";
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   367
          val cis = cons_list ~~ (0 upto (num_of_cons - 1))
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   368
          fun Ci_neg2equals ((id, name, _, vns, _), n) =
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   369
            let val ax = ord_t ^ "(" ^ (C_exp name vns) ^ ") = " ^ (suc_expr n)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   370
            in (ord_t ^ "_" ^ id, ax) end
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   371
        in (ord_t ^ "_distinct", ord_t^"(x) ~= "^ord_t^"(y) ==> x ~= y") ::
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   372
          (map Ci_neg2equals cis)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   373
        end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   374
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   375
      val rules_distinct = if num_of_cons < dtK then Ci_neg1 cons_list
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   376
                           else Ci_neg2();
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   377
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   378
      val rules_inject = Ci_ing cons_list;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   379
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   380
      val rule_induct = (tname ^ "_induct", t_induct cons_list tname);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   381
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   382
      val rules = rule_induct ::
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   383
        (rules_inject @ rules_distinct @ rules_case @ rules_rec);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   384
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   385
      fun add_primrec eqns thy =
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   386
        let val rec_comb = Const(t_rec,dummyT)
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   387
          val teqns = map (fn neq => snd(read_axm (sign_of thy) neq)) eqns
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   388
          val (fname,ls,fns) = trans_recs thy cons_list teqns
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   389
          val rhs = 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   390
            list_abs_free
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   391
            (ls @ [(tname,dummyT)]
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   392
             ,list_comb(rec_comb
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   393
                        , fns @ map Bound (0 ::(length ls downto 1))));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   394
          val sg = sign_of thy;
1574
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1465
diff changeset
   395
          val defpair = (fname ^ "_" ^ tname ^ "_def",
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1465
diff changeset
   396
                         Logic.mk_equals (Const(fname,dummyT), rhs))
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   397
          val defpairT as (_, _ $ Const(_,T) $ _ ) = inferT_axm sg defpair;
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   398
          val varT = Type.varifyT T;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   399
          val ftyp = the (Sign.const_type sg fname);
1574
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1465
diff changeset
   400
        in add_defs_i [defpairT] thy end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   401
1360
6bdee79ef125 added call of store_datatype
clasohm
parents: 1279
diff changeset
   402
    in
1455
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1360
diff changeset
   403
      datatypes := map (fn (x,_,_) => x) cons_list' @ (!datatypes);
1360
6bdee79ef125 added call of store_datatype
clasohm
parents: 1279
diff changeset
   404
      (thy |> add_types types
6bdee79ef125 added call of store_datatype
clasohm
parents: 1279
diff changeset
   405
           |> add_arities arities
6bdee79ef125 added call of store_datatype
clasohm
parents: 1279
diff changeset
   406
           |> add_consts consts
6bdee79ef125 added call of store_datatype
clasohm
parents: 1279
diff changeset
   407
           |> add_trrules xrules
6bdee79ef125 added call of store_datatype
clasohm
parents: 1279
diff changeset
   408
           |> add_axioms rules, add_primrec)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   409
    end
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   410
end
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   411
end
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   412
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   413
(*
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   414
Informal description of functions used in datatype.ML for the Isabelle/HOL
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   415
implementation of prim. rec. function definitions. (N. Voelker, Feb. 1995) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   416
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   417
* subst_apps (fname,rpos) pairs t:
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   418
   substitute the term 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   419
       fname(ls,xk,rs) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   420
   by 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   421
      yk(ls,rs) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   422
   in t for (xk,yk) in pairs, where rpos = length ls. 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   423
   Applied with : 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   424
     fname = function name 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   425
     rpos = position of recursive argument 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   426
     pairs = list of pairs (xk,yk), where 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   427
          xk are the rec. arguments of the constructor in the pattern,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   428
          yk is a variable with name derived from xk 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   429
     t = rhs of equation 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   430
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   431
* abst_rec (fname,rpos,tc,ls,cargs,rs,rhs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   432
  - filter recursive arguments from constructor arguments cargs,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   433
  - perform substitutions on rhs, 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   434
  - derive list subs of new variable names yk for use in subst_apps, 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   435
  - abstract rhs with respect to cargs, subs, ls and rs. 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   436
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   437
* dest_eq t 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   438
  destruct a term denoting an equation into lhs and rhs. 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   439
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   440
* dest_req eq 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   441
  destruct an equation of the form 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   442
      name (vl1..vlrpos, Ci(vi1..vin), vr1..vrn) = rhs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   443
  into 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   444
  - function name  (name) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   445
  - position of the first non-variable parameter  (rpos)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   446
  - the list of first rpos parameters (ls = [vl1..vlrpos]) 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   447
  - the constructor (fst( dest_Const c) = Ci)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   448
  - the arguments of the constructor (cargs = [vi1..vin])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   449
  - the rest of the variables in the pattern (rs = [vr1..vrn])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   450
  - the right hand side of the equation (rhs).  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   451
 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   452
* check_and_sort (n,its)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   453
  check that  n = length its holds, and sort elements of its by 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   454
  first component. 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   455
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   456
* trans_recs thy cs' (eq1::eqs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   457
  destruct eq1 into name1, rpos1, ls1, etc.. 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   458
  get constructor list with and without type (tcs resp. cs) from cs',  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   459
  for every equation:  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   460
    destruct it into (name,rpos,ls,c,cargs,rs,rhs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   461
    get typed constructor tc from c and tcs 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   462
    determine the index i of the constructor 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   463
    check function name and position of rec. argument by comparison
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   464
    with first equation 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   465
    check for repeated variable names in pattern
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   466
    derive function term f_i which is used as argument of the rec. combinator
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   467
    sort the terms f_i according to i and return them together
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   468
      with the function name and the parameter of the definition (ls). 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   469
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   470
* Application:
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   471
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   472
  The rec. combinator is applied to the function terms resulting from
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   473
  trans_rec. This results in a function which takes the recursive arg. 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   474
  as first parameter and then the arguments corresponding to ls. The
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   475
  order of parameters is corrected by setting the rhs equal to 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   476
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   477
  list_abs_free
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   478
            (ls @ [(tname,dummyT)]
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   479
             ,list_comb(rec_comb
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   480
                        , fns @ map Bound (0 ::(length ls downto 1))));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   481
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   482
  Note the de-Bruijn indices counting the number of lambdas between the
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   483
  variable and its binding. 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   484
*)