author | wenzelm |
Mon, 19 Aug 2019 19:12:44 +0200 | |
changeset 70574 | 503ca64329cc |
parent 70552 | 8d7a531a6b58 |
child 74112 | d0527bb2e590 |
permissions | -rw-r--r-- |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
1 |
(* Title: Pure/facts.ML |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
3 |
|
26307 | 4 |
Environment of named facts, optionally indexed by proposition. |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
5 |
*) |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
6 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
7 |
signature FACTS = |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
8 |
sig |
70574 | 9 |
val err_selection: string * Position.T -> int -> thm list -> 'a |
10 |
val err_single: string * Position.T -> thm list -> 'a |
|
55740 | 11 |
val the_single: string * Position.T -> thm list -> thm |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
12 |
datatype interval = FromTo of int * int | From of int | Single of int |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
13 |
datatype ref = |
26361 | 14 |
Named of (string * Position.T) * interval list option | |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
15 |
Fact of string |
26361 | 16 |
val named: string -> ref |
70545 | 17 |
val ref_name: ref -> string |
18 |
val ref_pos: ref -> Position.T |
|
19 |
val map_ref_name: (string -> string) -> ref -> ref |
|
49887 | 20 |
val string_of_selection: interval list option -> string |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
21 |
val string_of_ref: ref -> string |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
22 |
val select: ref -> thm list -> thm list |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
23 |
val selections: string * thm list -> (ref * thm) list |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
24 |
type T |
26393 | 25 |
val empty: T |
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33093
diff
changeset
|
26 |
val space_of: T -> Name_Space.T |
57887 | 27 |
val alias: Name_Space.naming -> binding -> string -> T -> T |
33163 | 28 |
val is_concealed: T -> string -> bool |
56003 | 29 |
val check: Context.generic -> T -> xstring * Position.T -> string |
26664
167d879a89b0
renamed dest to dest_table, and extern to extern table;
wenzelm
parents:
26654
diff
changeset
|
30 |
val intern: T -> xstring -> string |
42358
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
35408
diff
changeset
|
31 |
val extern: Proof.context -> T -> string -> xstring |
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56137
diff
changeset
|
32 |
val markup_extern: Proof.context -> T -> string -> Markup.T * xstring |
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
33 |
val defined: T -> string -> bool |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
34 |
val is_dynamic: T -> string -> bool |
63255 | 35 |
val lookup: Context.generic -> T -> string -> {dynamic: bool, thms: thm list} option |
57942
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57887
diff
changeset
|
36 |
val retrieve: Context.generic -> T -> xstring * Position.T -> |
63255 | 37 |
{name: string, dynamic: bool, thms: thm list} |
26692 | 38 |
val fold_static: (string * thm list -> 'a -> 'a) -> T -> 'a -> 'a |
56158
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
wenzelm
parents:
56140
diff
changeset
|
39 |
val dest_static: bool -> T list -> T -> (string * thm list) list |
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
40 |
val dest_all: Context.generic -> bool -> T list -> T -> (string * thm list) list |
63337 | 41 |
val props: T -> (thm * Position.T) list |
42 |
val could_unify: T -> term -> (thm * Position.T) list |
|
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
43 |
val merge: T * T -> T |
49747 | 44 |
val add_static: Context.generic -> {strict: bool, index: bool} -> |
67662 | 45 |
binding * thm list lazy -> T -> string * T |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
42375
diff
changeset
|
46 |
val add_dynamic: Context.generic -> binding * (Context.generic -> thm list) -> T -> string * T |
26654
1f711934f221
disallow duplicate entries (weak version for merge);
wenzelm
parents:
26393
diff
changeset
|
47 |
val del: string -> T -> T |
1f711934f221
disallow duplicate entries (weak version for merge);
wenzelm
parents:
26393
diff
changeset
|
48 |
val hide: bool -> string -> T -> T |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
49 |
end; |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
50 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
51 |
structure Facts: FACTS = |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
52 |
struct |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
53 |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
54 |
(** fact references **) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
55 |
|
70546 | 56 |
fun length_msg (thms: thm list) pos = |
57 |
" (length " ^ string_of_int (length thms) ^ ")" ^ Position.here pos; |
|
58 |
||
59 |
fun err_selection (name, pos) i thms = |
|
60 |
error ("Bad fact selection " ^ quote (name ^ enclose "(" ")" (string_of_int i)) ^ |
|
61 |
length_msg thms pos); |
|
62 |
||
70574 | 63 |
fun err_single (name, pos) thms = |
64 |
error ("Expected singleton fact " ^ quote name ^ length_msg thms pos); |
|
65 |
||
70546 | 66 |
fun the_single _ [thm] = thm |
67 |
| the_single name_pos thms = err_single name_pos thms; |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
68 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
69 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
70 |
(* datatype interval *) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
71 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
72 |
datatype interval = |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
73 |
FromTo of int * int | |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
74 |
From of int | |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
75 |
Single of int; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
76 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
77 |
fun string_of_interval (FromTo (i, j)) = string_of_int i ^ "-" ^ string_of_int j |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
78 |
| string_of_interval (From i) = string_of_int i ^ "-" |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
79 |
| string_of_interval (Single i) = string_of_int i; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
80 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
81 |
fun interval n iv = |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
82 |
let fun err () = raise Fail ("Bad interval specification " ^ string_of_interval iv) in |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
83 |
(case iv of |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
84 |
FromTo (i, j) => if i <= j then i upto j else err () |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
85 |
| From i => if i <= n then i upto n else err () |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
86 |
| Single i => [i]) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
87 |
end; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
88 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
89 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
90 |
(* datatype ref *) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
91 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
92 |
datatype ref = |
26361 | 93 |
Named of (string * Position.T) * interval list option | |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
94 |
Fact of string; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
95 |
|
26361 | 96 |
fun named name = Named ((name, Position.none), NONE); |
97 |
||
70545 | 98 |
fun ref_name (Named ((name, _), _)) = name |
99 |
| ref_name (Fact _) = raise Fail "Illegal literal fact"; |
|
55740 | 100 |
|
70545 | 101 |
fun ref_pos (Named ((_, pos), _)) = pos |
102 |
| ref_pos (Fact _) = Position.none; |
|
55740 | 103 |
|
70545 | 104 |
fun map_ref_name f (Named ((name, pos), is)) = Named ((f name, pos), is) |
105 |
| map_ref_name _ r = r; |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
106 |
|
49887 | 107 |
fun string_of_selection NONE = "" |
108 |
| string_of_selection (SOME is) = enclose "(" ")" (commas (map string_of_interval is)); |
|
109 |
||
110 |
fun string_of_ref (Named ((name, _), sel)) = name ^ string_of_selection sel |
|
111 |
| string_of_ref (Fact _) = raise Fail "Illegal literal fact"; |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
112 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
113 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
114 |
(* select *) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
115 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
116 |
fun select (Fact _) ths = ths |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
117 |
| select (Named (_, NONE)) ths = ths |
26361 | 118 |
| select (Named ((name, pos), SOME ivs)) ths = |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
119 |
let |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
120 |
val n = length ths; |
70546 | 121 |
fun err msg = error (msg ^ " for fact " ^ quote name ^ length_msg ths pos); |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
122 |
fun sel i = |
70546 | 123 |
if i > 0 andalso i <= n then nth ths (i - 1) |
124 |
else err_selection (name, pos) i ths; |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
125 |
val is = maps (interval n) ivs handle Fail msg => err msg; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
126 |
in map sel is end; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
127 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
128 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
129 |
(* selections *) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
130 |
|
26361 | 131 |
fun selections (name, [th]) = [(Named ((name, Position.none), NONE), th)] |
132 |
| selections (name, ths) = map2 (fn i => fn th => |
|
133 |
(Named ((name, Position.none), SOME [Single i]), th)) (1 upto length ths) ths; |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
134 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
135 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
136 |
|
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
137 |
(** fact environment **) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26307
diff
changeset
|
138 |
|
26393 | 139 |
(* datatypes *) |
140 |
||
67662 | 141 |
datatype fact = Static of thm list lazy | Dynamic of Context.generic -> thm list; |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
142 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
143 |
datatype T = Facts of |
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33093
diff
changeset
|
144 |
{facts: fact Name_Space.table, |
63337 | 145 |
props: (thm * Position.T) Net.net}; |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
146 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
147 |
fun make_facts facts props = Facts {facts = facts, props = props}; |
33163 | 148 |
|
33096 | 149 |
val empty = make_facts (Name_Space.empty_table "fact") Net.empty; |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
150 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
151 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
152 |
(* named facts *) |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
153 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
154 |
fun facts_of (Facts {facts, ...}) = facts; |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
155 |
|
56025 | 156 |
val space_of = Name_Space.space_of_table o facts_of; |
26393 | 157 |
|
57887 | 158 |
fun alias naming binding name (Facts {facts, props}) = |
159 |
make_facts (Name_Space.alias_table naming binding name facts) props; |
|
160 |
||
33163 | 161 |
val is_concealed = Name_Space.is_concealed o space_of; |
162 |
||
56003 | 163 |
fun check context facts (xname, pos) = |
164 |
let |
|
165 |
val (name, fact) = Name_Space.check context (facts_of facts) (xname, pos); |
|
166 |
val _ = |
|
167 |
(case fact of |
|
168 |
Static _ => () |
|
169 |
| Dynamic _ => Context_Position.report_generic context pos (Markup.dynamic_fact name)); |
|
170 |
in name end; |
|
171 |
||
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33093
diff
changeset
|
172 |
val intern = Name_Space.intern o space_of; |
42358
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents:
35408
diff
changeset
|
173 |
fun extern ctxt = Name_Space.extern ctxt o space_of; |
57887 | 174 |
fun markup_extern ctxt = Name_Space.markup_extern ctxt o space_of; |
26664
167d879a89b0
renamed dest to dest_table, and extern to extern table;
wenzelm
parents:
26654
diff
changeset
|
175 |
|
56158
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
wenzelm
parents:
56140
diff
changeset
|
176 |
|
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
wenzelm
parents:
56140
diff
changeset
|
177 |
(* retrieve *) |
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
wenzelm
parents:
56140
diff
changeset
|
178 |
|
59883 | 179 |
val defined = Name_Space.defined o facts_of; |
26692 | 180 |
|
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
181 |
fun is_dynamic facts name = |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
182 |
(case Name_Space.lookup (facts_of facts) name of |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
183 |
SOME (Dynamic _) => true |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
184 |
| _ => false); |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
185 |
|
26393 | 186 |
fun lookup context facts name = |
59884 | 187 |
(case Name_Space.lookup (facts_of facts) name of |
26393 | 188 |
NONE => NONE |
67662 | 189 |
| SOME (Static ths) => SOME {dynamic = false, thms = Lazy.force ths} |
63255 | 190 |
| SOME (Dynamic f) => SOME {dynamic = true, thms = f context}); |
26393 | 191 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56137
diff
changeset
|
192 |
fun retrieve context facts (xname, pos) = |
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56137
diff
changeset
|
193 |
let |
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56137
diff
changeset
|
194 |
val name = check context facts (xname, pos); |
63255 | 195 |
val {dynamic, thms} = |
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56137
diff
changeset
|
196 |
(case lookup context facts name of |
63255 | 197 |
SOME res => |
198 |
(if #dynamic res |
|
199 |
then Context_Position.report_generic context pos (Markup.dynamic_fact name) |
|
200 |
else (); |
|
201 |
res) |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56137
diff
changeset
|
202 |
| NONE => error ("Unknown fact " ^ quote name ^ Position.here pos)); |
57942
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57887
diff
changeset
|
203 |
in |
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57887
diff
changeset
|
204 |
{name = name, |
63255 | 205 |
dynamic = dynamic, |
67649 | 206 |
thms = map (Thm.transfer'' context) thms} |
57942
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57887
diff
changeset
|
207 |
end; |
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56137
diff
changeset
|
208 |
|
56158
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
wenzelm
parents:
56140
diff
changeset
|
209 |
|
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
210 |
(* content *) |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
211 |
|
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
212 |
local |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
213 |
|
67662 | 214 |
fun fold_static_lazy f = |
215 |
Name_Space.fold_table (fn (a, Static ths) => f (a, ths) | _ => I) o facts_of; |
|
216 |
||
67668 | 217 |
fun consolidate facts = |
67662 | 218 |
let |
68698
6ee53660a911
eliminated non-monotomnic Lazy.is_pending: Result may return to Expr due to Interrupt;
wenzelm
parents:
67676
diff
changeset
|
219 |
val unfinished = |
6ee53660a911
eliminated non-monotomnic Lazy.is_pending: Result may return to Expr due to Interrupt;
wenzelm
parents:
67676
diff
changeset
|
220 |
(facts, []) |-> fold_static_lazy (fn (_, ths) => if Lazy.is_finished ths then I else cons ths); |
6ee53660a911
eliminated non-monotomnic Lazy.is_pending: Result may return to Expr due to Interrupt;
wenzelm
parents:
67676
diff
changeset
|
221 |
val _ = Lazy.consolidate unfinished; |
67668 | 222 |
in facts end; |
67662 | 223 |
|
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
224 |
fun included verbose prev_facts facts name = |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
225 |
not (exists (fn prev => defined prev name) prev_facts orelse |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
226 |
not verbose andalso is_concealed facts name); |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
227 |
|
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
228 |
in |
56158
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
wenzelm
parents:
56140
diff
changeset
|
229 |
|
67662 | 230 |
fun fold_static f facts = |
67668 | 231 |
fold_static_lazy (f o apsnd Lazy.force) (consolidate facts); |
26393 | 232 |
|
56158
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
wenzelm
parents:
56140
diff
changeset
|
233 |
fun dest_static verbose prev_facts facts = |
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
234 |
fold_static (fn (a, ths) => included verbose prev_facts facts a ? cons (a, ths)) facts [] |
60924
610794dff23c
tuned signature, in accordance to sortBy in Scala;
wenzelm
parents:
59884
diff
changeset
|
235 |
|> sort_by #1; |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
236 |
|
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
237 |
fun dest_all context verbose prev_facts facts = |
67668 | 238 |
(facts_of (consolidate facts), []) |
67662 | 239 |
|-> Name_Space.fold_table (fn (a, fact) => |
240 |
let val ths = (case fact of Static ths => Lazy.force ths | Dynamic f => f context) |
|
241 |
in included verbose prev_facts facts a ? cons (a, ths) end) |
|
63080
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
242 |
|> sort_by #1; |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
243 |
|
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
244 |
end; |
8326aa594273
find dynamic facts as well, but static ones are preferred;
wenzelm
parents:
61054
diff
changeset
|
245 |
|
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
246 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
247 |
(* indexed props *) |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
248 |
|
63337 | 249 |
val prop_ord = Term_Ord.term_ord o apply2 (Thm.full_prop_of o fst); |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
250 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
251 |
fun props (Facts {props, ...}) = sort_distinct prop_ord (Net.content props); |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
252 |
fun could_unify (Facts {props, ...}) = Net.unify_term props; |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
253 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
254 |
|
26393 | 255 |
(* merge facts *) |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
256 |
|
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
257 |
fun merge (Facts {facts = facts1, props = props1}, Facts {facts = facts2, props = props2}) = |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
258 |
let |
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33093
diff
changeset
|
259 |
val facts' = Name_Space.merge_tables (facts1, facts2); |
56137
af71fb1cb31f
minor tuning -- NB: props are usually empty for global facts;
wenzelm
parents:
56025
diff
changeset
|
260 |
val props' = |
af71fb1cb31f
minor tuning -- NB: props are usually empty for global facts;
wenzelm
parents:
56025
diff
changeset
|
261 |
if Net.is_empty props2 then props1 |
af71fb1cb31f
minor tuning -- NB: props are usually empty for global facts;
wenzelm
parents:
56025
diff
changeset
|
262 |
else if Net.is_empty props1 then props2 |
af71fb1cb31f
minor tuning -- NB: props are usually empty for global facts;
wenzelm
parents:
56025
diff
changeset
|
263 |
else Net.merge (is_equal o prop_ord) (props1, props2); (*beware of non-canonical merge*) |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
264 |
in make_facts facts' props' end; |
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
265 |
|
26393 | 266 |
|
67662 | 267 |
(* add entries *) |
268 |
||
269 |
fun add_prop pos th = |
|
270 |
Net.insert_term (K false) (Thm.full_prop_of th, (th, pos)); |
|
26393 | 271 |
|
49747 | 272 |
fun add_static context {strict, index} (b, ths) (Facts {facts, props}) = |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
273 |
let |
67662 | 274 |
val ths' = ths |
275 |
|> index ? Lazy.force_value |
|
276 |
|> Lazy.map_finished (map Thm.trim_context); |
|
33093
d010f61d3702
eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents:
29848
diff
changeset
|
277 |
val (name, facts') = |
d010f61d3702
eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents:
29848
diff
changeset
|
278 |
if Binding.is_empty b then ("", facts) |
61054 | 279 |
else Name_Space.define context strict (b, Static ths') facts; |
67676
47ffe7184cdd
avoid premature Lazy.force due to strict "?" operator;
wenzelm
parents:
67668
diff
changeset
|
280 |
val props' = |
47ffe7184cdd
avoid premature Lazy.force due to strict "?" operator;
wenzelm
parents:
67668
diff
changeset
|
281 |
if index then |
47ffe7184cdd
avoid premature Lazy.force due to strict "?" operator;
wenzelm
parents:
67668
diff
changeset
|
282 |
props |> fold (add_prop (Binding.pos_of (Binding.default_pos b))) (Lazy.force ths') |
47ffe7184cdd
avoid premature Lazy.force due to strict "?" operator;
wenzelm
parents:
67668
diff
changeset
|
283 |
else props; |
28864 | 284 |
in (name, make_facts facts' props') end; |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
285 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
42375
diff
changeset
|
286 |
fun add_dynamic context (b, f) (Facts {facts, props}) = |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
42375
diff
changeset
|
287 |
let val (name, facts') = Name_Space.define context true (b, Dynamic f) facts; |
33093
d010f61d3702
eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents:
29848
diff
changeset
|
288 |
in (name, make_facts facts' props) end; |
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
289 |
|
26654
1f711934f221
disallow duplicate entries (weak version for merge);
wenzelm
parents:
26393
diff
changeset
|
290 |
|
1f711934f221
disallow duplicate entries (weak version for merge);
wenzelm
parents:
26393
diff
changeset
|
291 |
(* remove entries *) |
1f711934f221
disallow duplicate entries (weak version for merge);
wenzelm
parents:
26393
diff
changeset
|
292 |
|
56025 | 293 |
fun del name (Facts {facts, props}) = |
294 |
make_facts (Name_Space.del_table name facts) props; |
|
26654
1f711934f221
disallow duplicate entries (weak version for merge);
wenzelm
parents:
26393
diff
changeset
|
295 |
|
56025 | 296 |
fun hide fully name (Facts {facts, props}) = |
297 |
make_facts (Name_Space.hide_table fully name facts) props; |
|
26654
1f711934f221
disallow duplicate entries (weak version for merge);
wenzelm
parents:
26393
diff
changeset
|
298 |
|
26281
328fd1c551ef
Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff
changeset
|
299 |
end; |