doc-src/ERRATA.txt
author nipkow
Fri, 18 Nov 1994 13:14:23 +0100
changeset 716 79adbdbda0fb
parent 701 74ee8b9ff9a7
child 718 efca1e0710fb
permissions -rw-r--r--
Chnaged simplifier description (lhss)
lcp@599
     1
$Id$
lcp@599
     2
ERRATA in the book "Isabelle: A Generic Theorem Prover"
lcp@599
     3
by Lawrence C. Paulson (contributions by Tobias Nipkow)
lcp@599
     4
lcp@599
     5
Some of these errors are typographical but most of them are due to continuing
lcp@599
     6
changes to Isabelle.
lcp@456
     7
lcp@491
     8
Thanks to Sara Kalvala, Tobias Nipkow
lcp@491
     9
lcp@456
    10
lcp@599
    11
INTRODUCTION TO ISABELLE
lcp@456
    12
lcp@599
    13
Advanced Methods
lcp@456
    14
lcp@599
    15
page 52, middle: the declaration "types bool,nat" should be "types bool nat"
lcp@456
    16
lcp@599
    17
page 57, bottom: should be addsimps in 
lcp@599
    18
	val add_ss = FOL_ss addrews [add_0, add_Suc]
lcp@507
    19
lcp@507
    20
lcp@599
    21
ISABELLE REFERENCE MANUAL
lcp@507
    22
lcp@599
    23
Introduction
lcp@507
    24
lcp@599
    25
page 67: show_brackets is another flag, controlling display of bracketting
lcp@456
    26
lcp@599
    27
Tactics
lcp@456
    28
lcp@599
    29
page 85: subgoals_tac is another tactic, for multiple calls to subgoal_tac
nipkow@458
    30
lcp@599
    31
Theories
nipkow@479
    32
lcp@599
    33
page 117: the three lines of ML shown can be abbreviated to just
lcp@599
    34
	init_thy_reader();
lcp@491
    35
lcp@599
    36
page 118: extend_theory has been replaced by numerous functions for adding
lcp@599
    37
types, constants, axioms, etc.
lcp@507
    38
lcp@599
    39
Defining Logics
lcp@599
    40
lcp@599
    41
page 127: type constraints ("::") now have a very low priority of 4.
lcp@599
    42
As in ML, they must usually be enclosed in paretheses.
lcp@599
    43
lcp@599
    44
Syntax Transformations
lcp@599
    45
lcp@599
    46
page 145, line -5: delete repeated "the" in "before the the .thy file"
lcp@599
    47
nipkow@716
    48
Simplification
nipkow@716
    49
nipkow@716
    50
page 158, "!": Isabelle now permits more general left-hand sides, so called
nipkow@716
    51
higher-order patterns.
lcp@599
    52
lcp@599
    53
ISABELLE'S OBJECT-LOGICS
lcp@599
    54
lcp@599
    55
Zermelo-Fraenkel Set Theory
lcp@599
    56
lcp@599
    57
page 209: axioms have been renamed:
lcp@599
    58
	union_iff is now Union_iff
lcp@599
    59
	power_set is now Pow_iff
lcp@599
    60
lcp@599
    61
page 215, bottom of figure 17.10: DiffD2 is now  "c : A - B ==> c ~: B"
lcp@599
    62
lcp@599
    63
page 215, bottom: rules mem_anti_sym and mem_anti_refl are now mem_asym and
lcp@599
    64
mem_irrefl
lcp@599
    65
lcp@599
    66
page 222, top: missing braces in qconverse_def (around right-hand side)
lcp@599
    67
and QSigma_def (around <x;y>)
lcp@599
    68
lcp@599
    69
page 223, top: lfp_def, gfp_def have missing braces around the argument of
lcp@599
    70
Inter, Union
lcp@599
    71
lcp@599
    72
page 228: now there is also a theory of cardinal numbers and some
lcp@599
    73
developments involving the Axiom of Choice.
lcp@599
    74
lcp@599
    75
page 229: now there is another examples directory, IMP (a semantics
lcp@599
    76
equivalence proof for an imperative language)
lcp@599
    77
lcp@599
    78
Higher-Order Logic
lcp@599
    79
lcp@599
    80
page 243: Pow is a new constant of type 'a set => 'a set set
lcp@599
    81
lcp@599
    82
page 246: Pow is defined by   Pow(A) == {B. B <= A}
lcp@599
    83
lcp@599
    84
page 248: Pow has the rules
lcp@599
    85
	PowI     A<=B ==> A: Pow(B)
lcp@599
    86
	PowD     A: Pow(B) ==> A<=B
lcp@599
    87
lcp@701
    88
page 251: split now has type [['a,'b] => 'c, 'a * 'b] => 'c
lcp@701
    89
Definition modified accordingly
lcp@701
    90
lcp@701
    91
page 252: sum_case now has type ['a=>'c,'b=>'c, 'a+'b] =>'c
lcp@701
    92
Definition and rules modified accordingly
lcp@701
    93
lcp@701
    94
page 254: nat_case now has type ['a, nat=>'a, nat] =>'a
lcp@701
    95
Definition modified accordingly
lcp@701
    96
lcp@701
    97
page 256,258: list_case now takes the list as its last argument, not the
lcp@701
    98
first.
lcp@701
    99
nipkow@601
   100
page 259: HOL theory files may now include datatype declarations, primitive
lcp@614
   101
recursive function definitions, and (co)inductive definitions.  (These new
lcp@614
   102
sections are available separately as the file ml/HOL-extensions.dvi.gz,
lcp@614
   103
host ftp.cl.cam.ac.uk.)
lcp@599
   104
lcp@599
   105
page 259: now there is another examples directory, IMP (a semantics
lcp@599
   106
equivalence proof for an imperative language)