| author | wenzelm |
| Sat, 02 Dec 2023 15:42:50 +0100 | |
| changeset 79113 | 5109e4b2a292 |
| parent 76649 | 9a6cb5ecc183 |
| permissions | -rw-r--r-- |
| 20948 | 1 |
|
| 30227 | 2 |
\documentclass[12pt,a4paper,fleqn]{article}
|
|
70010
499896e3a7b0
clarified style: allow to search PDF for keywords containing "_";
wenzelm
parents:
65041
diff
changeset
|
3 |
\usepackage[T1]{fontenc}
|
| 73401 | 4 |
\usepackage{graphicx}
|
| 52742 | 5 |
\usepackage{tikz}\usetikzlibrary{shapes}\usetikzlibrary{arrows}
|
| 39693 | 6 |
\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
|
7 |
\usepackage{iman,extra,isar}
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
8 |
\usepackage{isabelle,isabellesym}
|
| 20948 | 9 |
\usepackage{style}
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
10 |
\usepackage{pdfsetup}
|
| 20948 | 11 |
|
12 |
\hyphenation{Isabelle}
|
|
13 |
\hyphenation{Isar}
|
|
14 |
\isadroptag{theory}
|
|
| 28564 | 15 |
|
| 73723 | 16 |
\title{\includegraphics[scale=0.5]{isabelle_logo}
|
| 21222 | 17 |
\\[4ex] Code generation from Isabelle/HOL theories} |
|
76649
9a6cb5ecc183
Added section about code generation for partial functions
nipkow
parents:
73723
diff
changeset
|
18 |
\author{\emph{Florian Haftmann}\\ with contributions by Lukas Bulwahn and Tobias Nipkow}
|
| 20948 | 19 |
|
20 |
\begin{document}
|
|
21 |
||
22 |
\maketitle |
|
23 |
||
24 |
\begin{abstract}
|
|
| 38403 | 25 |
\noindent This tutorial introduces the code generator facilities of Isabelle/HOL. |
26 |
They empower the user to turn HOL specifications into corresponding executable |
|
| 38813 | 27 |
programs in the languages SML, OCaml, Haskell and Scala. |
| 20948 | 28 |
\end{abstract}
|
29 |
||
30 |
\thispagestyle{empty}\clearpage
|
|
31 |
||
32 |
\pagenumbering{roman}
|
|
33 |
\clearfirst |
|
34 |
||
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
35 |
\input{Introduction.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
36 |
\input{Foundations.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
37 |
\input{Refinement.tex}
|
|
76649
9a6cb5ecc183
Added section about code generation for partial functions
nipkow
parents:
73723
diff
changeset
|
38 |
\input{Partial_Functions.tex}
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
39 |
\input{Inductive_Predicate.tex}
|
|
61780
b319013d2d33
moved section according to supposed order of interest
haftmann
parents:
52742
diff
changeset
|
40 |
\input{Evaluation.tex}
|
| 65041 | 41 |
\input{Computations.tex}
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
42 |
\input{Adaptation.tex}
|
|
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
43 |
\input{Further.tex}
|
| 20948 | 44 |
|
45 |
\begingroup |
|
46 |
\bibliographystyle{plain} \small\raggedright\frenchspacing
|
|
|
48951
b9238cbcdd41
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
47 |
\bibliography{manual}
|
| 20948 | 48 |
\endgroup |
49 |
||
50 |
\end{document}
|
|
51 |
||
52 |
||
53 |
%%% Local Variables: |
|
54 |
%%% mode: latex |
|
55 |
%%% TeX-master: t |
|
56 |
%%% End: |