NEWS
author wenzelm
Fri, 25 Jul 1997 13:20:12 +0200
changeset 3579 8bd9b4b3b61d
parent 3570 d3662f90c453
child 3580 04c6ae944b5e
permissions -rw-r--r--
*** empty log message ***
wenzelm@2553
     1
wenzelm@2553
     2
Isabelle NEWS -- history of user-visible changes
wenzelm@2553
     3
================================================
wenzelm@2553
     4
wenzelm@3454
     5
New in Isabelle???? (DATE ????)
wenzelm@3454
     6
-------------------------------
wenzelm@3454
     7
paulson@3570
     8
* HOL/Lists: the function "set_of_list" has been renamed "set"
paulson@3570
     9
wenzelm@3454
    10
* removed old README and Makefiles;
wenzelm@3454
    11
wenzelm@3511
    12
* removed obsolete init_pps and init_database;
wenzelm@3511
    13
wenzelm@3579
    14
* defs may now be conditional; improved rewrite_goals_tac to handle
wenzelm@3579
    15
conditional equations;
wenzelm@3535
    16
wenzelm@3535
    17
* improved output of warnings / errors;
wenzelm@3535
    18
wenzelm@3579
    19
* deleted the obsolete tactical STATE, which was declared by:
wenzelm@3567
    20
    fun STATE tacfun st = tacfun st st;
wenzelm@3567
    21
wenzelm@3579
    22
* added simplification meta rules:
wenzelm@3567
    23
    (asm_)(full_)simplify: simpset -> thm -> thm;
paulson@3561
    24
wenzelm@3579
    25
* simplifier.ML no longer part of Pure -- has to be loaded by object
wenzelm@3579
    26
logics (again);
wenzelm@3579
    27
wenzelm@3579
    28
* added prems argument to simplification procedures;
wenzelm@3579
    29
wenzelm@3579
    30
wenzelm@3579
    31
wenzelm@3006
    32
New in Isabelle94-8 (May 1997)
wenzelm@3006
    33
------------------------------
wenzelm@2654
    34
paulson@3002
    35
*** General Changes ***
paulson@3002
    36
paulson@3002
    37
* new utilities to build / run / maintain Isabelle etc. (in parts
paulson@3002
    38
still somewhat experimental); old Makefiles etc. still functional;
wenzelm@2971
    39
wenzelm@3205
    40
* new 'Isabelle System Manual';
wenzelm@3205
    41
wenzelm@2825
    42
* INSTALL text, together with ./configure and ./build scripts;
wenzelm@2773
    43
wenzelm@3006
    44
* reimplemented type inference for greater efficiency, better error
wenzelm@3006
    45
messages and clean internal interface;
paulson@3002
    46
paulson@3002
    47
* prlim command for dealing with lots of subgoals (an easier way of
paulson@3002
    48
setting goals_limit);
paulson@3002
    49
wenzelm@3006
    50
wenzelm@3006
    51
*** Syntax ***
paulson@3002
    52
wenzelm@3116
    53
* supports alternative (named) syntax tables (parser and pretty
wenzelm@3116
    54
printer); internal interface is provided by add_modesyntax(_i);
wenzelm@3116
    55
paulson@3002
    56
* Pure, FOL, ZF, HOL, HOLCF now support symbolic input and output; to
paulson@3002
    57
be used in conjunction with the Isabelle symbol font; uses the
paulson@3002
    58
"symbols" syntax table;
paulson@3002
    59
wenzelm@2705
    60
* added token_translation interface (may translate name tokens in
wenzelm@2756
    61
arbitrary ways, dependent on their type (free, bound, tfree, ...) and
wenzelm@3116
    62
the current print_mode); IMPORTANT: user print translation functions
wenzelm@3116
    63
are responsible for marking newly introduced bounds
wenzelm@3116
    64
(Syntax.mark_boundT);
wenzelm@2705
    65
wenzelm@2730
    66
* token translations for modes "xterm" and "xterm_color" that display
wenzelm@3006
    67
names in bold, underline etc. or colors (which requires a color
wenzelm@3006
    68
version of xterm);
wenzelm@2730
    69
paulson@3002
    70
* infixes may now be declared with names independent of their syntax;
paulson@3002
    71
paulson@3002
    72
* added typed_print_translation (like print_translation, but may
paulson@3002
    73
access type of constant);
paulson@3002
    74
wenzelm@3006
    75
paulson@3002
    76
*** Classical Reasoner ***
paulson@3002
    77
paulson@3002
    78
Blast_tac: a new tactic!  It is often more powerful than fast_tac, but has
paulson@3002
    79
some limitations.  Blast_tac...
paulson@3002
    80
  + ignores addss, addbefore, addafter; this restriction is intrinsic
paulson@3002
    81
  + ignores elimination rules that don't have the correct format
paulson@3002
    82
	(the conclusion MUST be a formula variable)
paulson@3002
    83
  + ignores types, which can make HOL proofs fail
paulson@3002
    84
  + rules must not require higher-order unification, e.g. apply_type in ZF
paulson@3002
    85
    [message "Function Var's argument not a bound variable" relates to this]
paulson@3002
    86
  + its proof strategy is more general but can actually be slower
paulson@3002
    87
wenzelm@3107
    88
* substitution with equality assumptions no longer permutes other
wenzelm@3107
    89
assumptions;
paulson@3002
    90
paulson@3002
    91
* minor changes in semantics of addafter (now called addaltern); renamed
paulson@3002
    92
setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper
wenzelm@3107
    93
(and access functions for it);
paulson@3002
    94
oheimb@3317
    95
* improved combination of classical reasoner and simplifier: 
oheimb@3317
    96
  + functions for handling clasimpsets
oheimb@3317
    97
  + improvement of addss: now the simplifier is called _after_ the
oheimb@3317
    98
    safe steps.
oheimb@3317
    99
  + safe variant of addss called addSss: uses safe simplifications
oheimb@3317
   100
    _during_ the safe steps. It is more complete as it allows multiple 
oheimb@3317
   101
    instantiations of unknowns (e.g. with slow_tac).
wenzelm@3006
   102
paulson@3002
   103
*** Simplifier ***
paulson@3002
   104
wenzelm@3006
   105
* added interface for simplification procedures (functions that
wenzelm@3006
   106
produce *proven* rewrite rules on the fly, depending on current
wenzelm@3006
   107
redex);
wenzelm@3006
   108
wenzelm@3006
   109
* ordering on terms as parameter (used for ordered rewriting);
wenzelm@3006
   110
wenzelm@3107
   111
* new functions delcongs, deleqcongs, and Delcongs. richer rep_ss;
paulson@3002
   112
paulson@3002
   113
* the solver is now split into a safe and an unsafe part.
paulson@3002
   114
This should be invisible for the normal user, except that the
paulson@3002
   115
functions setsolver and addsolver have been renamed to setSolver and
wenzelm@3107
   116
addSolver; added safe_asm_full_simp_tac;
paulson@3002
   117
paulson@3002
   118
paulson@3002
   119
*** HOL ***
paulson@3002
   120
nipkow@3042
   121
* a generic induction tactic `induct_tac' which works for all datatypes and
wenzelm@3107
   122
also for type `nat';
nipkow@3042
   123
nipkow@3316
   124
* a generic case distinction tactic `exhaust_tac' which works for all
nipkow@3316
   125
datatypes and also for type `nat';
nipkow@3316
   126
nipkow@3316
   127
* each datatype comes with a function `size';
nipkow@3316
   128
paulson@3002
   129
* patterns in case expressions allow tuple patterns as arguments to
wenzelm@3107
   130
constructors, for example `case x of [] => ... | (x,y,z)#ps => ...';
paulson@3002
   131
paulson@3002
   132
* primrec now also works with type nat;
paulson@3002
   133
paulson@3338
   134
* recdef: a new declaration form, allows general recursive functions to be
paulson@3338
   135
defined in theory files.  See HOL/ex/Fib, HOL/ex/Primes, HOL/Subst/Unify.
paulson@3338
   136
paulson@3002
   137
* the constant for negation has been renamed from "not" to "Not" to
wenzelm@3107
   138
harmonize with FOL, ZF, LK, etc.;
paulson@3002
   139
wenzelm@3107
   140
* HOL/ex/LFilter theory of a corecursive "filter" functional for
wenzelm@3107
   141
infinite lists;
paulson@3002
   142
wenzelm@3227
   143
* HOL/Modelcheck demonstrates invocation of model checker oracle;
wenzelm@3227
   144
paulson@3002
   145
* HOL/ex/Ring.thy declares cring_simp, which solves equational
paulson@3002
   146
problems in commutative rings, using axiomatic type classes for + and *;
paulson@3002
   147
paulson@3002
   148
* more examples in HOL/MiniML and HOL/Auth;
paulson@3002
   149
paulson@3002
   150
* more default rewrite rules for quantifiers, union/intersection;
paulson@3002
   151
nipkow@3321
   152
* a new constant `arbitrary == @x.False';
nipkow@3321
   153
wenzelm@3107
   154
* HOLCF/IOA replaces old HOL/IOA;
wenzelm@3107
   155
slotosch@2653
   156
* HOLCF changes: derived all rules and arities 
slotosch@2653
   157
  + axiomatic type classes instead of classes 
slotosch@2653
   158
  + typedef instead of faking type definitions
paulson@2747
   159
  + eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc.
wenzelm@2730
   160
  + new axclasses cpo, chfin, flat with flat < chfin < pcpo < cpo < po
slotosch@2653
   161
  + eliminated the types void, one, tr
slotosch@2653
   162
  + use unit lift and bool lift (with translations) instead of one and tr
slotosch@2653
   163
  + eliminated blift from Lift3.thy (use Def instead of blift)
wenzelm@3107
   164
  all eliminated rules are derived as theorems --> no visible changes ;
oheimb@2649
   165
wenzelm@3006
   166
paulson@3002
   167
*** ZF ***
wenzelm@2553
   168
paulson@2865
   169
* ZF now has Fast_tac, Simp_tac and Auto_tac.  Union_iff is a now a default
paulson@2865
   170
rewrite rule; this may affect some proofs.  eq_cs is gone but can be put back
paulson@2865
   171
as ZF_cs addSIs [equalityI];
wenzelm@2553
   172
wenzelm@2554
   173
wenzelm@2732
   174
wenzelm@2553
   175
New in Isabelle94-7 (November 96)
wenzelm@2553
   176
---------------------------------
wenzelm@2553
   177
wenzelm@2553
   178
* allowing negative levels (as offsets) in prlev and choplev;
wenzelm@2553
   179
wenzelm@2554
   180
* super-linear speedup for large simplifications;
wenzelm@2554
   181
wenzelm@2554
   182
* FOL, ZF and HOL now use miniscoping: rewriting pushes
wenzelm@2554
   183
quantifications in as far as possible (COULD MAKE EXISTING PROOFS
wenzelm@2554
   184
FAIL); can suppress it using the command Delsimps (ex_simps @
wenzelm@2554
   185
all_simps); De Morgan laws are also now included, by default;
wenzelm@2554
   186
wenzelm@2554
   187
* improved printing of ==>  :  ~:
wenzelm@2554
   188
wenzelm@2554
   189
* new object-logic "Sequents" adds linear logic, while replacing LK
wenzelm@2554
   190
and Modal (thanks to Sara Kalvala);
wenzelm@2554
   191
wenzelm@2554
   192
* HOL/Auth: correctness proofs for authentication protocols;
wenzelm@2554
   193
wenzelm@2554
   194
* HOL: new auto_tac combines rewriting and classical reasoning (many
wenzelm@2554
   195
examples on HOL/Auth);
wenzelm@2554
   196
wenzelm@2554
   197
* HOL: new command AddIffs for declaring theorems of the form P=Q to
wenzelm@2554
   198
the rewriter and classical reasoner simultaneously;
wenzelm@2554
   199
wenzelm@2554
   200
* function uresult no longer returns theorems in "standard" format;
wenzelm@2554
   201
regain previous version by: val uresult = standard o uresult;
wenzelm@2554
   202
wenzelm@2554
   203
wenzelm@2554
   204
wenzelm@2554
   205
New in Isabelle94-6
wenzelm@2554
   206
-------------------
wenzelm@2554
   207
wenzelm@2554
   208
* oracles -- these establish an interface between Isabelle and trusted
wenzelm@2554
   209
external reasoners, which may deliver results as theorems;
wenzelm@2554
   210
wenzelm@2554
   211
* proof objects (in particular record all uses of oracles);
wenzelm@2554
   212
wenzelm@2554
   213
* Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset;
wenzelm@2554
   214
wenzelm@2554
   215
* "constdefs" section in theory files;
wenzelm@2554
   216
wenzelm@2554
   217
* "primrec" section (HOL) no longer requires names;
wenzelm@2554
   218
wenzelm@2554
   219
* internal type "tactic" now simply "thm -> thm Sequence.seq";
wenzelm@2554
   220
wenzelm@2554
   221
wenzelm@2554
   222
wenzelm@2554
   223
New in Isabelle94-5
wenzelm@2554
   224
-------------------
wenzelm@2554
   225
wenzelm@2554
   226
* reduced space requirements;
wenzelm@2554
   227
wenzelm@2554
   228
* automatic HTML generation from theories;
wenzelm@2554
   229
wenzelm@2554
   230
* theory files no longer require "..." (quotes) around most types;
wenzelm@2554
   231
wenzelm@2554
   232
* new examples, including two proofs of the Church-Rosser theorem;
wenzelm@2554
   233
wenzelm@2554
   234
* non-curried (1994) version of HOL is no longer distributed;
wenzelm@2554
   235
wenzelm@2553
   236
paulson@2557
   237
paulson@2557
   238
New in Isabelle94-4
paulson@2557
   239
-------------------
paulson@2557
   240
paulson@2747
   241
* greatly reduced space requirements;
paulson@2557
   242
paulson@2557
   243
* theory files (.thy) no longer require \...\ escapes at line breaks;
paulson@2557
   244
paulson@2557
   245
* searchable theorem database (see the section "Retrieving theorems" on 
paulson@2557
   246
page 8 of the Reference Manual);
paulson@2557
   247
paulson@2557
   248
* new examples, including Grabczewski's monumental case study of the
paulson@2557
   249
Axiom of Choice;
paulson@2557
   250
paulson@2557
   251
* The previous version of HOL renamed to Old_HOL;
paulson@2557
   252
paulson@2557
   253
* The new version of HOL (previously called CHOL) uses a curried syntax 
paulson@2557
   254
for functions.  Application looks like f a b instead of f(a,b);
paulson@2557
   255
paulson@2557
   256
* Mutually recursive inductive definitions finally work in HOL;
paulson@2557
   257
paulson@2557
   258
* In ZF, pattern-matching on tuples is now available in all abstractions and
paulson@2557
   259
translates to the operator "split";
paulson@2557
   260
paulson@2557
   261
paulson@2557
   262
paulson@2557
   263
New in Isabelle94-3
paulson@2557
   264
-------------------
paulson@2557
   265
paulson@2557
   266
* new infix operator, addss, allowing the classical reasoner to 
paulson@2557
   267
perform simplification at each step of its search.  Example:
paulson@2557
   268
	fast_tac (cs addss ss)
paulson@2557
   269
paulson@2557
   270
* a new logic, CHOL, the same as HOL, but with a curried syntax 
paulson@2557
   271
for functions.  Application looks like f a b instead of f(a,b).  Also pairs 
paulson@2557
   272
look like (a,b) instead of <a,b>;
paulson@2557
   273
paulson@2557
   274
* PLEASE NOTE: CHOL will eventually replace HOL!
paulson@2557
   275
paulson@2557
   276
* In CHOL, pattern-matching on tuples is now available in all abstractions.
paulson@2557
   277
It translates to the operator "split".  A new theory of integers is available;
paulson@2557
   278
paulson@2557
   279
* In ZF, integer numerals now denote two's-complement binary integers.
paulson@2557
   280
Arithmetic operations can be performed by rewriting.  See ZF/ex/Bin.ML;
paulson@2557
   281
paulson@2557
   282
* Many new examples: I/O automata, Church-Rosser theorem, equivalents 
paulson@2557
   283
of the Axiom of Choice;
paulson@2557
   284
paulson@2557
   285
paulson@2557
   286
paulson@2557
   287
New in Isabelle94-2
paulson@2557
   288
-------------------
paulson@2557
   289
paulson@2557
   290
* Significantly faster resolution;  
paulson@2557
   291
paulson@2557
   292
* the different sections in a .thy file can now be mixed and repeated
paulson@2557
   293
freely;
paulson@2557
   294
paulson@2557
   295
* Database of theorems for FOL, HOL and ZF.  New
paulson@2557
   296
commands including qed, qed_goal and bind_thm store theorems in the database.
paulson@2557
   297
paulson@2557
   298
* Simple database queries: return a named theorem (get_thm) or all theorems of
paulson@2557
   299
a given theory (thms_of), or find out what theory a theorem was proved in
paulson@2557
   300
(theory_of_thm);
paulson@2557
   301
paulson@2557
   302
* Bugs fixed in the inductive definition and datatype packages;
paulson@2557
   303
paulson@2557
   304
* The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs
paulson@2557
   305
and HOL_dup_cs obsolete;
paulson@2557
   306
paulson@2557
   307
* Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1
paulson@2557
   308
have been removed;
paulson@2557
   309
paulson@2557
   310
* Simpler definition of function space in ZF;
paulson@2557
   311
paulson@2557
   312
* new results about cardinal and ordinal arithmetic in ZF;
paulson@2557
   313
paulson@2557
   314
* 'subtype' facility in HOL for introducing new types as subsets of existing
paulson@2557
   315
types;
paulson@2557
   316
paulson@2557
   317
wenzelm@2553
   318
$Id$