Datatype.ML
author lcp
Thu, 21 Jul 1994 10:52:00 +0200
changeset 97 3f4976d8c97f
parent 96 d94d0b324b4b
child 101 5f99df1e26c4
permissions -rw-r--r--
HOL/Makefile: now test depends upon SUBST_FILES HOL/Makefile/SUBST_FILES: changed some filenames to upper case HOL/Makefile: now executes ex/ROOT.ML after Subst/ROOT.ML
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
     1
(*  Title:       HOL/Datatype
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
     2
    ID:          $Id$
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
     3
    Author:      Max Breitling / Carsten Clasohm
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
     4
    Copyright    1994 TU Muenchen
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
     5
*)
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
     6
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
     7
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
     8
(*choice between Ci_neg1 and Ci_neg2 axioms depends on number of constructors*)
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
     9
local
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    10
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    11
val dtK = 5
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    12
val pars = parents "(" ")";
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    13
val brackets = parents "[" "]";
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    14
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
    15
in
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    16
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    17
local open ThyParse in
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    18
val datatype_decls =
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    19
  let val mk_list = brackets o commas;
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    20
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    21
      val tvar = type_var >> (fn s => "dtVar" ^ s);
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
    22
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    23
      val type_var_list = 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    24
        tvar >> (fn s => [s]) || "(" $$-- list1 tvar --$$ ")";
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    25
    
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    26
      val typ =
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    27
         ident                  >> (fn s => "dtTyp([]," ^ quote s ^")")
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    28
        ||
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    29
         type_var_list -- ident >> (fn (ts, id) => "dtTyp(" ^ mk_list ts ^
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    30
  				  "," ^ quote id ^ ")")
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    31
        ||
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    32
         tvar;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    33
    
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    34
      val typ_list = "(" $$-- list1 typ --$$ ")" || empty;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    35
  
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    36
      val cons = name -- typ_list -- opt_mixfix;
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    37
  
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    38
      fun constructs ts =
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    39
        ( cons --$$ "|" -- constructs >> op::
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    40
         ||
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    41
          cons                        >> (fn c => [c])) ts;  
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    42
  
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    43
      val mk_cons = map (fn ((s, ts), syn) => 
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    44
                           pars (commas [s, mk_list ts, syn]));
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    45
  
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    46
      (*remove all quotes from a string*)
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    47
      val rem_quotes = implode o filter (fn c => c <> "\"") o explode;
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    48
            
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    49
      (*generate names of distinct axioms*)
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    50
      fun rules_distinct cs tname = 
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    51
        let val uqcs = map (fn ((s,_),_) => rem_quotes s) cs;
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    52
            (*combine all constructor names with all others w/o duplicates*)
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    53
            fun negOne c = map (fn c2 => quote (c ^ "_not_" ^ c2));
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    54
            fun neg1 [] = []
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    55
              | neg1 (c1 :: cs) = (negOne c1 cs) @ (neg1 cs)
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    56
        in if length uqcs < dtK then neg1 uqcs
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    57
           else quote (tname ^ "_ord_distinct") ::
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    58
                map (fn c => quote (tname ^ "_ord_" ^ c)) uqcs
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    59
        end;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    60
          
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    61
      (*generate string for calling 'add_datatype'*)
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    62
      fun mk_params ((ts, tname), cons) =
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    63
       ("|> add_datatype\n" ^ 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    64
       pars (commas [mk_list ts, quote tname, mk_list (mk_cons cons)]),
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    65
       "structure " ^ tname ^ " =\n\
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    66
       \struct\n\
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    67
       \  val inject = map (get_axiom thy) " ^
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    68
         mk_list (map (fn ((s,_), _) => quote ("inject_" ^ rem_quotes s)) 
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    69
                      (filter_out (null o snd o fst) cons)) ^ ";\n\
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    70
       \  val distinct = " ^ (if length cons < dtK then "let val distinct' = " else "")
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    71
         ^ "map (get_axiom thy) " ^ mk_list (rules_distinct cons tname) ^ 
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    72
         (if length cons < dtK then 
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    73
           "  in distinct' @ (map (fn t => sym COMP (t RS contrapos)) distinct') end"
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    74
          else "") ^ ";\n\
87
b0ea0e55dfe8 added prefix to name of induct axiom
clasohm
parents: 80
diff changeset
    75
       \  val induct = get_axiom thy \"" ^ tname ^ "_induct\";\n\
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    76
       \  val cases = map (get_axiom thy) " ^
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    77
         mk_list (map (fn ((s,_),_) => 
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    78
                         quote(tname ^ "_case_" ^ rem_quotes s)) cons) ^ ";\n\
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    79
       \  val simps = inject @ distinct @ cases;\n\
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    80
       \  fun induct_tac a = res_inst_tac[(" ^ quote tname ^ ", a)]induct;\n\
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    81
       \end;\n");
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    82
  in (type_var_list || empty) -- ident --$$ "=" -- constructs >> mk_params end
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
    83
end;
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
    84
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    85
(*used for constructor parameters*)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    86
datatype dt_type = dtVar of string |
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    87
                   dtTyp of dt_type list * string |
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
    88
                   dtRek of dt_type list * string;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
    89
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
    90
local open Syntax.Mixfix
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
    91
      exception Impossible
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
    92
in
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    93
fun add_datatype (typevars, tname, cons_list') thy = 
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
    94
  let (*check if constructor names are unique*)
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    95
      fun check_cons (cs : (string * 'b * 'c) list) =
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
    96
        (case findrep (map #1 cs) of
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    97
           [] => true
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
    98
         | c::_ => error("Constructor \"" ^ c ^ "\" occurs twice"));
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
    99
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   100
      (*search for free type variables and convert recursive *)
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   101
      fun analyse_types (cons, typlist, syn) =
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   102
            let fun analyse(t as dtVar v) =
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   103
                     if t mem typevars then t
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   104
                     else error ("Variable " ^ v ^ " is free.")
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   105
                  | analyse(dtTyp(typl,s)) =
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   106
                     if tname <> s then dtTyp(analyses typl, s)
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   107
                     else if typevars = typl then dtRek(typl, s)
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   108
                     else error (s ^ " used in different ways")
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   109
                  | analyse(dtRek _) = raise Impossible
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   110
                 and analyses ts = map analyse ts;
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   111
            in (cons, analyses typlist, syn) end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   112
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   113
      (*test if there are elements that are not recursive, i.e. if the type is
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   114
        not empty*)
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   115
      fun one_not_rek (cs : ('a * dt_type list * 'c) list) = 
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   116
        let val contains_no_rek = forall (fn dtRek _ => false | _ => true);
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   117
        in exists (contains_no_rek o #2) cs orelse
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   118
           error("Empty type not allowed!") end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   119
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   120
      val dummy = check_cons cons_list';
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   121
      val cons_list = map analyse_types cons_list';
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   122
      val dummy = one_not_rek cons_list;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   123
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   124
      (*Pretty printers for type lists;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   125
        pp_typlist1: parentheses, pp_typlist2: brackets*)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   126
      fun pp_typ (dtVar s) = s
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   127
        | pp_typ (dtTyp (typvars, id)) =
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   128
            if null typvars then id else (pp_typlist1 typvars) ^ id
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   129
        | pp_typ (dtRek (typvars, id)) = (pp_typlist1 typvars) ^ id
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   130
      and
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   131
          pp_typlist' ts = commas (map pp_typ ts)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   132
      and
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   133
          pp_typlist1 ts = if null ts then "" else pars (pp_typlist' ts);
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   134
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   135
      fun pp_typlist2 ts = if null ts then "" else brackets (pp_typlist' ts);
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   136
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   137
      fun Args(var, delim, n, m) = if n = m then var ^ string_of_int(n) 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   138
                                   else var ^ string_of_int(n) ^ delim ^ 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   139
			    	        Args(var, delim, n+1, m);
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   140
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   141
      (* Generate syntax translation for case rules *)
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   142
      fun calc_xrules c_nr y_nr ((id, typlist, syn) :: cs) = 
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   143
            let val name = const_name id syn;
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   144
                val arity = length typlist;
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   145
                val body  = "z" ^ string_of_int(c_nr);
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   146
                val args1 = if arity=0 then ""
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   147
                            else pars (Args ("y", ",", y_nr, y_nr+arity-1));
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   148
                val args2 = if arity=0 then ""
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   149
                            else "% " ^ Args ("y", " ", y_nr, y_nr+arity-1) 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   150
                            ^ ". ";
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   151
                val (rest1,rest2) = 
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   152
		  if null cs then ("","")
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   153
                  else let val (h1, h2) = calc_xrules (c_nr+1) (y_nr+arity) cs
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   154
                       in (" | " ^ h1, ", " ^ h2) end;
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   155
            in (name ^ args1 ^ " => " ^ body ^ rest1, args2 ^ body ^ rest2) end
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   156
        | calc_xrules _ _ [] = raise Impossible;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   157
      
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   158
      val xrules =
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   159
         let val (first_part, scnd_part) = calc_xrules 1 1 cons_list
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   160
         in  [("logic", "case x of " ^ first_part) <->
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   161
              ("logic", tname ^ "_case(x, " ^ scnd_part ^ ")" )]
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   162
         end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   163
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   164
      (*type declarations for constructors*)
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   165
      fun const_type (id, typlist, syn) =
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   166
           (id,  
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   167
            (if null typlist then "" else pp_typlist2 typlist ^ " => ") ^
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   168
             pp_typlist1 typevars ^ tname, syn);
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   169
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   170
      fun create_typevar (dtVar s) typlist =
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   171
            if (dtVar s) mem typlist then 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   172
	      create_typevar (dtVar (s ^ "'")) typlist 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   173
            else s
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   174
        | create_typevar _ _ = raise Impossible;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   175
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   176
      fun assumpt (dtRek _ :: ts, v :: vs ,found) =
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   177
            let val h = if found then ";P(" ^ v ^ ")" else "[| P(" ^ v ^ ")"
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   178
            in h ^ (assumpt (ts, vs, true)) end
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   179
        | assumpt (t :: ts, v :: vs, found) = assumpt (ts, vs, found)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   180
        | assumpt ([], [], found) = if found then "|] ==>" else ""
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   181
        | assumpt _ = raise Impossible;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   182
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   183
      (*insert type with suggested name 'varname' into table*)
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   184
      fun insert typ varname ((tri as (t, s, n)) :: xs) = 
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   185
            if typ = t then (t, s, n+1) :: xs
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   186
            else tri :: (if varname = s then insert typ (varname ^ "'") xs
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   187
                         else insert typ varname xs)
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   188
        | insert typ varname [] = [(typ, varname, 1)];
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   189
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   190
      fun typid(dtRek(_,id)) = id
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   191
        | typid(dtVar s) = implode (tl (explode s))
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   192
        | typid(dtTyp(_,id)) = id;
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   193
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   194
      val insert_types = foldl (fn (tab,typ) => insert typ (typid typ) tab);
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   195
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   196
      fun update(dtRek _, s, v :: vs, (dtRek _) :: ts) = s :: vs
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   197
        | update(t, s, v :: vs, t1 :: ts) = 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   198
            if t=t1 then s :: vs
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   199
                    else v :: (update (t, s, vs, ts))
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   200
        | update _ = raise Impossible;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   201
      
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   202
      fun update_n (dtRek r1, s, v :: vs, (dtRek r2) :: ts, n) =
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   203
            if r1 = r2 then (s ^ string_of_int n) :: 
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   204
                            (update_n (dtRek r1, s, vs, ts, n+1))
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   205
                       else v :: (update_n (dtRek r1, s, vs, ts, n))
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   206
        | update_n (t, s, v :: vs, t1 :: ts, n) = 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   207
            if t = t1 then (s ^ string_of_int n) :: 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   208
                           (update_n (t, s, vs, ts, n+1))
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   209
                      else v :: (update_n (t, s, vs, ts, n))
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   210
        | update_n (_,_,[],[],_) = []
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   211
        | update_n _ = raise Impossible;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   212
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   213
      (*insert type variables into table*)
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   214
      fun convert typs =
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   215
        let fun conv(vars, (t, s, n)) =
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   216
              if n=1 then update (t, s, vars, typs)
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   217
                     else update_n (t, s, vars, typs, 1)
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   218
        in foldl conv end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   219
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   220
      fun empty_list n = replicate n "";
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   221
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   222
      fun t_inducting ((id, typl, syn) :: cs) =
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   223
            let val name = const_name id syn;
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   224
                val tab = insert_types([],typl);
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   225
                val arity = length typl;
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   226
                val var_list = convert typl (empty_list arity,tab); 
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   227
                val h = if arity = 0 then " P(" ^ name ^ ")"
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   228
                        else " !!" ^ (space_implode " " var_list) ^ "." ^
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   229
                             (assumpt (typl, var_list, false)) ^ "P(" ^ 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   230
                             name ^ "(" ^ (commas var_list) ^ "))";
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   231
                val rest = t_inducting cs;
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   232
            in if rest = "" then h else h ^ "; " ^ rest end
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   233
        | t_inducting [] = "";
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   234
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   235
      fun t_induct cl typ_name=
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   236
        "[|" ^ t_inducting cl ^ "|] ==> P(" ^ typ_name ^ ")";
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   237
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   238
      fun case_typlist typevar ((_, typlist, _) :: cs) =
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   239
           let val h = if (length typlist) > 0 then 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   240
		         (pp_typlist2 typlist) ^ "=>"
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   241
                       else ""
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   242
           in "," ^ h ^ typevar ^ (case_typlist typevar cs) end
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   243
        | case_typlist _ [] = "";
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   244
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   245
      fun case_rules t_case arity n ((id, typlist, syn) :: cs) =
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   246
            let val name = const_name id syn;
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   247
                val args = if null typlist then ""
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   248
  			   else pars(Args("x", ",", 1, length typlist))
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   249
            in (t_case ^ "_" ^ id,
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   250
                t_case ^ "(" ^ name ^ args ^ "," ^ Args ("f", ",", 1, arity) 
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   251
                ^ ") = f" ^ string_of_int(n) ^ args)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   252
               :: (case_rules t_case arity (n+1) cs)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   253
            end
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   254
        | case_rules _ _ _ [] = [];
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   255
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   256
      val datatype_arity = length typevars;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   257
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   258
      val types = [(tname, datatype_arity, NoSyn)];
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   259
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   260
      val arities = 
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   261
        let val term_list = replicate datatype_arity ["term"];
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   262
        in [(tname, term_list, ["term"])] end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   263
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   264
      val datatype_name = pp_typlist1 typevars ^ tname;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   265
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   266
      val (case_const, rules_case) =
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   267
         let val typevar = create_typevar (dtVar "'beta") typevars;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   268
             val t_case = tname ^ "_case";
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   269
             val arity = length cons_list;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   270
             val dekl = (t_case, "[" ^ pp_typlist1 typevars ^ tname ^
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   271
                       case_typlist typevar cons_list ^ "]=>" ^ typevar, NoSyn)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   272
                       :: nil;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   273
             val rules = case_rules t_case arity 1 cons_list;
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   274
         in (dekl, rules) end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   275
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   276
      val consts = 
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   277
        map const_type cons_list
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   278
	@ (if length cons_list < dtK then []
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   279
	   else [(tname ^ "_ord", datatype_name ^ "=>nat", NoSyn)])
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   280
	@ case_const;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   281
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   282
      (*generate 'var_n, ..., var_m'*)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   283
      fun Args(var, delim, n, m) = 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   284
        space_implode delim (map (fn n => var^string_of_int(n)) (n upto m));
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   285
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   286
      (*generate 'name_1', ..., 'name_n'*)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   287
      fun C_exp(name, n, var) =
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   288
        if n > 0 then name ^ pars(Args(var, ",", 1, n)) else name;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   289
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   290
      (*generate 'x_n = y_n, ..., x_m = y_m'*)
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   291
      fun Arg_eql(n,m) = 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   292
        if n=m then "x" ^ string_of_int(n) ^ "=y" ^ string_of_int(n) 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   293
        else "x" ^ string_of_int(n) ^ "=y" ^ string_of_int(n) ^ " & " ^ 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   294
             Arg_eql(n+1, m);
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   295
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   296
      fun Ci_ing ((id, typlist, syn) :: cs) =
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   297
            let val name = const_name id syn;
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   298
                val arity = length typlist;
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   299
            in if arity = 0 then Ci_ing cs
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   300
               else ("inject_" ^ id,
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   301
                     "(" ^ C_exp(name,arity,"x") ^ "=" ^ C_exp(name,arity,"y") 
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   302
                     ^ ") = (" ^ Arg_eql (1, arity) ^ ")") :: (Ci_ing cs)
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   303
            end
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   304
        | Ci_ing [] = [];
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   305
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   306
      fun Ci_negOne (id1, tl1, syn1) (id2, tl2, syn2) =
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   307
           let val name1 = const_name id1 syn1;
91
a94029edb01f added mixfix annotations to constructor declarations
clasohm
parents: 87
diff changeset
   308
               val name2 = const_name id2 syn2;
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   309
               val ax = C_exp(name1, length tl1, "x") ^ "~=" ^
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   310
                        C_exp(name2, length tl2, "y")
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   311
           in (id1 ^ "_not_" ^ id2, ax) end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   312
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   313
      fun Ci_neg1 [] = []
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   314
        | Ci_neg1 (c1::cs) = (map (Ci_negOne c1) cs) @ Ci_neg1 cs;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   315
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   316
      fun suc_expr n = 
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   317
        if n=0 then "0" else "Suc(" ^ suc_expr(n-1) ^ ")";
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   318
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   319
      fun Ci_neg2() =
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   320
        let val ord_t = tname ^ "_ord";
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   321
            val cis = cons_list ~~ (0 upto (length cons_list - 1))
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   322
            fun Ci_neg2equals ((id, typlist, syn), n) =
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   323
              let val name = const_name id syn;
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   324
                  val ax = ord_t ^ "(" ^ (C_exp(name, length typlist, "x")) 
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   325
                                 ^ ") = " ^ (suc_expr n)
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   326
              in (ord_t ^ "_" ^ id, ax) end
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   327
        in (ord_t ^ "_distinct", ord_t^"(x) ~= "^ord_t^"(y) ==> x ~= y") ::
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   328
           (map Ci_neg2equals cis)
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   329
        end;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   330
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   331
      val rules_distinct = if length cons_list < dtK then Ci_neg1 cons_list
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   332
                           else Ci_neg2();
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   333
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   334
      val rules_inject = Ci_ing cons_list;
53
5e0570ea8b70 ML-like datatype decalaration facility. Axiomatic.
nipkow
parents:
diff changeset
   335
87
b0ea0e55dfe8 added prefix to name of induct axiom
clasohm
parents: 80
diff changeset
   336
      val rule_induct = (tname ^ "_induct", t_induct cons_list tname);
60
43e36c15a831 new field "simps" added
nipkow
parents: 53
diff changeset
   337
96
d94d0b324b4b Lots of simplifications
nipkow
parents: 92
diff changeset
   338
      val rules = rule_induct :: (rules_inject @ rules_distinct @ rules_case);
80
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   339
  in thy
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   340
     |> add_types types
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   341
     |> add_arities arities
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   342
     |> add_consts consts
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   343
     |> add_trrules xrules
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   344
     |> add_axioms rules
d3d727449d7b datatypes must now be defined using a thy file section
clasohm
parents: 60
diff changeset
   345
  end
92
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   346
end
bcd0ee8d71aa Hidden dtK and Impossible with a "local" clause
nipkow
parents: 91
diff changeset
   347
end;