210
|
1 |
theory Ind_General_Scheme
|
219
|
2 |
imports Ind_Interface
|
32
|
3 |
begin
|
|
4 |
|
219
|
5 |
section {* The Code in a Nutshell\label{sec:nutshell} *}
|
210
|
6 |
|
|
7 |
|
32
|
8 |
|
|
9 |
text {*
|
212
|
10 |
The inductive package will generate the reasoning infrastructure for
|
|
11 |
mutually recursive predicates @{text "pred\<^isub>1\<dots>pred\<^isub>n"}. In what
|
|
12 |
follows we will have the convention that various, possibly empty collections
|
|
13 |
of ``things'' (lists, nested implications and so on) are indicated either by
|
|
14 |
adding an @{text [quotes] "s"} or by adding a superscript @{text [quotes]
|
|
15 |
"\<^isup>*"}. The shorthand for the predicates will therefore be @{text
|
|
16 |
"preds"} or @{text "pred\<^sup>*"}. In the case of the predicates there must
|
|
17 |
be, of course, at least a single one in order to obtain a meaningful
|
|
18 |
definition.
|
210
|
19 |
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
20 |
The input for the inductive package will be some @{text "preds"} with possible
|
210
|
21 |
typing and syntax annotations, and also some introduction rules. We call below the
|
|
22 |
introduction rules short as @{text "rules"}. Borrowing some idealised Isabelle
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
23 |
notation, one such @{text "rule"} is assumed to be of the form
|
210
|
24 |
|
|
25 |
\begin{isabelle}
|
|
26 |
@{text "rule ::=
|
|
27 |
\<And>xs. \<^raw:$\underbrace{\mbox{>As\<^raw:}}_{\text{\makebox[0mm]{\rm non-recursive premises}}}$> \<Longrightarrow>
|
|
28 |
\<^raw:$\underbrace{\mbox{>(\<And>ys. Bs \<Longrightarrow> pred ss)\<^isup>*\<^raw:}}_{\text{\rm recursive premises}}$>
|
|
29 |
\<Longrightarrow> pred ts"}
|
|
30 |
\end{isabelle}
|
|
31 |
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
32 |
For the purposes here, we will assume the @{text rules} have
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
33 |
this format and omit any code that actually tests this. Therefore ``things''
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
34 |
can go horribly wrong, if the @{text "rules"} are not of this
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
35 |
form.\footnote{FIXME: Exercise to test this format.} The @{text As} and
|
212
|
36 |
@{text Bs} in a @{text "rule"} stand for formulae not involving the inductive
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
37 |
predicates @{text "preds"}; the instances @{text "pred ss"} and @{text "pred
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
38 |
ts"} can stand for different predicates, like @{text "pred\<^isub>1 ss"} and
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
39 |
@{text "pred\<^isub>2 ts"}; @{text ss} and @{text ts} are the
|
212
|
40 |
arguments of these predicates. Every formula left of @{text [quotes]
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
41 |
"\<Longrightarrow> pred ts"} is a premise of the rule. The outermost quantified
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
42 |
variables @{text "xs"} are usually omitted in the user's input. The
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
43 |
quantification for the variables @{text "ys"} is local with respect to
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
44 |
one recursive premise and must be given. Some examples of @{text "rule"}s
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
45 |
are
|
210
|
46 |
|
|
47 |
@{thm [display] fresh_var[no_vars]}
|
|
48 |
|
|
49 |
which has only a single non-recursive premise, whereas
|
|
50 |
|
|
51 |
@{thm [display] evenS[no_vars]}
|
|
52 |
|
|
53 |
has a single recursive premise; the rule
|
|
54 |
|
|
55 |
@{thm [display] accpartI[no_vars]}
|
|
56 |
|
212
|
57 |
has a single recursive premise that has a precondition. As usual all
|
210
|
58 |
rules are stated without the leading meta-quantification @{text "\<And>xs"}.
|
|
59 |
|
215
|
60 |
The output of the inductive package will be definitions for the predicates,
|
|
61 |
induction principles and introduction rules. For the definitions we need to have the
|
|
62 |
@{text rules} in a form where the meta-quantifiers and meta-implications are
|
|
63 |
replaced by their object logic equivalents. Therefore an @{text "orule"} is
|
|
64 |
of the form
|
210
|
65 |
|
|
66 |
@{text [display] "orule ::= \<forall>xs. As \<longrightarrow> (\<forall>ys. Bs \<longrightarrow> pred ss)\<^isup>* \<longrightarrow> pred ts"}
|
|
67 |
|
|
68 |
A definition for the predicate @{text "pred"} has then the form
|
|
69 |
|
|
70 |
@{text [display] "def ::= pred \<equiv> \<lambda>zs. \<forall>preds. orules \<longrightarrow> pred zs"}
|
|
71 |
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
72 |
The induction principles for every predicate @{text "pred"} are of the
|
210
|
73 |
form
|
|
74 |
|
|
75 |
@{text [display] "ind ::= pred ?zs \<Longrightarrow> rules[preds := ?Ps] \<Longrightarrow> ?P ?zs"}
|
|
76 |
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
77 |
where in the @{text "rules"} every @{text pred} is replaced by a fresh
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
78 |
meta-variable @{text "?P"}.
|
210
|
79 |
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
80 |
In order to derive an induction principle for the predicate @{text "pred"},
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
81 |
we first transform @{text ind} into the object logic and fix the meta-variables.
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
82 |
Hence we have to prove a formula of the form
|
210
|
83 |
|
|
84 |
@{text [display] "pred zs \<longrightarrow> orules[preds := Ps] \<longrightarrow> P zs"}
|
|
85 |
|
212
|
86 |
If we assume @{text "pred zs"} and unfold its definition, then we have an
|
|
87 |
assumption
|
210
|
88 |
|
|
89 |
@{text [display] "\<forall>preds. orules \<longrightarrow> pred zs"}
|
|
90 |
|
212
|
91 |
and must prove the goal
|
210
|
92 |
|
|
93 |
@{text [display] "orules[preds := Ps] \<longrightarrow> P zs"}
|
|
94 |
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
95 |
This can be done by instantiating the @{text "\<forall>preds"}-quantification
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
96 |
with the @{text "Ps"}. Then we are done since we are left with a simple
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
97 |
identity.
|
210
|
98 |
|
215
|
99 |
Although the user declares the introduction rules @{text rules}, they must
|
212
|
100 |
also be derived from the @{text defs}. These derivations are a bit involved.
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
101 |
Assuming we want to prove the introduction rule
|
210
|
102 |
|
|
103 |
@{text [display] "\<And>xs. As \<Longrightarrow> (\<And>ys. Bs \<Longrightarrow> pred ss)\<^isup>* \<Longrightarrow> pred ts"}
|
|
104 |
|
215
|
105 |
then we have assumptions of the form
|
210
|
106 |
|
|
107 |
\begin{isabelle}
|
|
108 |
(i)~~@{text "As"}\\
|
|
109 |
(ii)~@{text "(\<And>ys. Bs \<Longrightarrow> pred ss)\<^isup>*"}
|
|
110 |
\end{isabelle}
|
|
111 |
|
212
|
112 |
and must show the goal
|
210
|
113 |
|
|
114 |
@{text [display] "pred ts"}
|
|
115 |
|
212
|
116 |
If we now unfold the definitions for the @{text preds}, we have assumptions
|
210
|
117 |
|
|
118 |
\begin{isabelle}
|
|
119 |
(i)~~~@{text "As"}\\
|
|
120 |
(ii)~~@{text "(\<And>ys. Bs \<Longrightarrow> \<forall>preds. orules \<longrightarrow> pred ss)\<^isup>*"}\\
|
|
121 |
(iii)~@{text "orules"}
|
|
122 |
\end{isabelle}
|
|
123 |
|
|
124 |
and need to show
|
|
125 |
|
|
126 |
@{text [display] "pred ts"}
|
|
127 |
|
|
128 |
In the last step we removed some quantifiers and moved the precondition @{text "orules"}
|
|
129 |
into the assumtion. The @{text "orules"} stand for all introduction rules that are given
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
130 |
by the user. We apply the @{text orule} that corresponds to introduction rule we are
|
215
|
131 |
proving. After lifting to the meta-connectives, this introduction rule must necessarily
|
|
132 |
be of the form
|
210
|
133 |
|
|
134 |
@{text [display] "As \<Longrightarrow> (\<And>ys. Bs \<Longrightarrow> pred ss)\<^isup>* \<Longrightarrow> pred ts"}
|
|
135 |
|
|
136 |
When we apply this rule we end up in the goal state where we have to prove
|
212
|
137 |
goals of the form
|
210
|
138 |
|
|
139 |
\begin{isabelle}
|
|
140 |
(a)~@{text "As"}\\
|
|
141 |
(b)~@{text "(\<And>ys. Bs \<Longrightarrow> pred ss)\<^isup>*"}
|
|
142 |
\end{isabelle}
|
|
143 |
|
212
|
144 |
We can immediately discharge the goals @{text "As"} using the assumptions in
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
145 |
@{text "(i)"}. The goals in @{text "(b)"} can be discharged as follows: we
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
146 |
assume the @{text "Bs"} and prove @{text "pred ss"}. For this we resolve the
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
147 |
@{text "Bs"} with the assumptions in @{text "(ii)"}. This gives us the
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
148 |
assumptions
|
210
|
149 |
|
|
150 |
@{text [display] "(\<forall>preds. orules \<longrightarrow> pred ss)\<^isup>*"}
|
|
151 |
|
|
152 |
Instantiating the universal quantifiers and then resolving with the assumptions
|
|
153 |
in @{text "(iii)"} gives us @{text "pred ss"}, which is the goal we are after.
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
154 |
This completes the proof for introduction rules.
|
210
|
155 |
|
215
|
156 |
What remains is to implement in Isabelle the reasoning outlined in this section.
|
|
157 |
We will describe the code in the next section. For building testcases, we use the shorthands for
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
158 |
@{text "even/odd"}, @{term "fresh"} and @{term "accpart"}
|
215
|
159 |
defined in Figure~\ref{fig:shorthands}.
|
210
|
160 |
*}
|
|
161 |
|
|
162 |
|
|
163 |
text_raw{*
|
|
164 |
\begin{figure}[p]
|
|
165 |
\begin{minipage}{\textwidth}
|
|
166 |
\begin{isabelle}*}
|
|
167 |
ML{*(* even-odd example *)
|
|
168 |
val eo_defs = [@{thm even_def}, @{thm odd_def}]
|
|
169 |
|
|
170 |
val eo_rules =
|
|
171 |
[@{prop "even 0"},
|
|
172 |
@{prop "\<And>n. odd n \<Longrightarrow> even (Suc n)"},
|
|
173 |
@{prop "\<And>n. even n \<Longrightarrow> odd (Suc n)"}]
|
|
174 |
|
|
175 |
val eo_orules =
|
|
176 |
[@{prop "even 0"},
|
|
177 |
@{prop "\<forall>n. odd n \<longrightarrow> even (Suc n)"},
|
|
178 |
@{prop "\<forall>n. even n \<longrightarrow> odd (Suc n)"}]
|
|
179 |
|
|
180 |
val eo_preds = [@{term "even::nat\<Rightarrow>bool"}, @{term "odd::nat\<Rightarrow>bool"}]
|
|
181 |
val eo_prednames = [@{binding "even"}, @{binding "odd"}]
|
|
182 |
val eo_syns = [NoSyn, NoSyn]
|
|
183 |
val eo_arg_tyss = [[@{typ "nat"}], [@{typ "nat"}]]
|
|
184 |
val e_pred = @{term "even::nat\<Rightarrow>bool"}
|
|
185 |
val e_arg_tys = [@{typ "nat"}]
|
|
186 |
|
|
187 |
|
|
188 |
|
|
189 |
(* freshness example *)
|
|
190 |
val fresh_rules =
|
|
191 |
[@{prop "\<And>a b. a \<noteq> b \<Longrightarrow> fresh a (Var b)"},
|
|
192 |
@{prop "\<And>a s t. fresh a t \<Longrightarrow> fresh a s \<Longrightarrow> fresh a (App t s)"},
|
|
193 |
@{prop "\<And>a t. fresh a (Lam a t)"},
|
|
194 |
@{prop "\<And>a b t. a \<noteq> b \<Longrightarrow> fresh a t \<Longrightarrow> fresh a (Lam b t)"}]
|
|
195 |
|
|
196 |
val fresh_orules =
|
|
197 |
[@{prop "\<forall>a b. a \<noteq> b \<longrightarrow> fresh a (Var b)"},
|
|
198 |
@{prop "\<forall>a s t. fresh a t \<longrightarrow> fresh a s \<longrightarrow> fresh a (App t s)"},
|
|
199 |
@{prop "\<forall>a t. fresh a (Lam a t)"},
|
|
200 |
@{prop "\<forall>a b t. a \<noteq> b \<longrightarrow> fresh a t \<longrightarrow> fresh a (Lam b t)"}]
|
|
201 |
|
|
202 |
val fresh_pred = @{term "fresh::string\<Rightarrow>trm\<Rightarrow>bool"}
|
|
203 |
val fresh_arg_tys = [@{typ "string"}, @{typ "trm"}]
|
|
204 |
|
|
205 |
|
|
206 |
|
|
207 |
(* accessible-part example *)
|
|
208 |
val acc_rules =
|
|
209 |
[@{prop "\<And>R x. (\<And>y. R y x \<Longrightarrow> accpart R y) \<Longrightarrow> accpart R x"}]
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
210 |
val acc_pred = @{term "accpart::('a \<Rightarrow>'a\<Rightarrow>bool)\<Rightarrow>'a \<Rightarrow>bool"}*}
|
210
|
211 |
text_raw{*
|
|
212 |
\end{isabelle}
|
|
213 |
\end{minipage}
|
211
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
214 |
\caption{Shorthands for the inductive predicates @{text "even"}-@{text "odd"},
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
215 |
@{text "fresh"} and @{text "accpart"}. The names of these shorthands follow
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
216 |
the convention @{text "rules"}, @{text "orules"}, @{text "preds"} and so on.
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
217 |
The purpose of these shorthands is to simplify the construction of testcases
|
d5accbc67e1b
more work on simple inductive and marked all sections that are still seriously incomplete with TBD
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
218 |
in Section~\ref{sec:code}.\label{fig:shorthands}}
|
210
|
219 |
\end{figure}
|
|
220 |
*}
|
|
221 |
|
|
222 |
|
|
223 |
|
32
|
224 |
end
|