| author | wenzelm |
| Fri, 14 Dec 2012 21:50:21 +0100 | |
| changeset 50539 | 3b68e5760a2d |
| parent 50426 | d2c60ada3ece |
| child 52742 | e7296939fec2 |
| permissions | -rw-r--r-- |
| 20948 | 1 |
|
| 30227 | 2 |
\documentclass[12pt,a4paper,fleqn]{article}
|
| 20948 | 3 |
\usepackage{latexsym,graphicx}
|
| 39693 | 4 |
\usepackage{multirow}
|
|
50426
d2c60ada3ece
eliminated old copy of proof.sty (1995), prefer the one usually included in current latex distributions (2005);
wenzelm
parents:
48985
diff
changeset
|
5 |
\usepackage{iman,extra,isar}
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
6 |
\usepackage{isabelle,isabellesym}
|
| 20948 | 7 |
\usepackage{style}
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
8 |
\usepackage{pdfsetup}
|
| 20948 | 9 |
|
10 |
\hyphenation{Isabelle}
|
|
11 |
\hyphenation{Isar}
|
|
12 |
\isadroptag{theory}
|
|
| 28564 | 13 |
|
| 20948 | 14 |
\title{\includegraphics[scale=0.5]{isabelle_isar}
|
| 21222 | 15 |
\\[4ex] Code generation from Isabelle/HOL theories} |
|
33926
dd017d9db05f
adding subsection about the predicate compiler to the code generator tutorial
bulwahn
parents:
31050
diff
changeset
|
16 |
\author{\emph{Florian Haftmann with contributions from Lukas Bulwahn}}
|
| 20948 | 17 |
|
18 |
\begin{document}
|
|
19 |
||
20 |
\maketitle |
|
21 |
||
22 |
\begin{abstract}
|
|
| 38403 | 23 |
\noindent This tutorial introduces the code generator facilities of Isabelle/HOL. |
24 |
They empower the user to turn HOL specifications into corresponding executable |
|
| 38813 | 25 |
programs in the languages SML, OCaml, Haskell and Scala. |
| 20948 | 26 |
\end{abstract}
|
27 |
||
28 |
\thispagestyle{empty}\clearpage
|
|
29 |
||
30 |
\pagenumbering{roman}
|
|
31 |
\clearfirst |
|
32 |
||
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
33 |
\input{Introduction.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
34 |
\input{Foundations.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
35 |
\input{Refinement.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
36 |
\input{Inductive_Predicate.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
37 |
\input{Adaptation.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
38 |
\input{Evaluation.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
39 |
\input{Further.tex}
|
| 20948 | 40 |
|
41 |
\begingroup |
|
42 |
\bibliographystyle{plain} \small\raggedright\frenchspacing
|
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
43 |
\bibliography{manual}
|
| 20948 | 44 |
\endgroup |
45 |
||
46 |
\end{document}
|
|
47 |
||
48 |
||
49 |
%%% Local Variables: |
|
50 |
%%% mode: latex |
|
51 |
%%% TeX-master: t |
|
52 |
%%% End: |