12610
|
1 |
|
|
2 |
\documentclass[a4wide]{article}
|
|
3 |
\usepackage{isabelle,isabellesym}
|
|
4 |
\usepackage{pdfsetup}
|
|
5 |
|
|
6 |
\urlstyle{rm}
|
|
7 |
\renewcommand{\isachardoublequote}{}
|
|
8 |
|
|
9 |
% pretty printing for the Com language
|
|
10 |
%\newcommand{\CMD}[1]{\isatext{\bf\sffamily#1}}
|
|
11 |
\newcommand{\CMD}[1]{\isatext{\rm\sffamily#1}}
|
|
12 |
\newcommand{\isasymSKIP}{\CMD{skip}}
|
|
13 |
\newcommand{\isasymASSN}{\CMD{:=}}
|
|
14 |
\newcommand{\isasymSEQ}{\CMD{;}}
|
|
15 |
\newcommand{\isasymIF}{\CMD{if}}
|
|
16 |
\newcommand{\isasymTHEN}{\CMD{then}}
|
|
17 |
\newcommand{\isasymELSE}{\CMD{else}}
|
|
18 |
\newcommand{\isasymWHILE}{\CMD{while}}
|
|
19 |
\newcommand{\isasymDO}{\CMD{do}}
|
|
20 |
|
|
21 |
\addtolength{\hoffset}{-1cm}
|
|
22 |
\addtolength{\textwidth}{2cm}
|
|
23 |
|
|
24 |
|
|
25 |
\begin{document}
|
|
26 |
|
|
27 |
\title{IMP --- A {\tt WHILE}-language and two semantics}
|
|
28 |
\author{Heiko Loetzbeyer and Robert Sandner}
|
|
29 |
\maketitle
|
|
30 |
|
|
31 |
\parindent 0pt\parskip 0.5ex
|
|
32 |
|
|
33 |
\begin{abstract}\noindent
|
|
34 |
The formalization of the denotational and operational semantics of a simple
|
|
35 |
while-language together with an equivalence proof between the two semantics.
|
|
36 |
The whole development essentially formalizes/transcribes chapters 2 and 5 of
|
|
37 |
\cite{Winskel}. A much extended version of this development is found in
|
|
38 |
HOL/IMP of the Isabelle distribution.
|
|
39 |
\end{abstract}
|
|
40 |
|
|
41 |
\tableofcontents
|
|
42 |
|
|
43 |
\parindent 0pt\parskip 0.5ex
|
|
44 |
\input{session}
|
|
45 |
|
|
46 |
\bibliographystyle{plain}
|
|
47 |
\bibliography{root}
|
|
48 |
|
|
49 |
\end{document}
|