0
|
1 |
theory NamedThms
|
25
|
2 |
imports Base
|
0
|
3 |
begin
|
|
4 |
|
13
|
5 |
section {* Accumulate a List of Theorems under a Name *}
|
2
|
6 |
|
0
|
7 |
|
|
8 |
text {*
|
20
|
9 |
{\bf Problem:}
|
|
10 |
Your tool @{text foo} works with special rules, called @{text foo}-rules.
|
0
|
11 |
Users should be able to declare @{text foo}-rules in the theory,
|
20
|
12 |
which are then used by some method.\smallskip
|
0
|
13 |
|
20
|
14 |
{\bf Solution:} This can be achieved using
|
0
|
15 |
|
|
16 |
*}
|
|
17 |
ML {*
|
|
18 |
structure FooRules = NamedThmsFun(
|
|
19 |
val name = "foo"
|
|
20 |
val description = "Rules for foo"
|
|
21 |
);
|
|
22 |
*}
|
|
23 |
|
|
24 |
setup FooRules.setup
|
|
25 |
|
|
26 |
text {*
|
20
|
27 |
This code declares a context data slot where the theorems are stored,
|
43
02f76f1b6e7b
added positions to anti-quotations; removed old antiquotation_setup; tuned the text a bit
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
28 |
an attribute @{ML_text foo} (with the usual @{ML_text add} and @{ML_text del} options
|
20
|
29 |
to adding and deleting theorems) and an internal ML interface to retrieve and
|
|
30 |
modify the theorems.
|
0
|
31 |
|
20
|
32 |
Furthermore, the facts are made available on the user level under the dynamic
|
|
33 |
fact name @{text foo}. For example:
|
0
|
34 |
*}
|
|
35 |
|
|
36 |
lemma rule1[foo]: "A" sorry
|
|
37 |
lemma rule2[foo]: "B" sorry
|
|
38 |
|
|
39 |
declare rule1[foo del]
|
|
40 |
|
|
41 |
thm foo
|
|
42 |
|
20
|
43 |
text {*
|
43
02f76f1b6e7b
added positions to anti-quotations; removed old antiquotation_setup; tuned the text a bit
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
44 |
In an ML-context the rules marked with @{ML_text "foo"} an be retrieved
|
20
|
45 |
using
|
0
|
46 |
*}
|
|
47 |
|
20
|
48 |
ML {* FooRules.get @{context} *}
|
|
49 |
|
0
|
50 |
|
|
51 |
text {*
|
|
52 |
\begin{readmore}
|
12
|
53 |
For more information see @{ML_file "Pure/Tools/named_thms.ML"}.
|
0
|
54 |
\end{readmore}
|
|
55 |
*}
|
|
56 |
|
15
|
57 |
text {*
|
|
58 |
(FIXME: maybe add a comment about the case when the theorems
|
|
59 |
to be added need to satisfy certain properties)
|
|
60 |
|
|
61 |
*}
|
|
62 |
|
0
|
63 |
|
|
64 |
end
|
|
65 |
|
|
66 |
|
|
67 |
|
|
68 |
|