doc-src/TutorialI/CTL/document/CTLind.tex
author nipkow
Wed, 10 Jan 2001 11:08:29 +0100
changeset 10845 3696bc935bbd
parent 10795 9e888d60d3e5
child 10855 140a1ed65665
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10267
325ead6d9457 updated;
wenzelm
parents:
diff changeset
     1
%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
     2
\begin{isabellebody}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
     3
\def\isabellecontext{CTLind}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
     4
%
10395
7ef380745743 updated;
wenzelm
parents: 10283
diff changeset
     5
\isamarkupsubsection{CTL revisited%
7ef380745743 updated;
wenzelm
parents: 10283
diff changeset
     6
}
10267
325ead6d9457 updated;
wenzelm
parents:
diff changeset
     7
%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
     8
\begin{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
     9
\label{sec:CTL-revisited}
10283
ff003e2b790c *** empty log message ***
nipkow
parents: 10267
diff changeset
    10
The purpose of this section is twofold: we want to demonstrate
ff003e2b790c *** empty log message ***
nipkow
parents: 10267
diff changeset
    11
some of the induction principles and heuristics discussed above and we want to
ff003e2b790c *** empty log message ***
nipkow
parents: 10267
diff changeset
    12
show how inductive definitions can simplify proofs.
10267
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    13
In \S\ref{sec:CTL} we gave a fairly involved proof of the correctness of a
10795
9e888d60d3e5 minor edits to Chapters 1-3
paulson
parents: 10696
diff changeset
    14
model checker for CTL\@. In particular the proof of the
10267
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    15
\isa{infinity{\isacharunderscore}lemma} on the way to \isa{AF{\isacharunderscore}lemma{\isadigit{2}}} is not as
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    16
simple as one might intuitively expect, due to the \isa{SOME} operator
10283
ff003e2b790c *** empty log message ***
nipkow
parents: 10267
diff changeset
    17
involved. Below we give a simpler proof of \isa{AF{\isacharunderscore}lemma{\isadigit{2}}}
ff003e2b790c *** empty log message ***
nipkow
parents: 10267
diff changeset
    18
based on an auxiliary inductive definition.
10267
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    19
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    20
Let us call a (finite or infinite) path \emph{\isa{A}-avoiding} if it does
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    21
not touch any node in the set \isa{A}. Then \isa{AF{\isacharunderscore}lemma{\isadigit{2}}} says
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    22
that if no infinite path from some state \isa{s} is \isa{A}-avoiding,
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    23
then \isa{s\ {\isasymin}\ lfp\ {\isacharparenleft}af\ A{\isacharparenright}}. We prove this by inductively defining the set
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    24
\isa{Avoid\ s\ A} of states reachable from \isa{s} by a finite \isa{A}-avoiding path:
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    25
% Second proof of opposite direction, directly by well-founded induction
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    26
% on the initial segment of M that avoids A.%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    27
\end{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    28
\isacommand{consts}\ Avoid\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}state\ {\isasymRightarrow}\ state\ set\ {\isasymRightarrow}\ state\ set{\isachardoublequote}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    29
\isacommand{inductive}\ {\isachardoublequote}Avoid\ s\ A{\isachardoublequote}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    30
\isakeyword{intros}\ {\isachardoublequote}s\ {\isasymin}\ Avoid\ s\ A{\isachardoublequote}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    31
\ \ \ \ \ \ \ {\isachardoublequote}{\isasymlbrakk}\ t\ {\isasymin}\ Avoid\ s\ A{\isacharsemicolon}\ t\ {\isasymnotin}\ A{\isacharsemicolon}\ {\isacharparenleft}t{\isacharcomma}u{\isacharparenright}\ {\isasymin}\ M\ {\isasymrbrakk}\ {\isasymLongrightarrow}\ u\ {\isasymin}\ Avoid\ s\ A{\isachardoublequote}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    32
\begin{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    33
It is easy to see that for any infinite \isa{A}-avoiding path \isa{f}
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    34
with \isa{f\ {\isadigit{0}}\ {\isasymin}\ Avoid\ s\ A} there is an infinite \isa{A}-avoiding path
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    35
starting with \isa{s} because (by definition of \isa{Avoid}) there is a
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    36
finite \isa{A}-avoiding path from \isa{s} to \isa{f\ {\isadigit{0}}}.
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    37
The proof is by induction on \isa{f\ {\isadigit{0}}\ {\isasymin}\ Avoid\ s\ A}. However,
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    38
this requires the following
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    39
reformulation, as explained in \S\ref{sec:ind-var-in-prems} above;
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    40
the \isa{rule{\isacharunderscore}format} directive undoes the reformulation after the proof.%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    41
\end{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    42
\isacommand{lemma}\ ex{\isacharunderscore}infinite{\isacharunderscore}path{\isacharbrackleft}rule{\isacharunderscore}format{\isacharbrackright}{\isacharcolon}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    43
\ \ {\isachardoublequote}t\ {\isasymin}\ Avoid\ s\ A\ \ {\isasymLongrightarrow}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    44
\ \ \ {\isasymforall}f{\isasymin}Paths\ t{\isachardot}\ {\isacharparenleft}{\isasymforall}i{\isachardot}\ f\ i\ {\isasymnotin}\ A{\isacharparenright}\ {\isasymlongrightarrow}\ {\isacharparenleft}{\isasymexists}p{\isasymin}Paths\ s{\isachardot}\ {\isasymforall}i{\isachardot}\ p\ i\ {\isasymnotin}\ A{\isacharparenright}{\isachardoublequote}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    45
\isacommand{apply}{\isacharparenleft}erule\ Avoid{\isachardot}induct{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    46
\ \isacommand{apply}{\isacharparenleft}blast{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    47
\isacommand{apply}{\isacharparenleft}clarify{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    48
\isacommand{apply}{\isacharparenleft}drule{\isacharunderscore}tac\ x\ {\isacharequal}\ {\isachardoublequote}{\isasymlambda}i{\isachardot}\ case\ i\ of\ {\isadigit{0}}\ {\isasymRightarrow}\ t\ {\isacharbar}\ Suc\ i\ {\isasymRightarrow}\ f\ i{\isachardoublequote}\ \isakeyword{in}\ bspec{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    49
\isacommand{apply}{\isacharparenleft}simp{\isacharunderscore}all\ add{\isacharcolon}Paths{\isacharunderscore}def\ split{\isacharcolon}nat{\isachardot}split{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    50
\isacommand{done}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    51
\begin{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    52
\noindent
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    53
The base case (\isa{t\ {\isacharequal}\ s}) is trivial (\isa{blast}).
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    54
In the induction step, we have an infinite \isa{A}-avoiding path \isa{f}
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    55
starting from \isa{u}, a successor of \isa{t}. Now we simply instantiate
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    56
the \isa{{\isasymforall}f{\isasymin}Paths\ t} in the induction hypothesis by the path starting with
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    57
\isa{t} and continuing with \isa{f}. That is what the above $\lambda$-term
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    58
expresses. That fact that this is a path starting with \isa{t} and that
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    59
the instantiated induction hypothesis implies the conclusion is shown by
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    60
simplification.
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    61
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    62
Now we come to the key lemma. It says that if \isa{t} can be reached by a
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    63
finite \isa{A}-avoiding path from \isa{s}, then \isa{t\ {\isasymin}\ lfp\ {\isacharparenleft}af\ A{\isacharparenright}},
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    64
provided there is no infinite \isa{A}-avoiding path starting from \isa{s}.%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    65
\end{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    66
\isacommand{lemma}\ Avoid{\isacharunderscore}in{\isacharunderscore}lfp{\isacharbrackleft}rule{\isacharunderscore}format{\isacharparenleft}no{\isacharunderscore}asm{\isacharparenright}{\isacharbrackright}{\isacharcolon}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    67
\ \ {\isachardoublequote}{\isasymforall}p{\isasymin}Paths\ s{\isachardot}\ {\isasymexists}i{\isachardot}\ p\ i\ {\isasymin}\ A\ {\isasymLongrightarrow}\ t\ {\isasymin}\ Avoid\ s\ A\ {\isasymlongrightarrow}\ t\ {\isasymin}\ lfp{\isacharparenleft}af\ A{\isacharparenright}{\isachardoublequote}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    68
\begin{isamarkuptxt}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    69
\noindent
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    70
The trick is not to induct on \isa{t\ {\isasymin}\ Avoid\ s\ A}, as already the base
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    71
case would be a problem, but to proceed by well-founded induction \isa{t}. Hence \isa{t\ {\isasymin}\ Avoid\ s\ A} needs to be brought into the conclusion as
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    72
well, which the directive \isa{rule{\isacharunderscore}format} undoes at the end (see below).
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    73
But induction with respect to which well-founded relation? The restriction
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    74
of \isa{M} to \isa{Avoid\ s\ A}:
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    75
\begin{isabelle}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    76
\ \ \ \ \ {\isacharbraceleft}{\isacharparenleft}y{\isacharcomma}\ x{\isacharparenright}{\isachardot}\ {\isacharparenleft}x{\isacharcomma}\ y{\isacharparenright}\ {\isasymin}\ M\ {\isasymand}\ x\ {\isasymin}\ Avoid\ s\ A\ {\isasymand}\ y\ {\isasymin}\ Avoid\ s\ A\ {\isasymand}\ x\ {\isasymnotin}\ A{\isacharbraceright}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    77
\end{isabelle}
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    78
As we shall see in a moment, the absence of infinite \isa{A}-avoiding paths
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    79
starting from \isa{s} implies well-foundedness of this relation. For the
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    80
moment we assume this and proceed with the induction:%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    81
\end{isamarkuptxt}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    82
\isacommand{apply}{\isacharparenleft}subgoal{\isacharunderscore}tac\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    83
\ \ {\isachardoublequote}wf{\isacharbraceleft}{\isacharparenleft}y{\isacharcomma}x{\isacharparenright}{\isachardot}\ {\isacharparenleft}x{\isacharcomma}y{\isacharparenright}{\isasymin}M\ {\isasymand}\ x\ {\isasymin}\ Avoid\ s\ A\ {\isasymand}\ y\ {\isasymin}\ Avoid\ s\ A\ {\isasymand}\ x\ {\isasymnotin}\ A{\isacharbraceright}{\isachardoublequote}{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    84
\ \isacommand{apply}{\isacharparenleft}erule{\isacharunderscore}tac\ a\ {\isacharequal}\ t\ \isakeyword{in}\ wf{\isacharunderscore}induct{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    85
\ \isacommand{apply}{\isacharparenleft}clarsimp{\isacharparenright}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    86
\begin{isamarkuptxt}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    87
\noindent
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    88
Now can assume additionally (induction hypothesis) that if \isa{t\ {\isasymnotin}\ A}
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    89
then all successors of \isa{t} that are in \isa{Avoid\ s\ A} are in
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    90
\isa{lfp\ {\isacharparenleft}af\ A{\isacharparenright}}. To prove the actual goal we unfold \isa{lfp} once. Now
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    91
we have to prove that \isa{t} is in \isa{A} or all successors of \isa{t} are in \isa{lfp\ {\isacharparenleft}af\ A{\isacharparenright}}. If \isa{t} is not in \isa{A}, the second
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    92
\isa{Avoid}-rule implies that all successors of \isa{t} are in
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    93
\isa{Avoid\ s\ A} (because we also assume \isa{t\ {\isasymin}\ Avoid\ s\ A}), and
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    94
hence, by the induction hypothesis, all successors of \isa{t} are indeed in
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    95
\isa{lfp\ {\isacharparenleft}af\ A{\isacharparenright}}. Mechanically:%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    96
\end{isamarkuptxt}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    97
\ \isacommand{apply}{\isacharparenleft}rule\ ssubst\ {\isacharbrackleft}OF\ lfp{\isacharunderscore}unfold{\isacharbrackleft}OF\ mono{\isacharunderscore}af{\isacharbrackright}{\isacharbrackright}{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    98
\ \isacommand{apply}{\isacharparenleft}simp\ only{\isacharcolon}\ af{\isacharunderscore}def{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
    99
\ \isacommand{apply}{\isacharparenleft}blast\ intro{\isacharcolon}Avoid{\isachardot}intros{\isacharparenright}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   100
\begin{isamarkuptxt}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   101
Having proved the main goal we return to the proof obligation that the above
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   102
relation is indeed well-founded. This is proved by contraposition: we assume
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   103
the relation is not well-founded. Thus there exists an infinite \isa{A}-avoiding path all in \isa{Avoid\ s\ A}, by theorem
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   104
\isa{wf{\isacharunderscore}iff{\isacharunderscore}no{\isacharunderscore}infinite{\isacharunderscore}down{\isacharunderscore}chain}:
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   105
\begin{isabelle}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   106
\ \ \ \ \ wf\ r\ {\isacharequal}\ {\isacharparenleft}{\isasymnot}\ {\isacharparenleft}{\isasymexists}f{\isachardot}\ {\isasymforall}i{\isachardot}\ {\isacharparenleft}f\ {\isacharparenleft}Suc\ i{\isacharparenright}{\isacharcomma}\ f\ i{\isacharparenright}\ {\isasymin}\ r{\isacharparenright}{\isacharparenright}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   107
\end{isabelle}
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   108
From lemma \isa{ex{\isacharunderscore}infinite{\isacharunderscore}path} the existence of an infinite
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   109
\isa{A}-avoiding path starting in \isa{s} follows, just as required for
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   110
the contraposition.%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   111
\end{isamarkuptxt}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   112
\isacommand{apply}{\isacharparenleft}erule\ contrapos{\isacharunderscore}pp{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   113
\isacommand{apply}{\isacharparenleft}simp\ add{\isacharcolon}wf{\isacharunderscore}iff{\isacharunderscore}no{\isacharunderscore}infinite{\isacharunderscore}down{\isacharunderscore}chain{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   114
\isacommand{apply}{\isacharparenleft}erule\ exE{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   115
\isacommand{apply}{\isacharparenleft}rule\ ex{\isacharunderscore}infinite{\isacharunderscore}path{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   116
\isacommand{apply}{\isacharparenleft}auto\ simp\ add{\isacharcolon}Paths{\isacharunderscore}def{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   117
\isacommand{done}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   118
\begin{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   119
The \isa{{\isacharparenleft}no{\isacharunderscore}asm{\isacharparenright}} modifier of the \isa{rule{\isacharunderscore}format} directive means
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   120
that the assumption is left unchanged---otherwise the \isa{{\isasymforall}p} is turned
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   121
into a \isa{{\isasymAnd}p}, which would complicate matters below. As it is,
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   122
\isa{Avoid{\isacharunderscore}in{\isacharunderscore}lfp} is now
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   123
\begin{isabelle}%
10696
76d7f6c9a14c *** empty log message ***
nipkow
parents: 10668
diff changeset
   124
\ \ \ \ \ {\isasymlbrakk}{\isasymforall}p{\isasymin}Paths\ s{\isachardot}\ {\isasymexists}i{\isachardot}\ p\ i\ {\isasymin}\ A{\isacharsemicolon}\ t\ {\isasymin}\ Avoid\ s\ A{\isasymrbrakk}\ {\isasymLongrightarrow}\ t\ {\isasymin}\ lfp\ {\isacharparenleft}af\ A{\isacharparenright}%
10267
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   125
\end{isabelle}
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   126
The main theorem is simply the corollary where \isa{t\ {\isacharequal}\ s},
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   127
in which case the assumption \isa{t\ {\isasymin}\ Avoid\ s\ A} is trivially true
10845
3696bc935bbd *** empty log message ***
nipkow
parents: 10795
diff changeset
   128
by the first \isa{Avoid}-rule. Isabelle confirms this:%
10267
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   129
\end{isamarkuptext}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   130
\isacommand{theorem}\ AF{\isacharunderscore}lemma{\isadigit{2}}{\isacharcolon}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   131
\ \ {\isachardoublequote}{\isacharbraceleft}s{\isachardot}\ {\isasymforall}p\ {\isasymin}\ Paths\ s{\isachardot}\ {\isasymexists}\ i{\isachardot}\ p\ i\ {\isasymin}\ A{\isacharbraceright}\ {\isasymsubseteq}\ lfp{\isacharparenleft}af\ A{\isacharparenright}{\isachardoublequote}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   132
\isacommand{by}{\isacharparenleft}auto\ elim{\isacharcolon}Avoid{\isacharunderscore}in{\isacharunderscore}lfp\ intro{\isacharcolon}Avoid{\isachardot}intros{\isacharparenright}\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   133
\isanewline
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   134
\end{isabellebody}%
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   135
%%% Local Variables:
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   136
%%% mode: latex
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   137
%%% TeX-master: "root"
325ead6d9457 updated;
wenzelm
parents:
diff changeset
   138
%%% End: