doc-src/TutorialI/Datatype/document/ABexpr.tex
author wenzelm
Tue, 02 Oct 2001 20:23:33 +0200
changeset 11651 201b3f76c7b7
parent 11458 09a6c44a48ea
child 11866 fbd097aec213
permissions -rw-r--r--
support non-oriented infix;
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: 9792
diff changeset
     3
\def\isabellecontext{ABexpr}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
     4
%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
     5
\begin{isamarkuptext}%
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11309
diff changeset
     6
\index{datatypes!mutually recursive}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
     7
Sometimes it is necessary to define two datatypes that depend on each
2665170f104a Adding generated files
nipkow
parents:
diff changeset
     8
other. This is called \textbf{mutual recursion}. As an example consider a
2665170f104a Adding generated files
nipkow
parents:
diff changeset
     9
language of arithmetic and boolean expressions where
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    10
\begin{itemize}
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    11
\item arithmetic expressions contain boolean expressions because there are
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11309
diff changeset
    12
  conditional expressions like ``if $m<n$ then $n-m$ else $m-n$'',
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    13
  and
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    14
\item boolean expressions contain arithmetic expressions because of
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    15
  comparisons like ``$m<n$''.
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    16
\end{itemize}
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    17
In Isabelle this becomes%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    18
\end{isamarkuptext}%
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    19
\isacommand{datatype}\ {\isacharprime}a\ aexp\ {\isacharequal}\ IF\ \ \ {\isachardoublequote}{\isacharprime}a\ bexp{\isachardoublequote}\ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    20
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ {\isacharbar}\ Sum\ \ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    21
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ {\isacharbar}\ Diff\ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    22
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ {\isacharbar}\ Var\ {\isacharprime}a\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    23
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ {\isacharbar}\ Num\ nat\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    24
\isakeyword{and}\ \ \ \ \ \ {\isacharprime}a\ bexp\ {\isacharequal}\ Less\ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\ {\isachardoublequote}{\isacharprime}a\ aexp{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    25
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ {\isacharbar}\ And\ \ {\isachardoublequote}{\isacharprime}a\ bexp{\isachardoublequote}\ {\isachardoublequote}{\isacharprime}a\ bexp{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    26
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ {\isacharbar}\ Neg\ \ {\isachardoublequote}{\isacharprime}a\ bexp{\isachardoublequote}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    27
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    28
\noindent
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    29
Type \isa{aexp} is similar to \isa{expr} in \S\ref{sec:ExprCompiler},
11309
d666f11ca2d4 minor suggestions by Tanja Vos
paulson
parents: 10971
diff changeset
    30
except that we have added an \isa{IF} constructor,
d666f11ca2d4 minor suggestions by Tanja Vos
paulson
parents: 10971
diff changeset
    31
fixed the values to be of type \isa{nat} and declared the two binary
d666f11ca2d4 minor suggestions by Tanja Vos
paulson
parents: 10971
diff changeset
    32
operations \isa{Sum} and \isa{Diff}.  Boolean
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    33
expressions can be arithmetic comparisons, conjunctions and negations.
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11309
diff changeset
    34
The semantics is given by two evaluation functions:%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    35
\end{isamarkuptext}%
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    36
\isacommand{consts}\ \ evala\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a\ aexp\ {\isasymRightarrow}\ {\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ nat{\isacharparenright}\ {\isasymRightarrow}\ nat{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    37
\ \ \ \ \ \ \ \ evalb\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a\ bexp\ {\isasymRightarrow}\ {\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ nat{\isacharparenright}\ {\isasymRightarrow}\ bool{\isachardoublequote}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    38
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    39
\noindent
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11309
diff changeset
    40
Both take an expression and an environment (a mapping from variables \isa{{\isacharprime}a} to values
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8749
diff changeset
    41
\isa{nat}) and return its arithmetic/boolean
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    42
value. Since the datatypes are mutually recursive, so are functions that
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    43
operate on them. Hence they need to be defined in a single \isacommand{primrec}
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    44
section:%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    45
\end{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    46
\isacommand{primrec}\isanewline
10187
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    47
\ \ {\isachardoublequote}evala\ {\isacharparenleft}IF\ b\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ env\ {\isacharequal}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    48
\ \ \ \ \ {\isacharparenleft}if\ evalb\ b\ env\ then\ evala\ a{\isadigit{1}}\ env\ else\ evala\ a{\isadigit{2}}\ env{\isacharparenright}{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    49
\ \ {\isachardoublequote}evala\ {\isacharparenleft}Sum\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ env\ {\isacharequal}\ evala\ a{\isadigit{1}}\ env\ {\isacharplus}\ evala\ a{\isadigit{2}}\ env{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    50
\ \ {\isachardoublequote}evala\ {\isacharparenleft}Diff\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ env\ {\isacharequal}\ evala\ a{\isadigit{1}}\ env\ {\isacharminus}\ evala\ a{\isadigit{2}}\ env{\isachardoublequote}\isanewline
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    51
\ \ {\isachardoublequote}evala\ {\isacharparenleft}Var\ v{\isacharparenright}\ env\ {\isacharequal}\ env\ v{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    52
\ \ {\isachardoublequote}evala\ {\isacharparenleft}Num\ n{\isacharparenright}\ env\ {\isacharequal}\ n{\isachardoublequote}\isanewline
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    53
\isanewline
10187
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    54
\ \ {\isachardoublequote}evalb\ {\isacharparenleft}Less\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ env\ {\isacharequal}\ {\isacharparenleft}evala\ a{\isadigit{1}}\ env\ {\isacharless}\ evala\ a{\isadigit{2}}\ env{\isacharparenright}{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    55
\ \ {\isachardoublequote}evalb\ {\isacharparenleft}And\ b{\isadigit{1}}\ b{\isadigit{2}}{\isacharparenright}\ env\ {\isacharequal}\ {\isacharparenleft}evalb\ b{\isadigit{1}}\ env\ {\isasymand}\ evalb\ b{\isadigit{2}}\ env{\isacharparenright}{\isachardoublequote}\isanewline
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    56
\ \ {\isachardoublequote}evalb\ {\isacharparenleft}Neg\ b{\isacharparenright}\ env\ {\isacharequal}\ {\isacharparenleft}{\isasymnot}\ evalb\ b\ env{\isacharparenright}{\isachardoublequote}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    57
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    58
\noindent
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    59
In the same fashion we also define two functions that perform substitution:%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    60
\end{isamarkuptext}%
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    61
\isacommand{consts}\ substa\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}b\ aexp{\isacharparenright}\ {\isasymRightarrow}\ {\isacharprime}a\ aexp\ {\isasymRightarrow}\ {\isacharprime}b\ aexp{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    62
\ \ \ \ \ \ \ substb\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}b\ aexp{\isacharparenright}\ {\isasymRightarrow}\ {\isacharprime}a\ bexp\ {\isasymRightarrow}\ {\isacharprime}b\ bexp{\isachardoublequote}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    63
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    64
\noindent
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    65
The first argument is a function mapping variables to expressions, the
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    66
substitution. It is applied to all variables in the second argument. As a
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9722
diff changeset
    67
result, the type of variables in the expression may change from \isa{{\isacharprime}a}
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9722
diff changeset
    68
to \isa{{\isacharprime}b}. Note that there are only arithmetic and no boolean variables.%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    69
\end{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    70
\isacommand{primrec}\isanewline
10187
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    71
\ \ {\isachardoublequote}substa\ s\ {\isacharparenleft}IF\ b\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ {\isacharequal}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    72
\ \ \ \ \ IF\ {\isacharparenleft}substb\ s\ b{\isacharparenright}\ {\isacharparenleft}substa\ s\ a{\isadigit{1}}{\isacharparenright}\ {\isacharparenleft}substa\ s\ a{\isadigit{2}}{\isacharparenright}{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    73
\ \ {\isachardoublequote}substa\ s\ {\isacharparenleft}Sum\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ {\isacharequal}\ Sum\ {\isacharparenleft}substa\ s\ a{\isadigit{1}}{\isacharparenright}\ {\isacharparenleft}substa\ s\ a{\isadigit{2}}{\isacharparenright}{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    74
\ \ {\isachardoublequote}substa\ s\ {\isacharparenleft}Diff\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ {\isacharequal}\ Diff\ {\isacharparenleft}substa\ s\ a{\isadigit{1}}{\isacharparenright}\ {\isacharparenleft}substa\ s\ a{\isadigit{2}}{\isacharparenright}{\isachardoublequote}\isanewline
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    75
\ \ {\isachardoublequote}substa\ s\ {\isacharparenleft}Var\ v{\isacharparenright}\ {\isacharequal}\ s\ v{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    76
\ \ {\isachardoublequote}substa\ s\ {\isacharparenleft}Num\ n{\isacharparenright}\ {\isacharequal}\ Num\ n{\isachardoublequote}\isanewline
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    77
\isanewline
10187
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    78
\ \ {\isachardoublequote}substb\ s\ {\isacharparenleft}Less\ a{\isadigit{1}}\ a{\isadigit{2}}{\isacharparenright}\ {\isacharequal}\ Less\ {\isacharparenleft}substa\ s\ a{\isadigit{1}}{\isacharparenright}\ {\isacharparenleft}substa\ s\ a{\isadigit{2}}{\isacharparenright}{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents: 10171
diff changeset
    79
\ \ {\isachardoublequote}substb\ s\ {\isacharparenleft}And\ b{\isadigit{1}}\ b{\isadigit{2}}{\isacharparenright}\ {\isacharequal}\ And\ {\isacharparenleft}substb\ s\ b{\isadigit{1}}{\isacharparenright}\ {\isacharparenleft}substb\ s\ b{\isadigit{2}}{\isacharparenright}{\isachardoublequote}\isanewline
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    80
\ \ {\isachardoublequote}substb\ s\ {\isacharparenleft}Neg\ b{\isacharparenright}\ {\isacharequal}\ Neg\ {\isacharparenleft}substb\ s\ b{\isacharparenright}{\isachardoublequote}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    81
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    82
Now we can prove a fundamental theorem about the interaction between
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    83
evaluation and substitution: applying a substitution $s$ to an expression $a$
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    84
and evaluating the result in an environment $env$ yields the same result as
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    85
evaluation $a$ in the environment that maps every variable $x$ to the value
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    86
of $s(x)$ under $env$. If you try to prove this separately for arithmetic or
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    87
boolean expressions (by induction), you find that you always need the other
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    88
theorem in the induction step. Therefore you need to state and prove both
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    89
theorems simultaneously:%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    90
\end{isamarkuptext}%
9673
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    91
\isacommand{lemma}\ {\isachardoublequote}evala\ {\isacharparenleft}substa\ s\ a{\isacharparenright}\ env\ {\isacharequal}\ evala\ a\ {\isacharparenleft}{\isasymlambda}x{\isachardot}\ evala\ {\isacharparenleft}s\ x{\isacharparenright}\ env{\isacharparenright}\ {\isasymand}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    92
\ \ \ \ \ \ \ \ evalb\ {\isacharparenleft}substb\ s\ b{\isacharparenright}\ env\ {\isacharequal}\ evalb\ b\ {\isacharparenleft}{\isasymlambda}x{\isachardot}\ evala\ {\isacharparenleft}s\ x{\isacharparenright}\ env{\isacharparenright}{\isachardoublequote}\isanewline
1b2d4f995b13 updated;
wenzelm
parents: 9644
diff changeset
    93
\isacommand{apply}{\isacharparenleft}induct{\isacharunderscore}tac\ a\ \isakeyword{and}\ b{\isacharparenright}%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    94
\begin{isamarkuptxt}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    95
\noindent
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    96
The resulting 8 goals (one for each constructor) are proved in one fell swoop:%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    97
\end{isamarkuptxt}%
10171
59d6633835fa *** empty log message ***
nipkow
parents: 9924
diff changeset
    98
\isacommand{apply}\ simp{\isacharunderscore}all%
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
    99
\begin{isamarkuptext}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   100
In general, given $n$ mutually recursive datatypes $\tau@1$, \dots, $\tau@n$,
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   101
an inductive proof expects a goal of the form
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   102
\[ P@1(x@1)\ \land \dots \land P@n(x@n) \]
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   103
where each variable $x@i$ is of type $\tau@i$. Induction is started by
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9722
diff changeset
   104
\begin{isabelle}
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10187
diff changeset
   105
\isacommand{apply}\isa{{\isacharparenleft}induct{\isacharunderscore}tac} $x@1$ \isacommand{and} \dots\ \isacommand{and} $x@n$\isa{{\isacharparenright}}
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9722
diff changeset
   106
\end{isabelle}
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   107
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   108
\begin{exercise}
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9722
diff changeset
   109
  Define a function \isa{norma} of type \isa{{\isacharprime}a\ aexp\ {\isasymRightarrow}\ {\isacharprime}a\ aexp} that
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   110
  replaces \isa{IF}s with complex boolean conditions by nested
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11309
diff changeset
   111
  \isa{IF}s; it should eliminate the constructors
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11309
diff changeset
   112
  \isa{And} and \isa{Neg}, leaving only \isa{Less}.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11309
diff changeset
   113
  Prove that \isa{norma}
8749
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   114
  preserves the value of an expression and that the result of \isa{norma}
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   115
  is really normal, i.e.\ no more \isa{And}s and \isa{Neg}s occur in
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   116
  it.  ({\em Hint:} proceed as in \S\ref{sec:boolex}).
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   117
\end{exercise}%
2665170f104a Adding generated files
nipkow
parents:
diff changeset
   118
\end{isamarkuptext}%
9722
a5f86aed785b *** empty log message ***
nipkow
parents: 9721
diff changeset
   119
\end{isabellebody}%
9145
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   120
%%% Local Variables:
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   121
%%% mode: latex
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   122
%%% TeX-master: "root"
9f7b8de5bfaf updated;
wenzelm
parents: 8771
diff changeset
   123
%%% End: