README
author lcp
Thu, 28 Oct 1993 17:40:50 +0100
changeset 86 3406bd994306
parent 0 a5a9c433f639
child 93 082f40a66fd3
permissions -rw-r--r--
deletion of obsolete/private files; update of README
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
86
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
     1
		     ISABELLE-93 DISTRIBUTION DIRECTORY
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
------------------------------------------------------------------------------
86
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
     4
ISABELLE-93 IS INCOMPATIBLE WITH EARLIER VERSIONS.  PLEASE CONSULT THE
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
DOCUMENTATION.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
------------------------------------------------------------------------------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
This directory contains the complete Isabelle system.  To build and test the
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
entire system, including all object-logics, use the shell script make-all.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
Pure Isabelle and each of the object-logics can be built separately using the
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
Makefiles in the respective directories; read them for more information.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    12
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    13
				THE MAKEFILES
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    15
The Makefiles can use two different Standard ML compilers: Poly/ML version
86
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    16
2.03 or later (from Abstract Hardware Ltd) and Standard ML of New Jersey
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    17
(Version 0.93 or later).  Poly/ML is a commercial product and costs money,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    18
but it is reliable and its database system is convenient for interactive
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    19
work.  SML of New Jersey requires lots of memory and disc space, but it is
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    20
free and its code sometimes runs faster.  Both compilers are perfectly
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
satisfactory for running Isabelle.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    22
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
The Makefiles and make-all use enviroment variables that you should set
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    24
according to your site configuration.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    25
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    26
ISABELLEBIN is the directory to hold Poly/ML databases or New Jersey ML
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    27
images.  When using Poly/ML, ISABELLEBIN must be an absolute pathname (one
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    28
starting with "/").
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    29
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    30
ML_DBASE is an absolute pathname to the initial Poly/ML database (not
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    31
required for New Jersey ML).
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    32
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    33
ISABELLECOMP is the ML compiler, typically "poly -noDisplay" or "sml".  If
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    34
ISABELLECOMP begins with the letters "poly" then the Makefiles assume that
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    35
it is Poly/ML; if it begins with the letters "sml" then they assume
86
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    36
Standard ML of New Jersey.  
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    37
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    38
If a Poly/ML session fails with the message "Run out of store" then you
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    39
have used up the entire heap.  If your tactic is not in a loop, allocating
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    40
more heap at startup should correct the problem.  For instance, "poly -h
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    41
15000" allocates sufficient heap space to rebuild all Isabelle examples.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    42
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    43
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
			 STRUCTURE OF THIS DIRECTORY
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    45
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    46
The directory Pure containes pure Isabelle, which has no object-logic.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    47
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    48
Other important files include...
86
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    49
  COPYRIGHT   		Copyright notice and Disclaimer of Warranty
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    50
  make-all		shell script for building entire system
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    51
  expandshort		shell script to expand "shortcuts" in files
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    52
  prove_goal.el       	Emacs command to change proof format
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    53
  xlisten		shell script for running Isabelle under X
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    54
  teeinput		shell script to run Isabelle, logging inputs to a file
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    55
  Pure			directory of source files for Pure Isabelle
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    56
  Provers		directory of generic theorem provers
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    57
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    58
xlisten sets up a window running Isabelle, with a separate small "listener"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    59
window, which keeps a log of all input lines.  This log is a useful record
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    60
of a session.  If you are not running X windows, teeinput can still be used at
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    61
least to record (if not to display) the log.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    62
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    63
The following subdirectories contain object-logics:
86
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    64
  FOL 	  Natural deduction First-Order Logic (intuitionistic and classical)
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    65
  FOLP 	  First-Order Logic with Proof terms
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    66
  ZF	  Zermelo-Fraenkel set theory
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    67
  CTT	  Constructive Type Theory
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    68
  HOL	  Classical Higher-Order Logic
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    69
  LK	  Classical first-order sequent calculus
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    70
  Modal	  The modal logics T, S4, S43
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    71
  LCF     Logic for Computable Functions (domain theory)
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    72
  CCL	  Martin Coen's Classical Computational Logic
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
    73
  Cube	  Barendregt's Lambda Cube
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    74
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    75
Object-logics include examples files in subdirectory ex or file ex.ML.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    76
These files can be loaded in batch mode.  The commands can also be
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    77
executed interactively, using the windows on your workstation.  This is a
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    78
good way to get started.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    79
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    80
Each object-logic is built on top of Pure Isabelle, and possibly on top of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    81
another object logic (like FOL or LK).  A database or binary called Pure is
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    82
first created, then the object-logic is loaded on top.  Poly/ML extends
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    83
Pure using its "make_database" operation.  Standard ML of New Jersey starts
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    84
with the Pure core image and loads the object-logic's ROOT.ML.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    85
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    86
		HOW TO GET A STANDARD ML COMPILER
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    87
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    88
To obtain Poly/ML, contact Mike Crawley <mjc@ahl.co.uk> at Abstract
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    89
Hardware Ltd, The Howell Building, Brunel University, Uxbridge UB8 3PH,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    90
England.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    91
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    92
To obtain Standard ML of New Jersey, contact David MacQueen
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    93
<dbm@com.att.research> at AT&T Bell Laboratories, 600 Mountain Avenue,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    94
Murray Hill, NJ 07974, USA.  This compiler is available by FTP.  Connect to
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    95
research.att.com; login as anonymous with your userid as password; set
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    96
binary mode; transfer files from the directory dist/ml.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    98
------------------------------------------------------------------------------
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    99
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   100
Please report any problems you encounter.  While we will try to be helpful,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   101
we can accept no responsibility for the deficiences of Isabelle amd their
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   102
consequences.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   103
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   104
Lawrence C Paulson		E-mail: lcp@cl.cam.ac.uk
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   105
Computer Laboratory 		Phone: +44-223-334600
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   106
University of Cambridge 	Fax:   +44-223-334748 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   107
Pembroke Street 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   108
Cambridge CB2 3QG 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   109
England
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   110
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   111
Tobias Nipkow			E-mail: nipkow@informatik.tu-muenchen.de
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   112
Institut fuer Informatik	Phone: +49-89-2105-2690
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   113
T. U. Muenchen			Fax:   +49-89-2105-8183
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   114
Postfach 20 24 20
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   115
D-8000 Muenchen 2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   116
Germany
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   117
86
3406bd994306 deletion of obsolete/private files; update of README
lcp
parents: 0
diff changeset
   118
Last updated 28 October 1993