author | wenzelm |
Mon, 18 Apr 2011 11:13:29 +0200 | |
changeset 42383 | 0ae4ad40d7b5 |
parent 35845 | e5980f0ad025 |
child 42384 | 6b8e28b52ae3 |
permissions | -rw-r--r-- |
17707
bc0270e9d27f
back to simple 'defs' (cf. revision 1.79 of theory.ML);
wenzelm
parents:
17670
diff
changeset
|
1 |
(* Title: Pure/defs.ML |
bc0270e9d27f
back to simple 'defs' (cf. revision 1.79 of theory.ML);
wenzelm
parents:
17670
diff
changeset
|
2 |
Author: Makarius |
16108
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
diff
changeset
|
3 |
|
19692 | 4 |
Global well-formedness checks for constant definitions. Covers plain |
19701 | 5 |
definitions and simple sub-structural overloading. |
16108
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
diff
changeset
|
6 |
*) |
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
diff
changeset
|
7 |
|
16877
e92cba1d4842
tuned interfaces declare, define, finalize, merge:
wenzelm
parents:
16838
diff
changeset
|
8 |
signature DEFS = |
e92cba1d4842
tuned interfaces declare, define, finalize, merge:
wenzelm
parents:
16838
diff
changeset
|
9 |
sig |
42383
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
35845
diff
changeset
|
10 |
val pretty_const: Context.pretty -> string * typ list -> Pretty.T |
19701 | 11 |
val plain_args: typ list -> bool |
17707
bc0270e9d27f
back to simple 'defs' (cf. revision 1.79 of theory.ML);
wenzelm
parents:
17670
diff
changeset
|
12 |
type T |
33712 | 13 |
type spec = |
14 |
{def: string option, description: string, lhs: typ list, rhs: (string * typ list) list} |
|
15 |
val all_specifications_of: T -> (string * spec list) list |
|
16 |
val specifications_of: T -> string -> spec list |
|
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
17 |
val dest: T -> |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
18 |
{restricts: ((string * typ list) * string) list, |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
19 |
reducts: ((string * typ list) * (string * typ list) list) list} |
19590
12af4942923d
simple substructure test for typargs (independent type constructors);
wenzelm
parents:
19569
diff
changeset
|
20 |
val empty: T |
42383
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
35845
diff
changeset
|
21 |
val merge: Context.pretty -> T * T -> T |
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
35845
diff
changeset
|
22 |
val define: Context.pretty -> bool -> string option -> string -> |
19727 | 23 |
string * typ list -> (string * typ list) list -> T -> T |
16108
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
diff
changeset
|
24 |
end |
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
diff
changeset
|
25 |
|
17711 | 26 |
structure Defs: DEFS = |
17707
bc0270e9d27f
back to simple 'defs' (cf. revision 1.79 of theory.ML);
wenzelm
parents:
17670
diff
changeset
|
27 |
struct |
16108
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
diff
changeset
|
28 |
|
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
29 |
(* type arguments *) |
19613
9bf274ec94cf
allow dependencies of disjoint collections of instances;
wenzelm
parents:
19590
diff
changeset
|
30 |
|
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
31 |
type args = typ list; |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
32 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
33 |
fun pretty_const pp (c, args) = |
19613
9bf274ec94cf
allow dependencies of disjoint collections of instances;
wenzelm
parents:
19590
diff
changeset
|
34 |
let |
19692 | 35 |
val prt_args = |
36 |
if null args then [] |
|
42383
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
35845
diff
changeset
|
37 |
else |
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
35845
diff
changeset
|
38 |
[Pretty.list "(" ")" |
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
35845
diff
changeset
|
39 |
(map (Syntax.pretty_typ (Syntax.init_pretty pp) o Logic.unvarifyT_global) args)]; |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
40 |
in Pretty.block (Pretty.str c :: prt_args) end; |
19624 | 41 |
|
19707 | 42 |
fun plain_args args = |
43 |
forall Term.is_TVar args andalso not (has_duplicates (op =) args); |
|
44 |
||
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
45 |
fun disjoint_args (Ts, Us) = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
46 |
not (Type.could_unifys (Ts, Us)) orelse |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
47 |
((Type.raw_unifys (Ts, map (Logic.incr_tvar (maxidx_of_typs Ts + 1)) Us) Vartab.empty; false) |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
48 |
handle Type.TUNIFY => true); |
19692 | 49 |
|
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
50 |
fun match_args (Ts, Us) = |
32035 | 51 |
Option.map Envir.subst_type |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
52 |
(SOME (Type.raw_matches (Ts, Us) Vartab.empty) handle Type.TYPE_MATCH => NONE); |
19692 | 53 |
|
54 |
||
55 |
(* datatype defs *) |
|
56 |
||
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
57 |
type spec = |
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
58 |
{def: string option, description: string, lhs: args, rhs: (string * args) list}; |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
59 |
|
19692 | 60 |
type def = |
19712
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
61 |
{specs: spec Inttab.table, (*source specifications*) |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
62 |
restricts: (args * string) list, (*global restrictions imposed by incomplete patterns*) |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
63 |
reducts: (args * (string * args) list) list}; (*specifications as reduction system*) |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
64 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
65 |
fun make_def (specs, restricts, reducts) = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
66 |
{specs = specs, restricts = restricts, reducts = reducts}: def; |
19692 | 67 |
|
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
68 |
fun map_def c f = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
69 |
Symtab.default (c, make_def (Inttab.empty, [], [])) #> |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
70 |
Symtab.map_entry c (fn {specs, restricts, reducts}: def => |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
71 |
make_def (f (specs, restricts, reducts))); |
19692 | 72 |
|
73 |
||
74 |
datatype T = Defs of def Symtab.table; |
|
75 |
||
19712
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
76 |
fun lookup_list which defs c = |
19692 | 77 |
(case Symtab.lookup defs c of |
19713 | 78 |
SOME (def: def) => which def |
19692 | 79 |
| NONE => []); |
80 |
||
32050 | 81 |
fun all_specifications_of (Defs defs) = |
82 |
(map o apsnd) (map snd o Inttab.dest o #specs) (Symtab.dest defs); |
|
83 |
||
24199 | 84 |
fun specifications_of (Defs defs) = lookup_list (map snd o Inttab.dest o #specs) defs; |
32050 | 85 |
|
19692 | 86 |
val restricts_of = lookup_list #restricts; |
87 |
val reducts_of = lookup_list #reducts; |
|
88 |
||
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
89 |
fun dest (Defs defs) = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
90 |
let |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
91 |
val restricts = Symtab.fold (fn (c, {restricts, ...}) => |
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
92 |
fold (fn (args, description) => cons ((c, args), description)) restricts) defs []; |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
93 |
val reducts = Symtab.fold (fn (c, {reducts, ...}) => |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
94 |
fold (fn (args, deps) => cons ((c, args), deps)) reducts) defs []; |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
95 |
in {restricts = restricts, reducts = reducts} end; |
19692 | 96 |
|
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
97 |
val empty = Defs Symtab.empty; |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
98 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
99 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
100 |
(* specifications *) |
19692 | 101 |
|
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
102 |
fun disjoint_specs c (i, {lhs = Ts, description = a, ...}: spec) = |
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
103 |
Inttab.forall (fn (j, {lhs = Us, description = b, ...}: spec) => |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
104 |
i = j orelse disjoint_args (Ts, Us) orelse |
24792 | 105 |
error ("Clash of specifications " ^ quote a ^ " and " ^ quote b ^ |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
106 |
" for constant " ^ quote c)); |
19692 | 107 |
|
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
108 |
fun join_specs c ({specs = specs1, restricts, reducts}, {specs = specs2, ...}: def) = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
109 |
let |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
110 |
val specs' = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
111 |
Inttab.fold (fn spec2 => (disjoint_specs c spec2 specs1; Inttab.update spec2)) specs2 specs1; |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
112 |
in make_def (specs', restricts, reducts) end; |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
113 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
114 |
fun update_specs c spec = map_def c (fn (specs, restricts, reducts) => |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
115 |
(disjoint_specs c spec specs; (Inttab.update spec specs, restricts, reducts))); |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
116 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
117 |
|
19701 | 118 |
(* normalized dependencies: reduction with well-formedness check *) |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
119 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
120 |
local |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
121 |
|
19729 | 122 |
val prt = Pretty.string_of oo pretty_const; |
123 |
fun err pp (c, args) (d, Us) s1 s2 = |
|
124 |
error (s1 ^ " dependency of constant " ^ prt pp (c, args) ^ " -> " ^ prt pp (d, Us) ^ s2); |
|
125 |
||
19712
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
126 |
fun contained (U as TVar _) (Type (_, Ts)) = exists (fn T => T = U orelse contained U T) Ts |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
127 |
| contained _ _ = false; |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
128 |
|
32785 | 129 |
fun acyclic pp (c, args) (d, Us) = |
19729 | 130 |
c <> d orelse |
131 |
exists (fn U => exists (contained U) args) Us orelse |
|
132 |
is_none (match_args (args, Us)) orelse |
|
133 |
err pp (c, args) (d, Us) "Circular" ""; |
|
134 |
||
19701 | 135 |
fun wellformed pp defs (c, args) (d, Us) = |
19729 | 136 |
forall is_TVar Us orelse |
137 |
(case find_first (fn (Ts, _) => not (disjoint_args (Ts, Us))) (restricts_of defs d) of |
|
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
138 |
SOME (Ts, description) => |
19729 | 139 |
err pp (c, args) (d, Us) "Malformed" |
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
140 |
("\n(restriction " ^ prt pp (d, Ts) ^ " from " ^ quote description ^ ")") |
19729 | 141 |
| NONE => true); |
19692 | 142 |
|
19701 | 143 |
fun reduction pp defs const deps = |
19692 | 144 |
let |
19701 | 145 |
fun reduct Us (Ts, rhs) = |
146 |
(case match_args (Ts, Us) of |
|
147 |
NONE => NONE |
|
148 |
| SOME subst => SOME (map (apsnd (map subst)) rhs)); |
|
149 |
fun reducts (d, Us) = get_first (reduct Us) (reducts_of defs d); |
|
150 |
||
151 |
val reds = map (`reducts) deps; |
|
152 |
val deps' = |
|
153 |
if forall (is_none o #1) reds then NONE |
|
20668 | 154 |
else SOME (fold_rev |
155 |
(fn (NONE, dp) => insert (op =) dp | (SOME dps, _) => fold (insert (op =)) dps) reds []); |
|
32785 | 156 |
val _ = forall (acyclic pp const) (the_default deps deps'); |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
157 |
in deps' end; |
19692 | 158 |
|
19760 | 159 |
in |
160 |
||
19712
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
161 |
fun normalize pp = |
19692 | 162 |
let |
19701 | 163 |
fun norm_update (c, {reducts, ...}: def) (changed, defs) = |
164 |
let |
|
165 |
val reducts' = reducts |> map (fn (args, deps) => |
|
19712
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
166 |
(args, perhaps (reduction pp defs (c, args)) deps)); |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
167 |
in |
19701 | 168 |
if reducts = reducts' then (changed, defs) |
32785 | 169 |
else (true, defs |> map_def c (fn (specs, restricts, _) => (specs, restricts, reducts'))) |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
170 |
end; |
19701 | 171 |
fun norm_all defs = |
172 |
(case Symtab.fold norm_update defs (false, defs) of |
|
173 |
(true, defs') => norm_all defs' |
|
174 |
| (false, _) => defs); |
|
19729 | 175 |
fun check defs (c, {reducts, ...}: def) = |
176 |
reducts |> forall (fn (args, deps) => forall (wellformed pp defs (c, args)) deps); |
|
177 |
in norm_all #> (fn defs => tap (Symtab.forall (check defs)) defs) end; |
|
19701 | 178 |
|
19712
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
179 |
fun dependencies pp (c, args) restr deps = |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
180 |
map_def c (fn (specs, restricts, reducts) => |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
181 |
let |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
182 |
val restricts' = Library.merge (op =) (restricts, restr); |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
183 |
val reducts' = insert (op =) (args, deps) reducts; |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
184 |
in (specs, restricts', reducts') end) |
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
185 |
#> normalize pp; |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
186 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
187 |
end; |
19692 | 188 |
|
189 |
||
19624 | 190 |
(* merge *) |
191 |
||
19692 | 192 |
fun merge pp (Defs defs1, Defs defs2) = |
19613
9bf274ec94cf
allow dependencies of disjoint collections of instances;
wenzelm
parents:
19590
diff
changeset
|
193 |
let |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
194 |
fun add_deps (c, args) restr deps defs = |
19692 | 195 |
if AList.defined (op =) (reducts_of defs c) args then defs |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
196 |
else dependencies pp (c, args) restr deps defs; |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
197 |
fun add_def (c, {restricts, reducts, ...}: def) = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
198 |
fold (fn (args, deps) => add_deps (c, args) restricts deps) reducts; |
19760 | 199 |
in |
200 |
Defs (Symtab.join join_specs (defs1, defs2) |
|
201 |
|> normalize pp |> Symtab.fold add_def defs2) |
|
202 |
end; |
|
19613
9bf274ec94cf
allow dependencies of disjoint collections of instances;
wenzelm
parents:
19590
diff
changeset
|
203 |
|
9bf274ec94cf
allow dependencies of disjoint collections of instances;
wenzelm
parents:
19590
diff
changeset
|
204 |
|
9bf274ec94cf
allow dependencies of disjoint collections of instances;
wenzelm
parents:
19590
diff
changeset
|
205 |
(* define *) |
19590
12af4942923d
simple substructure test for typargs (independent type constructors);
wenzelm
parents:
19569
diff
changeset
|
206 |
|
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
207 |
fun define pp unchecked def description (c, args) deps (Defs defs) = |
17707
bc0270e9d27f
back to simple 'defs' (cf. revision 1.79 of theory.ML);
wenzelm
parents:
17670
diff
changeset
|
208 |
let |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
209 |
val restr = |
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
210 |
if plain_args args orelse |
32785 | 211 |
(case args of [Type (_, rec_args)] => plain_args rec_args | _ => false) |
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
212 |
then [] else [(args, description)]; |
19692 | 213 |
val spec = |
33701
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
wenzelm
parents:
32785
diff
changeset
|
214 |
(serial (), {def = def, description = description, lhs = args, rhs = deps}); |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
215 |
val defs' = defs |> update_specs c spec; |
19712
3ae3cc4b1eac
wellformed: be less ambitious about structural containment;
wenzelm
parents:
19707
diff
changeset
|
216 |
in Defs (defs' |> (if unchecked then I else dependencies pp (c, args) restr deps)) end; |
19697
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
217 |
|
423af2e013b8
specifications_of: lhs/rhs represented as typargs;
wenzelm
parents:
19695
diff
changeset
|
218 |
end; |