doc-src/TutorialI/Recdef/document/simplification.tex
author wenzelm
Mon, 29 Aug 2005 11:44:23 +0200
changeset 17181 5f42dd5e6570
parent 17175 1eced27ee0e1
child 17187 45bee2f6e61f
permissions -rw-r--r--
updated;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9722
a5f86aed785b *** empty log message ***
nipkow
parents: 9721
diff changeset
     1
%
a5f86aed785b *** empty log message ***
nipkow
parents: 9721
diff changeset
     2
\begin{isabellebody}%
9924
3370f6aa3200 updated;
wenzelm
parents: 9834
diff changeset
     3
\def\isabellecontext{simplification}%
17181
5f42dd5e6570 updated;
wenzelm
parents: 17175
diff changeset
     4
\isamarkupfalse%
17056
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
     5
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
     6
\isadelimtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
     7
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
     8
\endisadelimtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
     9
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    10
\isatagtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    11
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    12
\endisatagtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    13
{\isafoldtheory}%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    14
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    15
\isadelimtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    16
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
    17
\endisadelimtheory
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    18
%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    19
\begin{isamarkuptext}%
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    20
Once we have proved all the termination conditions, the \isacommand{recdef} 
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    21
recursion equations become simplification rules, just as with
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    22
\isacommand{primrec}. In most cases this works fine, but there is a subtle
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    23
problem that must be mentioned: simplification may not
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    24
terminate because of automatic splitting of \isa{if}.
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    25
\index{*if expressions!splitting of}
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    26
Let us look at an example:%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    27
\end{isamarkuptext}%
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    28
\isamarkuptrue%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    29
\isacommand{consts}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    30
\ gcd\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequoteopen}nat{\isasymtimes}nat\ {\isasymRightarrow}\ nat{\isachardoublequoteclose}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    31
\isacommand{recdef}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    32
\ gcd\ {\isachardoublequoteopen}measure\ {\isacharparenleft}{\isasymlambda}{\isacharparenleft}m{\isacharcomma}n{\isacharparenright}{\isachardot}n{\isacharparenright}{\isachardoublequoteclose}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    33
\ \ {\isachardoublequoteopen}gcd\ {\isacharparenleft}m{\isacharcomma}\ n{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}if\ n{\isacharequal}{\isadigit{0}}\ then\ m\ else\ gcd{\isacharparenleft}n{\isacharcomma}\ m\ mod\ n{\isacharparenright}{\isacharparenright}{\isachardoublequoteclose}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    34
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    35
\noindent
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    36
According to the measure function, the second argument should decrease with
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    37
each recursive call. The resulting termination condition
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    38
\begin{isabelle}%
12473
f41e477576b9 *** empty log message ***
nipkow
parents: 11866
diff changeset
    39
\ \ \ \ \ n\ {\isasymnoteq}\ {\isadigit{0}}\ {\isasymLongrightarrow}\ m\ mod\ n\ {\isacharless}\ n%
9924
3370f6aa3200 updated;
wenzelm
parents: 9834
diff changeset
    40
\end{isabelle}
10878
b254d5ad6dd4 auto update
paulson
parents: 10795
diff changeset
    41
is proved automatically because it is already present as a lemma in
b254d5ad6dd4 auto update
paulson
parents: 10795
diff changeset
    42
HOL\@.  Thus the recursion equation becomes a simplification
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    43
rule. Of course the equation is nonterminating if we are allowed to unfold
10171
59d6633835fa *** empty log message ***
nipkow
parents: 9933
diff changeset
    44
the recursive call inside the \isa{else} branch, which is why programming
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    45
languages and our simplifier don't do that. Unfortunately the simplifier does
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    46
something else that leads to the same problem: it splits 
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    47
each \isa{if}-expression unless its
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    48
condition simplifies to \isa{True} or \isa{False}.  For
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    49
example, simplification reduces
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    50
\begin{isabelle}%
16797
6109d4020420 auto update
paulson
parents: 16069
diff changeset
    51
\ \ \ \ \ simplification{\isachardot}gcd\ {\isacharparenleft}m{\isacharcomma}\ n{\isacharparenright}\ {\isacharequal}\ k%
9924
3370f6aa3200 updated;
wenzelm
parents: 9834
diff changeset
    52
\end{isabelle}
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    53
in one step to
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    54
\begin{isabelle}%
16797
6109d4020420 auto update
paulson
parents: 16069
diff changeset
    55
\ \ \ \ \ {\isacharparenleft}if\ n\ {\isacharequal}\ {\isadigit{0}}\ then\ m\ else\ simplification{\isachardot}gcd\ {\isacharparenleft}n{\isacharcomma}\ m\ mod\ n{\isacharparenright}{\isacharparenright}\ {\isacharequal}\ k%
9924
3370f6aa3200 updated;
wenzelm
parents: 9834
diff changeset
    56
\end{isabelle}
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    57
where the condition cannot be reduced further, and splitting leads to
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    58
\begin{isabelle}%
16797
6109d4020420 auto update
paulson
parents: 16069
diff changeset
    59
\ \ \ \ \ {\isacharparenleft}n\ {\isacharequal}\ {\isadigit{0}}\ {\isasymlongrightarrow}\ m\ {\isacharequal}\ k{\isacharparenright}\ {\isasymand}\ {\isacharparenleft}n\ {\isasymnoteq}\ {\isadigit{0}}\ {\isasymlongrightarrow}\ simplification{\isachardot}gcd\ {\isacharparenleft}n{\isacharcomma}\ m\ mod\ n{\isacharparenright}\ {\isacharequal}\ k{\isacharparenright}%
9924
3370f6aa3200 updated;
wenzelm
parents: 9834
diff changeset
    60
\end{isabelle}
16797
6109d4020420 auto update
paulson
parents: 16069
diff changeset
    61
Since the recursive call \isa{simplification{\isachardot}gcd\ {\isacharparenleft}n{\isacharcomma}\ m\ mod\ n{\isacharparenright}} is no longer protected by
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    62
an \isa{if}, it is unfolded again, which leads to an infinite chain of
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    63
simplification steps. Fortunately, this problem can be avoided in many
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9458
diff changeset
    64
different ways.
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    65
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    66
The most radical solution is to disable the offending theorem
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    67
\isa{split{\isacharunderscore}if},
11215
b44ad7e4c4d2 *** empty log message ***
nipkow
parents: 10878
diff changeset
    68
as shown in \S\ref{sec:AutoCaseSplits}.  However, we do not recommend this
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    69
approach: you will often have to invoke the rule explicitly when
11215
b44ad7e4c4d2 *** empty log message ***
nipkow
parents: 10878
diff changeset
    70
\isa{if} is involved.
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    71
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    72
If possible, the definition should be given by pattern matching on the left
16797
6109d4020420 auto update
paulson
parents: 16069
diff changeset
    73
rather than \isa{if} on the right. In the case of \isa{simplification{\isachardot}gcd} the
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    74
following alternative definition suggests itself:%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    75
\end{isamarkuptext}%
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    76
\isamarkuptrue%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    77
\isacommand{consts}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    78
\ gcd{\isadigit{1}}\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequoteopen}nat{\isasymtimes}nat\ {\isasymRightarrow}\ nat{\isachardoublequoteclose}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    79
\isacommand{recdef}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    80
\ gcd{\isadigit{1}}\ {\isachardoublequoteopen}measure\ {\isacharparenleft}{\isasymlambda}{\isacharparenleft}m{\isacharcomma}n{\isacharparenright}{\isachardot}n{\isacharparenright}{\isachardoublequoteclose}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    81
\ \ {\isachardoublequoteopen}gcd{\isadigit{1}}\ {\isacharparenleft}m{\isacharcomma}\ {\isadigit{0}}{\isacharparenright}\ {\isacharequal}\ m{\isachardoublequoteclose}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    82
\ \ {\isachardoublequoteopen}gcd{\isadigit{1}}\ {\isacharparenleft}m{\isacharcomma}\ n{\isacharparenright}\ {\isacharequal}\ gcd{\isadigit{1}}{\isacharparenleft}n{\isacharcomma}\ m\ mod\ n{\isacharparenright}{\isachardoublequoteclose}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    83
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    84
\noindent
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    85
The order of equations is important: it hides the side condition
12473
f41e477576b9 *** empty log message ***
nipkow
parents: 11866
diff changeset
    86
\isa{n\ {\isasymnoteq}\ {\isadigit{0}}}.  Unfortunately, in general the case distinction
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    87
may not be expressible by pattern matching.
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    88
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    89
A simple alternative is to replace \isa{if} by \isa{case}, 
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
    90
which is also available for \isa{bool} and is not split automatically:%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    91
\end{isamarkuptext}%
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    92
\isamarkuptrue%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    93
\isacommand{consts}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    94
\ gcd{\isadigit{2}}\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequoteopen}nat{\isasymtimes}nat\ {\isasymRightarrow}\ nat{\isachardoublequoteclose}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    95
\isacommand{recdef}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    96
\ gcd{\isadigit{2}}\ {\isachardoublequoteopen}measure\ {\isacharparenleft}{\isasymlambda}{\isacharparenleft}m{\isacharcomma}n{\isacharparenright}{\isachardot}n{\isacharparenright}{\isachardoublequoteclose}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
    97
