doc-src/IsarImplementation/implementation.tex
author Walther Neuper <neuper@ist.tugraz.at>
Thu, 12 Aug 2010 15:03:34 +0200
branchisac-from-Isabelle2009-2
changeset 37913 20e3616b2d9c
parent 35031 2ddc7edce107
child 40261 0de42180febe
permissions -rw-r--r--
prepare reactivation of isac-update-Isa09-2
wenzelm@18537
     1
\documentclass[12pt,a4paper,fleqn]{report}
wenzelm@18537
     2
\usepackage{latexsym,graphicx}
wenzelm@18537
     3
\usepackage[refpage]{nomencl}
wenzelm@18537
     4
\usepackage{../iman,../extra,../isar,../proof}
wenzelm@26862
     5
\usepackage[nohyphen,strings]{../underscore}
wenzelm@26906
     6
\usepackage{../isabelle,../isabellesym}
wenzelm@18537
     7
\usepackage{style}
wenzelm@18537
     8
\usepackage{../pdfsetup}
wenzelm@18537
     9
wenzelm@18537
    10
wenzelm@18537
    11
\hyphenation{Isabelle}
wenzelm@18537
    12
\hyphenation{Isar}
wenzelm@18537
    13
wenzelm@18537
    14
\isadroptag{theory}
wenzelm@18537
    15
\title{\includegraphics[scale=0.5]{isabelle_isar}
wenzelm@18537
    16
  \\[4ex] The Isabelle/Isar Implementation}
wenzelm@28780
    17
\author{\emph{Makarius Wenzel}  \\[3ex]
wenzelm@28780
    18
  With Contributions by
wenzelm@28780
    19
  Florian Haftmann
wenzelm@28780
    20
  and Larry Paulson
wenzelm@28780
    21
}
wenzelm@18537
    22
wenzelm@18537
    23
\makeindex
wenzelm@18537
    24
wenzelm@18537
    25
wenzelm@18537
    26
\begin{document}
wenzelm@18537
    27
wenzelm@35031
    28
\maketitle
wenzelm@18537
    29
wenzelm@18537
    30
\begin{abstract}
wenzelm@18537
    31
  We describe the key concepts underlying the Isabelle/Isar
wenzelm@18537
    32
  implementation, including ML references for the most important
wenzelm@20451
    33
  functions.  The aim is to give some insight into the overall system
wenzelm@20488
    34
  architecture, and provide clues on implementing applications within
wenzelm@20488
    35
  this framework.
wenzelm@18537
    36
\end{abstract}
wenzelm@18537
    37
wenzelm@19189
    38
\vspace*{2.5cm}
wenzelm@19189
    39
\begin{quote}
wenzelm@35031
    40
wenzelm@19189
    41
  {\small\em Isabelle was not designed; it evolved.  Not everyone
wenzelm@19189
    42
    likes this idea.  Specification experts rightly abhor
wenzelm@19189
    43
    trial-and-error programming.  They suggest that no one should
wenzelm@20024
    44
    write a program without first writing a complete formal
wenzelm@19189
    45
    specification. But university departments are not software houses.
wenzelm@19189
    46
    Programs like Isabelle are not products: when they have served
wenzelm@19189
    47
    their purpose, they are discarded.}
wenzelm@35031
    48
wenzelm@19189
    49
  Lawrence C. Paulson, ``Isabelle: The Next 700 Theorem Provers''
wenzelm@19189
    50
wenzelm@19189
    51
  \vspace*{1cm}
wenzelm@35031
    52
wenzelm@19189
    53
  {\small\em As I did 20 years ago, I still fervently believe that the
wenzelm@19189
    54
    only way to make software secure, reliable, and fast is to make it
wenzelm@20064
    55
    small.  Fight features.}
wenzelm@35031
    56
wenzelm@19189
    57
  Andrew S. Tanenbaum
wenzelm@19189
    58
wenzelm@35031
    59
  \vspace*{1cm}
wenzelm@35031
    60
wenzelm@35031
    61
  {\small\em One thing that UNIX does not need is more features. It is
wenzelm@35031
    62
    successful in part because it has a small number of good ideas
wenzelm@35031
    63
    that work well together. Merely adding features does not make it
wenzelm@35031
    64
    easier for users to do things --- it just makes the manual
wenzelm@35031
    65
    thicker. The right solution in the right place is always more
wenzelm@35031
    66
    effective than haphazard hacking.}
wenzelm@35031
    67
wenzelm@35031
    68
  Rob Pike and Brian W. Kernighan
wenzelm@35031
    69
wenzelm@19189
    70
\end{quote}
wenzelm@19189
    71
wenzelm@19189
    72
\thispagestyle{empty}\clearpage
wenzelm@19189
    73
wenzelm@20514
    74
\pagenumbering{roman}
wenzelm@20514
    75
\tableofcontents
wenzelm@20514
    76
\listoffigures
wenzelm@20514
    77
\clearfirst
wenzelm@18537
    78
wenzelm@30081
    79
\input{Thy/document/Prelim.tex}
wenzelm@30081
    80
\input{Thy/document/Logic.tex}
wenzelm@30081
    81
\input{Thy/document/Tactic.tex}
wenzelm@30081
    82
\input{Thy/document/Proof.tex}
wenzelm@30124
    83
\input{Thy/document/Syntax.tex}
wenzelm@30081
    84
\input{Thy/document/Isar.tex}
wenzelm@30081
    85
\input{Thy/document/Local_Theory.tex}
wenzelm@30081
    86
\input{Thy/document/Integration.tex}
wenzelm@18537
    87
wenzelm@18537
    88
\appendix
wenzelm@18537
    89
\input{Thy/document/ML.tex}
wenzelm@18537
    90
wenzelm@18537
    91
\begingroup
wenzelm@18537
    92
\tocentry{\bibname}
wenzelm@30114
    93
\bibliographystyle{abbrv} \small\raggedright\frenchspacing
wenzelm@18537
    94
\bibliography{../manual}
wenzelm@18537
    95
\endgroup
wenzelm@18537
    96
wenzelm@18537
    97
\tocentry{\indexname}
wenzelm@18537
    98
\printindex
wenzelm@18537
    99
wenzelm@18537
   100
\end{document}
wenzelm@18537
   101
wenzelm@18537
   102
wenzelm@35031
   103
%%% Local Variables:
wenzelm@18537
   104
%%% mode: latex
wenzelm@18537
   105
%%% TeX-master: t
wenzelm@35031
   106
%%% End: