0
|
1 |
theory NamedThms
|
58
|
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,
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
12 |
which are then used in a method.\smallskip
|
0
|
13 |
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
14 |
{\bf Solution:} This can be achieved using named theorem lists.\smallskip
|
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
15 |
|
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
16 |
Named theorem lists can be set up using the code
|
0
|
17 |
|
|
18 |
*}
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
19 |
|
69
|
20 |
ML{*structure FooRules = NamedThmsFun (
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
21 |
val name = "foo"
|
69
|
22 |
val description = "Rules for foo"); *}
|
0
|
23 |
|
|
24 |
text {*
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
25 |
and the command
|
68
|
26 |
*}
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
27 |
|
68
|
28 |
setup {* FooRules.setup *}
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
29 |
|
68
|
30 |
text {*
|
20
|
31 |
This code declares a context data slot where the theorems are stored,
|
58
|
32 |
an attribute @{text foo} (with the usual @{text add} and @{text del} options
|
51
|
33 |
for adding and deleting theorems) and an internal ML interface to retrieve and
|
20
|
34 |
modify the theorems.
|
0
|
35 |
|
20
|
36 |
Furthermore, the facts are made available on the user level under the dynamic
|
51
|
37 |
fact name @{text foo}. For example we can declare three lemmas to be of the kind
|
58
|
38 |
@{text foo} by:
|
0
|
39 |
*}
|
|
40 |
|
|
41 |
lemma rule1[foo]: "A" sorry
|
|
42 |
lemma rule2[foo]: "B" sorry
|
48
|
43 |
lemma rule3[foo]: "C" sorry
|
0
|
44 |
|
51
|
45 |
text {* and undeclare the first one by: *}
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
46 |
|
0
|
47 |
declare rule1[foo del]
|
|
48 |
|
63
|
49 |
text {* and query the remaining ones with:
|
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
50 |
|
74
|
51 |
\begin{isabelle}
|
|
52 |
\isacommand{thm}~@{text "foo"}\\
|
|
53 |
@{text "> ?C"}\\
|
|
54 |
@{text "> ?B"}\\
|
|
55 |
\end{isabelle}
|
0
|
56 |
|
58
|
57 |
On the ML-level the rules marked with @{text "foo"} an be retrieved
|
51
|
58 |
using the function @{ML FooRules.get}:
|
0
|
59 |
|
72
7b8c4fe235aa
added an antiquotation option [gray] for gray boxes around displays
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
60 |
@{ML_response_fake [display,gray] "FooRules.get @{context}" "[\"?C\",\"?B\"]"}
|
20
|
61 |
|
0
|
62 |
\begin{readmore}
|
63
|
63 |
For more information see @{ML_file "Pure/Tools/named_thms.ML"} and also
|
|
64 |
the recipe in Section~\ref{recipe:storingdata} about storing arbitrary
|
|
65 |
data.
|
0
|
66 |
\end{readmore}
|
|
67 |
*}
|
|
68 |
|
15
|
69 |
text {*
|
|
70 |
(FIXME: maybe add a comment about the case when the theorems
|
|
71 |
to be added need to satisfy certain properties)
|
|
72 |
|
|
73 |
*}
|
|
74 |
|
0
|
75 |
|
|
76 |
end
|
|
77 |
|
|
78 |
|
|
79 |
|
|
80 |
|