\ \ {\isachardoublequoteopen}gcd{\isadigit{2}}{\isacharparenleft}m{\isacharcomma}n{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}case\ n{\isacharequal}{\isadigit{0}}\ of\ True\ {\isasymRightarrow}\ m\ {\isacharbar}\ False\ {\isasymRightarrow}\ gcd{\isadigit{2}}{\isacharparenleft}n{\isacharcomma}m\ mod\ n{\isacharparenright}{\isacharparenright}{\isachardoublequoteclose}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    98
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    99
\noindent
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
   100
This is probably the neatest solution next to pattern matching, and it is
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
   101
always available.
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   102
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   103
A final alternative is to replace the offending simplification rules by
16797
6109d4020420 auto update
paulson
parents: 16069
diff changeset
   104
derived conditional ones. For \isa{simplification{\isachardot}gcd} it means we have to prove
10795
9e888d60d3e5 minor edits to Chapters 1-3
paulson
parents: 10187
diff changeset
   105
these lemmas:%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   106
\end{isamarkuptext}%
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   107
\isamarkuptrue%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   108
\isacommand{lemma}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   109
\ {\isacharbrackleft}simp{\isacharbrackright}{\isacharcolon}\ {\isachardoublequoteopen}gcd\ {\isacharparenleft}m{\isacharcomma}\ {\isadigit{0}}{\isacharparenright}\ {\isacharequal}\ m{\isachardoublequoteclose}\isanewline
17056
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   110
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   111
\isadelimproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   112
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   113
\endisadelimproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   114
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   115
\isatagproof
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   116
\isacommand{apply}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   117
{\isacharparenleft}simp{\isacharparenright}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   118
\isacommand{done}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   119
%
17056
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   120
\endisatagproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   121
{\isafoldproof}%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   122
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   123
\isadelimproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   124
\isanewline
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   125
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   126
\endisadelimproof
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 13791
diff changeset
   127
\isanewline
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   128
\isacommand{lemma}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   129
\ {\isacharbrackleft}simp{\isacharbrackright}{\isacharcolon}\ {\isachardoublequoteopen}n\ {\isasymnoteq}\ {\isadigit{0}}\ {\isasymLongrightarrow}\ gcd{\isacharparenleft}m{\isacharcomma}\ n{\isacharparenright}\ {\isacharequal}\ gcd{\isacharparenleft}n{\isacharcomma}\ m\ mod\ n{\isacharparenright}{\isachardoublequoteclose}\isanewline
17056
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   130
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   131
\isadelimproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   132
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   133
\endisadelimproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   134
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   135
\isatagproof
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   136
\isacommand{apply}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   137
{\isacharparenleft}simp{\isacharparenright}\isanewline
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   138
\isacommand{done}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   139
%
17056
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   140
\endisatagproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   141
{\isafoldproof}%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   142
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   143
\isadelimproof
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   144
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   145
\endisadelimproof
11866
fbd097aec213 updated;
wenzelm
parents: 11706
diff changeset
   146
%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   147
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   148
\noindent
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11215
diff changeset
   149
Simplification terminates for these proofs because the condition of the \isa{if} simplifies to \isa{True} or \isa{False}.
10795
9e888d60d3e5 minor edits to Chapters 1-3
paulson
parents: 10187
diff changeset
   150
Now we can disable the original simplification rule:%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   151
\end{isamarkuptext}%
17175
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   152
\isamarkuptrue%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   153
\isacommand{declare}\isamarkupfalse%
1eced27ee0e1 updated;
wenzelm
parents: 17056
diff changeset
   154
\ gcd{\isachardot}simps\ {\isacharbrackleft}simp\ del{\isacharbrackright}\isanewline
17056
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   155
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   156
\isadelimtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   157
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   158
\endisadelimtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   159
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   160
\isatagtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   161
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   162
\endisatagtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   163
{\isafoldtheory}%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   164
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   165
\isadelimtheory
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   166
%
05fc32a23b8b updated;
wenzelm
parents: 16797
diff changeset
   167
\endisadelimtheory
9722
a5f86aed785b *** empty log message ***
nipkow
parents: 9721
diff changeset
   168
\end{isabellebody}%
9145
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   169
%%% Local Variables:
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   170
%%% mode: latex
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   171
%%% TeX-master: "root"
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   172
%%% End: