11376
|
1 |
\documentclass[11pt,a4paper]{article}
|
|
2 |
\usepackage{latexsym,isabelle,isabellesym,latexsym,pdfsetup}
|
|
3 |
|
|
4 |
\urlstyle{tt}
|
|
5 |
\pagestyle{myheadings}
|
|
6 |
|
|
7 |
\addtolength{\hoffset}{-1,5cm}
|
|
8 |
\addtolength{\textwidth}{4cm}
|
|
9 |
\addtolength{\voffset}{-2cm}
|
|
10 |
\addtolength{\textheight}{4cm}
|
|
11 |
|
|
12 |
%subsection instead of section to make the toc readable
|
|
13 |
\renewcommand{\thesubsection}{\arabic{subsection}}
|
|
14 |
\renewcommand{\isamarkupheader}[1]{\newpage\markright{Theory~\isabellecontext}\subsection{#1}}
|
|
15 |
\renewcommand{\isamarkupsection}[1]{\subsubsection{#1}}
|
|
16 |
|
|
17 |
%remove spaces from the isabelle environment (trivlist makes them too large)
|
|
18 |
\renewenvironment{isabelle}
|
|
19 |
{\begin{isabellebody}}
|
|
20 |
{\end{isabellebody}}
|
|
21 |
|
|
22 |
\newcommand{\nJava}{\it NanoJava}
|
|
23 |
|
|
24 |
%remove clutter from the toc
|
|
25 |
\setcounter{secnumdepth}{3}
|
|
26 |
\setcounter{tocdepth}{2}
|
|
27 |
|
|
28 |
\begin{document}
|
|
29 |
|
|
30 |
\title{\nJava}
|
|
31 |
\author{David von Oheimb \\ Tobias Nipkow}
|
|
32 |
\maketitle
|
|
33 |
|
|
34 |
\begin{abstract}\noindent
|
|
35 |
These theories define {\nJava}, a very small fragment of the programming
|
|
36 |
language Java (with essentially just classes) derived from the one given
|
|
37 |
in \cite{NipkowOP00}.
|
|
38 |
For {\nJava}, an operational semantics is given as well as a Hoare logic,
|
11477
|
39 |
which is proved both sound and (relatively) complete.
|
|
40 |
The Hoare logic supports side-effecting expressions and
|
11376
|
41 |
implements a new approach for handling auxiliary variables.
|
|
42 |
A more complex Hoare logic covering a much larger subset of Java is described
|
|
43 |
in \cite{DvO-CPE01}.\\
|
|
44 |
See also the homepage of project Bali at \url{http://isabelle.in.tum.de/Bali/}.
|
|
45 |
\end{abstract}
|
|
46 |
|
|
47 |
\tableofcontents
|
|
48 |
\parindent 0pt \parskip 0.5ex
|
|
49 |
|
|
50 |
\newpage
|
|
51 |
\input{session}
|
|
52 |
|
|
53 |
\newpage
|
|
54 |
\nocite{*}
|
|
55 |
\bibliographystyle{abbrv}
|
|
56 |
\bibliography{root}
|
|
57 |
|
|
58 |
\end{document}
|