doc-src/IsarRef/isar-ref.tex
author wenzelm
Mon, 11 Dec 2000 20:08:19 +0100
changeset 10639 f902346264e9
parent 10240 9ac0fe356ea7
child 10685 8cb1d80f10de
permissions -rw-r--r--
harpoons;
wenzelm@7046
     1
wenzelm@7046
     2
%% $Id$
wenzelm@7046
     3
wenzelm@7836
     4
\documentclass[12pt,a4paper,fleqn]{report}
wenzelm@9695
     5
\usepackage{latexsym,graphicx,../iman,../extra,../ttbox,../proof,../rail,../railsetup,../isar,../pdfsetup}
wenzelm@7046
     6
wenzelm@7046
     7
\title{\includegraphics[scale=0.5]{isabelle_isar} \\[4ex] The Isabelle/Isar Reference Manual}
wenzelm@7050
     8
\author{\emph{Markus Wenzel} \\ TU M\"unchen}
wenzelm@7046
     9
wenzelm@7050
    10
\makeindex
wenzelm@7050
    11
wenzelm@9658
    12
\newcommand{\isastyle}{\small\tt\slshape}
wenzelm@9658
    13
\newcommand{\isa}[1]{\emph{\isastyle #1}}
wenzelm@10208
    14
\newcommand{\isamath}[1]{\emph{$#1$}}
wenzelm@10208
    15
\newcommand{\isasymColon}{\isamath{\mathrel{::}}}
wenzelm@10208
    16
\newcommand{\isasymRightarrow}{\isamath{\Rightarrow}}
wenzelm@10639
    17
\newcommand{\isasymleftharpoondown}{\isamath{\leftharpoondown}}
wenzelm@10639
    18
\newcommand{\isasymrightharpoonup}{\isamath{\rightharpoonup}}
wenzelm@10639
    19
\newcommand{\isasymrightleftharpoons}{\isamath{\rightleftharpoons}}
wenzelm@9204
    20
wenzelm@9204
    21
\railterm{percent,ppercent,underscore,lbrace,rbrace,atsign}
wenzelm@7167
    22
\railterm{ident,longident,symident,var,textvar,typefree,typevar,nat,string,verbatim,keyword}
wenzelm@8596
    23
\railterm{name,nameref,text,type,term,prop,atom}
wenzelm@7134
    24
wenzelm@8594
    25
\railalias{ident}{\railtoken{ident}}
wenzelm@8594
    26
\railalias{longident}{\railtoken{longident}}
wenzelm@8594
    27
\railalias{symident}{\railtoken{symident}}
wenzelm@8594
    28
\railalias{var}{\railtoken{var}}
wenzelm@8594
    29
\railalias{textvar}{\railtoken{textvar}}
wenzelm@8594
    30
\railalias{typefree}{\railtoken{typefree}}
wenzelm@8594
    31
\railalias{typevar}{\railtoken{typevar}}
wenzelm@8594
    32
\railalias{nat}{\railtoken{nat}}
wenzelm@8594
    33
\railalias{string}{\railtoken{string}}
wenzelm@8594
    34
\railalias{verbatim}{\railtoken{verbatim}}
wenzelm@8594
    35
\railalias{keyword}{\railtoken{keyword}}
wenzelm@8594
    36
wenzelm@7134
    37
\railalias{name}{\railqtoken{name}}
wenzelm@7134
    38
\railalias{nameref}{\railqtoken{nameref}}
wenzelm@7134
    39
\railalias{text}{\railqtoken{text}}
wenzelm@7134
    40
\railalias{type}{\railqtoken{type}}
wenzelm@7134
    41
\railalias{term}{\railqtoken{term}}
wenzelm@7134
    42
\railalias{prop}{\railqtoken{prop}}
wenzelm@7134
    43
\railalias{atom}{\railqtoken{atom}}
wenzelm@7134
    44
wenzelm@7895
    45
\newcommand{\drv}{\mathrel{\vdash}}
wenzelm@7895
    46
\newcommand{\edrv}{\mathop{\drv}\nolimits}
wenzelm@7974
    47
\newcommand{\Or}{\mathrel{\;|\;}}
wenzelm@7895
    48
wenzelm@7046
    49
wenzelm@7046
    50
\setcounter{secnumdepth}{2} \setcounter{tocdepth}{2}
wenzelm@7046
    51
wenzelm@7046
    52
\pagestyle{headings}
wenzelm@7046
    53
\sloppy
wenzelm@7046
    54
\binperiod     %%%treat . like a binary operator
wenzelm@7046
    55
wenzelm@7134
    56
\renewcommand{\phi}{\varphi}
wenzelm@7046
    57
wenzelm@10240
    58
%\includeonly{}
wenzelm@7895
    59
wenzelm@7046
    60
wenzelm@7046
    61
\begin{document}
wenzelm@7046
    62
wenzelm@7046
    63
\underscoreoff
wenzelm@7046
    64
wenzelm@7046
    65
\maketitle 
wenzelm@7046
    66
wenzelm@7046
    67
\begin{abstract}
wenzelm@7167
    68
  \emph{Intelligible semi-automated reasoning} (\emph{Isar}) is a generic
wenzelm@7167
    69
  approach to readable formal proof documents.  It sets out to bridge the
wenzelm@7167
    70
  semantic gap between any internal notions of proof based on primitive
wenzelm@7167
    71
  inferences and tactics, and an appropriate level of abstraction for
wenzelm@7167
    72
  user-level work.  The Isar formal proof language has been designed to
wenzelm@7167
    73
  satisfy quite contradictory requirements, being both ``declarative'' and
wenzelm@7167
    74
  immediately ``executable'', by virtue of the \emph{Isar/VM} interpreter.
wenzelm@7167
    75
  
wenzelm@10160
    76
  The Isabelle/Isar system provides an interpreter for the Isar formal proof
wenzelm@10160
    77
  language.  The input may consist either of proper document constructors, or
wenzelm@10160
    78
  improper auxiliary commands (for diagnostics, exploration etc.).  Proof
wenzelm@10160
    79
  texts consisting of proper elements only admit a purely static reading, thus
wenzelm@10160
    80
  being intelligible later without requiring dynamic replay that is so typical
wenzelm@10160
    81
  for traditional proof scripts.  Any of the Isabelle/Isar commands may be
wenzelm@10160
    82
  executed in single-steps, so basically the interpreter has a proof text
wenzelm@10160
    83
  debugger already built-in.
wenzelm@7167
    84
  
wenzelm@8509
    85
  Employing the Isar instantiation of \emph{Proof~General}, a generic Emacs
wenzelm@8509
    86
  interface for interactive proof assistants, we arrive at a reasonable
wenzelm@8509
    87
  environment for \emph{live document editing}.  Thus proof texts may be
wenzelm@8547
    88
  developed incrementally by issuing proof commands, including forward and
wenzelm@8547
    89
  backward tracing of partial documents; intermediate states may be inspected
wenzelm@8547
    90
  by diagnostic commands.
wenzelm@7167
    91
  
wenzelm@7335
    92
  The Isar subsystem is tightly integrated into the Isabelle/Pure meta-logic
wenzelm@7335
    93
  implementation.  Theories, theorems, proof procedures etc.\ may be used
wenzelm@7895
    94
  interchangeably between classic Isabelle proof scripts and Isabelle/Isar
wenzelm@10160
    95
  documents.  Even more, Isar provides a set of emulation commands and methods
wenzelm@10160
    96
  for simulating traditional tactic scripts within new-style theory documents.
wenzelm@10160
    97
  
wenzelm@10160
    98
  The Isar framework is as generic as Isabelle, able to support a wide range
wenzelm@10160
    99
  of object-logics.  Currently, the end-user working environment is most
wenzelm@10160
   100
  complete for Isabelle/HOL.
wenzelm@7046
   101
\end{abstract}
wenzelm@7046
   102
wenzelm@7046
   103
\pagenumbering{roman} \tableofcontents \clearfirst
wenzelm@7046
   104
wenzelm@7046
   105
%FIXME
wenzelm@9600
   106
\nocite{Aspinall:2000:eProof}
wenzelm@9600
   107
\nocite{Bauer-Wenzel:2000:HB}
wenzelm@9600
   108
\nocite{Harrison:1996:MizarHOL}
wenzelm@9600
   109
\nocite{Muzalewski:Mizar}
wenzelm@7046
   110
\nocite{Rudnicki:1992:MizarOverview}
wenzelm@7046
   111
\nocite{Rudnicki:1992:MizarOverview}
wenzelm@7046
   112
\nocite{Syme:1997:DECLARE}
wenzelm@7046
   113
\nocite{Syme:1998:thesis}
wenzelm@7046
   114
\nocite{Syme:1999:TPHOL}
wenzelm@9600
   115
\nocite{Trybulec:1993:MizarFeatures}
wenzelm@9600
   116
\nocite{Wiedijk:1999:Mizar}
wenzelm@9600
   117
\nocite{Wiedijk:2000:MV}
wenzelm@7988
   118
\nocite{Zammit:1999:TPHOL}
wenzelm@7046
   119
wenzelm@7046
   120
\include{intro}
wenzelm@7046
   121
\include{basics}
wenzelm@7046
   122
\include{syntax}
wenzelm@7046
   123
\include{pure}
wenzelm@7135
   124
\include{generic}
wenzelm@7046
   125
\include{hol}
wenzelm@7046
   126
wenzelm@7895
   127
\appendix
wenzelm@7895
   128
\include{refcard}
wenzelm@9600
   129
\include{conversion}
wenzelm@7895
   130
wenzelm@7046
   131
\begingroup
wenzelm@7046
   132
  \bibliographystyle{plain} \small\raggedright\frenchspacing
wenzelm@7046
   133
  \bibliography{../manual}
wenzelm@7046
   134
\endgroup
wenzelm@7046
   135
wenzelm@8828
   136
\printindex
wenzelm@7046
   137
wenzelm@7046
   138
\end{document}