NEWS
author oheimb
Fri, 11 Dec 1998 18:57:00 +0100
changeset 6028 1bfd52528bde
parent 6014 bfd4923b0957
child 6057 395ea7617554
permissions -rw-r--r--
*** empty log message ***
     1 
     2 Isabelle NEWS -- history user-relevant changes
     3 ==============================================
     4 
     5 New in this Isabelle version
     6 ----------------------------
     7 
     8 *** Overview of INCOMPATIBILITIES (see below for more details) ***
     9 
    10 * HOL: Removed the obsolete syntax "Compl A"; use -A for set complement
    11 
    12 *** General ***
    13 
    14 * in locales, the "assumes" and "defines" parts may be omitted if empty;
    15 
    16 * new print_mode "xsymbols" for extended symbol support 
    17   (e.g. genuiely long arrows)
    18 
    19 
    20 *** Internal programming interfaces ***
    21 
    22 * tuned current_goals_markers semantics: begin / end goal avoids
    23 printing empty lines;
    24 
    25 * removed prs and prs_fn hook, which was broken because it did not
    26 include \n in its semantics, forcing writeln to add one
    27 uncoditionally; replaced prs_fn by writeln_fn; consider std_output:
    28 string -> unit if you really want to output text without newline;
    29 
    30 
    31 New in Isabelle98-1 (October 1998)
    32 ----------------------------------
    33 
    34 *** Overview of INCOMPATIBILITIES (see below for more details) ***
    35 
    36 * several changes of automated proof tools;
    37 
    38 * HOL: major changes to the inductive and datatype packages, including
    39 some minor incompatibilities of theory syntax;
    40 
    41 * HOL: renamed r^-1 to 'converse' from 'inverse'; 'inj_onto' is now
    42 called `inj_on';
    43 
    44 * HOL: removed duplicate thms in Arith:
    45   less_imp_add_less  should be replaced by  trans_less_add1
    46   le_imp_add_le      should be replaced by  trans_le_add1
    47 
    48 * HOL: unary minus is now overloaded (new type constraints may be
    49 required);
    50 
    51 * HOL and ZF: unary minus for integers is now #- instead of #~.  In
    52 ZF, expressions such as n#-1 must be changed to n#- 1, since #-1 is
    53 now taken as an integer constant.
    54 
    55 * Pure: ML function 'theory_of' renamed to 'theory';
    56 
    57 
    58 *** Proof tools ***
    59 
    60 * Simplifier:
    61   1. Asm_full_simp_tac is now more aggressive.
    62      1. It will sometimes reorient premises if that increases their power to
    63         simplify.
    64      2. It does no longer proceed strictly from left to right but may also
    65         rotate premises to achieve further simplification.
    66      For compatibility reasons there is now Asm_lr_simp_tac which is like the
    67      old Asm_full_simp_tac in that it does not rotate premises.
    68   2. The simplifier now knows a little bit about nat-arithmetic.
    69 
    70 * Classical reasoner: wrapper mechanism for the classical reasoner now
    71 allows for selected deletion of wrappers, by introduction of names for
    72 wrapper functionals.  This implies that addbefore, addSbefore,
    73 addaltern, and addSaltern now take a pair (name, tactic) as argument,
    74 and that adding two tactics with the same name overwrites the first
    75 one (emitting a warning).
    76   type wrapper = (int -> tactic) -> (int -> tactic)
    77   setWrapper, setSWrapper, compWrapper and compSWrapper are replaced by
    78   addWrapper, addSWrapper: claset * (string * wrapper) -> claset
    79   delWrapper, delSWrapper: claset *  string            -> claset
    80   getWrapper is renamed to appWrappers, getSWrapper to appSWrappers;
    81 
    82 * Classical reasoner: addbefore/addSbefore now have APPEND/ORELSE
    83 semantics; addbefore now affects only the unsafe part of step_tac
    84 etc.; this affects addss/auto_tac/force_tac, so EXISTING PROOFS MAY
    85 FAIL, but proofs should be fixable easily, e.g. by replacing Auto_tac
    86 by Force_tac;
    87 
    88 * Classical reasoner: setwrapper to setWrapper and compwrapper to
    89 compWrapper; added safe wrapper (and access functions for it);
    90 
    91 * HOL/split_all_tac is now much faster and fails if there is nothing
    92 to split.  Some EXISTING PROOFS MAY REQUIRE ADAPTION because the order
    93 and the names of the automatically generated variables have changed.
    94 split_all_tac has moved within claset() from unsafe wrappers to safe
    95 wrappers, which means that !!-bound variables are split much more
    96 aggressively, and safe_tac and clarify_tac now split such variables.
    97 If this splitting is not appropriate, use delSWrapper "split_all_tac".
    98 Note: the same holds for record_split_tac, which does the job of
    99 split_all_tac for record fields.
   100 
   101 * HOL/Simplifier: Rewrite rules for case distinctions can now be added
   102 permanently to the default simpset using Addsplits just like
   103 Addsimps. They can be removed via Delsplits just like
   104 Delsimps. Lower-case versions are also available.
   105 
   106 * HOL/Simplifier: The rule split_if is now part of the default
   107 simpset. This means that the simplifier will eliminate all occurrences
   108 of if-then-else in the conclusion of a goal. To prevent this, you can
   109 either remove split_if completely from the default simpset by
   110 `Delsplits [split_if]' or remove it in a specific call of the
   111 simplifier using `... delsplits [split_if]'.  You can also add/delete
   112 other case splitting rules to/from the default simpset: every datatype
   113 generates suitable rules `split_t_case' and `split_t_case_asm' (where
   114 t is the name of the datatype).
   115 
   116 * Classical reasoner / Simplifier combination: new force_tac (and
   117 derivatives Force_tac, force) combines rewriting and classical
   118 reasoning (and whatever other tools) similarly to auto_tac, but is
   119 aimed to solve the given subgoal completely.
   120 
   121 
   122 *** General ***
   123 
   124 * new top-level commands `Goal' and `Goalw' that improve upon `goal'
   125 and `goalw': the theory is no longer needed as an explicit argument -
   126 the current theory context is used; assumptions are no longer returned
   127 at the ML-level unless one of them starts with ==> or !!; it is
   128 recommended to convert to these new commands using isatool fixgoal
   129 (backup your sources first!);
   130 
   131 * new top-level commands 'thm' and 'thms' for retrieving theorems from
   132 the current theory context, and 'theory' to lookup stored theories;
   133 
   134 * new theory section 'locale' for declaring constants, assumptions and
   135 definitions that have local scope;
   136 
   137 * new theory section 'nonterminals' for purely syntactic types;
   138 
   139 * new theory section 'setup' for generic ML setup functions
   140 (e.g. package initialization);
   141 
   142 * the distribution now includes Isabelle icons: see
   143 lib/logo/isabelle-{small,tiny}.xpm;
   144 
   145 * isatool install - install binaries with absolute references to
   146 ISABELLE_HOME/bin;
   147 
   148 * isatool logo -- create instances of the Isabelle logo (as EPS);
   149 
   150 * print mode 'emacs' reserved for Isamode;
   151 
   152 * support multiple print (ast) translations per constant name;
   153 
   154 
   155 *** HOL ***
   156 
   157 * there is now a tutorial on Isabelle/HOL (do 'isatool doc tutorial');
   158 
   159 * HOL/inductive package reorganized and improved: now supports mutual
   160 definitions such as
   161 
   162   inductive EVEN ODD
   163     intrs
   164       null "0 : EVEN"
   165       oddI "n : EVEN ==> Suc n : ODD"
   166       evenI "n : ODD ==> Suc n : EVEN"
   167 
   168 new theorem list "elims" contains an elimination rule for each of the
   169 recursive sets; inductive definitions now handle disjunctive premises
   170 correctly (also ZF);
   171 
   172 INCOMPATIBILITIES: requires Inductive as an ancestor; component
   173 "mutual_induct" no longer exists - the induction rule is always
   174 contained in "induct";
   175 
   176 
   177 * HOL/datatype package re-implemented and greatly improved: now
   178 supports mutually recursive datatypes such as
   179 
   180   datatype
   181     'a aexp = IF_THEN_ELSE ('a bexp) ('a aexp) ('a aexp)
   182             | SUM ('a aexp) ('a aexp)
   183             | DIFF ('a aexp) ('a aexp)
   184             | NUM 'a
   185   and
   186     'a bexp = LESS ('a aexp) ('a aexp)
   187             | AND ('a bexp) ('a bexp)
   188             | OR ('a bexp) ('a bexp)
   189 
   190 as well as indirectly recursive datatypes such as
   191 
   192   datatype
   193     ('a, 'b) term = Var 'a
   194                   | App 'b ((('a, 'b) term) list)
   195 
   196 The new tactic  mutual_induct_tac [<var_1>, ..., <var_n>] i  performs
   197 induction on mutually / indirectly recursive datatypes.
   198 
   199 Primrec equations are now stored in theory and can be accessed via
   200 <function_name>.simps.
   201 
   202 INCOMPATIBILITIES:
   203 
   204   - Theories using datatypes must now have theory Datatype as an
   205     ancestor.
   206   - The specific <typename>.induct_tac no longer exists - use the
   207     generic induct_tac instead.
   208   - natE has been renamed to nat.exhaust - use exhaust_tac
   209     instead of res_inst_tac ... natE. Note that the variable
   210     names in nat.exhaust differ from the names in natE, this
   211     may cause some "fragile" proofs to fail.
   212   - The theorems split_<typename>_case and split_<typename>_case_asm
   213     have been renamed to <typename>.split and <typename>.split_asm.
   214   - Since default sorts of type variables are now handled correctly,
   215     some datatype definitions may have to be annotated with explicit
   216     sort constraints.
   217   - Primrec definitions no longer require function name and type
   218     of recursive argument.
   219 
   220 Consider using isatool fixdatatype to adapt your theories and proof
   221 scripts to the new package (backup your sources first!).
   222 
   223 
   224 * HOL/record package: considerably improved implementation; now
   225 includes concrete syntax for record types, terms, updates; theorems
   226 for surjective pairing and splitting !!-bound record variables; proof
   227 support is as follows:
   228 
   229   1) standard conversions (selectors or updates applied to record
   230 constructor terms) are part of the standard simpset;
   231 
   232   2) inject equations of the form ((x, y) = (x', y')) == x=x' & y=y' are
   233 made part of standard simpset and claset via addIffs;
   234 
   235   3) a tactic for record field splitting (record_split_tac) is part of
   236 the standard claset (addSWrapper);
   237 
   238 To get a better idea about these rules you may retrieve them via
   239 something like 'thms "foo.simps"' or 'thms "foo.iffs"', where "foo" is
   240 the name of your record type.
   241 
   242 The split tactic 3) conceptually simplifies by the following rule:
   243 
   244   "(!!x. PROP ?P x) == (!!a b. PROP ?P (a, b))"
   245 
   246 Thus any record variable that is bound by meta-all will automatically
   247 blow up into some record constructor term, consequently the
   248 simplifications of 1), 2) apply.  Thus force_tac, auto_tac etc. shall
   249 solve record problems automatically.
   250 
   251 
   252 * reorganized the main HOL image: HOL/Integ and String loaded by
   253 default; theory Main includes everything;
   254 
   255 * automatic simplification of integer sums and comparisons, using cancellation;
   256 
   257 * added option_map_eq_Some and not_Some_eq to the default simpset and claset;
   258 
   259 * added disj_not1 = "(~P | Q) = (P --> Q)" to the default simpset;
   260 
   261 * many new identities for unions, intersections, set difference, etc.;
   262 
   263 * expand_if, expand_split, expand_sum_case and expand_nat_case are now
   264 called split_if, split_split, split_sum_case and split_nat_case (to go
   265 with add/delsplits);
   266 
   267 * HOL/Prod introduces simplification procedure unit_eq_proc rewriting
   268 (?x::unit) = (); this is made part of the default simpset, which COULD
   269 MAKE EXISTING PROOFS FAIL under rare circumstances (consider
   270 'Delsimprocs [unit_eq_proc];' as last resort); also note that
   271 unit_abs_eta_conv is added in order to counter the effect of
   272 unit_eq_proc on (%u::unit. f u), replacing it by f rather than by
   273 %u.f();
   274 
   275 * HOL/Fun INCOMPATIBILITY: `inj_onto' is now called `inj_on' (which
   276 makes more sense);
   277 
   278 * HOL/Set INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule;
   279   It and 'sym RS equals0D' are now in the default  claset, giving automatic
   280   disjointness reasoning but breaking a few old proofs.
   281 
   282 * HOL/Relation INCOMPATIBILITY: renamed the relational operator r^-1
   283 to 'converse' from 'inverse' (for compatibility with ZF and some
   284 literature);
   285 
   286 * HOL/recdef can now declare non-recursive functions, with {} supplied as
   287 the well-founded relation;
   288 
   289 * HOL/Set INCOMPATIBILITY: the complement of set A is now written -A instead of
   290     Compl A.  The "Compl" syntax remains available as input syntax for this
   291     release ONLY.
   292 
   293 * HOL/Update: new theory of function updates:
   294     f(a:=b) == %x. if x=a then b else f x
   295 may also be iterated as in f(a:=b,c:=d,...);
   296 
   297 * HOL/Vimage: new theory for inverse image of a function, syntax f-``B;
   298 
   299 * HOL/List:
   300   - new function list_update written xs[i:=v] that updates the i-th
   301     list position. May also be iterated as in xs[i:=a,j:=b,...].
   302   - new function `upt' written [i..j(] which generates the list
   303     [i,i+1,...,j-1], i.e. the upper bound is excluded. To include the upper
   304     bound write [i..j], which is a shorthand for [i..j+1(].
   305   - new lexicographic orderings and corresponding wellfoundedness theorems.
   306 
   307 * HOL/Arith:
   308   - removed 'pred' (predecessor) function;
   309   - generalized some theorems about n-1;
   310   - many new laws about "div" and "mod";
   311   - new laws about greatest common divisors (see theory ex/Primes);
   312 
   313 * HOL/Relation: renamed the relational operator r^-1 "converse"
   314 instead of "inverse";
   315 
   316 * HOL/Induct/Multiset: a theory of multisets, including the wellfoundedness
   317   of the multiset ordering;
   318 
   319 * directory HOL/Real: a construction of the reals using Dedekind cuts
   320   (not included by default);
   321 
   322 * directory HOL/UNITY: Chandy and Misra's UNITY formalism;
   323 
   324 * directory HOL/Hoare: a new version of Hoare logic which permits many-sorted
   325   programs, i.e. different program variables may have different types.
   326 
   327 * calling (stac rew i) now fails if "rew" has no effect on the goal
   328   [previously, this check worked only if the rewrite rule was unconditional]
   329   Now rew can involve either definitions or equalities (either == or =).
   330 
   331 
   332 *** ZF ***
   333 
   334 * theory Main includes everything; INCOMPATIBILITY: theory ZF.thy contains
   335   only the theorems proved on ZF.ML;
   336 
   337 * ZF INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule;
   338   It and 'sym RS equals0D' are now in the default  claset, giving automatic
   339   disjointness reasoning but breaking a few old proofs.
   340 
   341 * ZF/Update: new theory of function updates
   342     with default rewrite rule  f(x:=y) ` z = if(z=x, y, f`z)
   343   may also be iterated as in f(a:=b,c:=d,...);
   344 
   345 * in  let x=t in u(x), neither t nor u(x) has to be an FOL term.
   346 
   347 * calling (stac rew i) now fails if "rew" has no effect on the goal
   348   [previously, this check worked only if the rewrite rule was unconditional]
   349   Now rew can involve either definitions or equalities (either == or =).
   350 
   351 * case_tac provided for compatibility with HOL
   352     (like the old excluded_middle_tac, but with subgoals swapped)
   353 
   354 
   355 *** Internal programming interfaces ***
   356 
   357 * Pure: several new basic modules made available for general use, see
   358 also src/Pure/README;
   359 
   360 * improved the theory data mechanism to support encapsulation (data
   361 kind name replaced by private Object.kind, acting as authorization
   362 key); new type-safe user interface via functor TheoryDataFun; generic
   363 print_data function becomes basically useless;
   364 
   365 * removed global_names compatibility flag -- all theory declarations
   366 are qualified by default;
   367 
   368 * module Pure/Syntax now offers quote / antiquote translation
   369 functions (useful for Hoare logic etc. with implicit dependencies);
   370 see HOL/ex/Antiquote for an example use;
   371 
   372 * Simplifier now offers conversions (asm_)(full_)rewrite: simpset ->
   373 cterm -> thm;
   374 
   375 * new tactical CHANGED_GOAL for checking that a tactic modifies a
   376 subgoal;
   377 
   378 * Display.print_goals function moved to Locale.print_goals;
   379 
   380 * standard print function for goals supports current_goals_markers
   381 variable for marking begin of proof, end of proof, start of goal; the
   382 default is ("", "", ""); setting current_goals_markers := ("<proof>",
   383 "</proof>", "<goal>") causes SGML like tagged proof state printing,
   384 for example;
   385 
   386 
   387 
   388 New in Isabelle98 (January 1998)
   389 --------------------------------
   390 
   391 *** Overview of INCOMPATIBILITIES (see below for more details) ***
   392 
   393 * changed lexical syntax of terms / types: dots made part of long
   394 identifiers, e.g. "%x.x" no longer possible, should be "%x. x";
   395 
   396 * simpset (and claset) reference variable replaced by functions
   397 simpset / simpset_ref;
   398 
   399 * no longer supports theory aliases (via merge) and non-trivial
   400 implicit merge of thms' signatures;
   401 
   402 * most internal names of constants changed due to qualified names;
   403 
   404 * changed Pure/Sequence interface (see Pure/seq.ML);
   405 
   406 
   407 *** General Changes ***
   408 
   409 * hierachically structured name spaces (for consts, types, axms, thms
   410 etc.); new lexical class 'longid' (e.g. Foo.bar.x) may render much of
   411 old input syntactically incorrect (e.g. "%x.x"); COMPATIBILITY:
   412 isatool fixdots ensures space after dots (e.g. "%x. x"); set
   413 long_names for fully qualified output names; NOTE: ML programs
   414 (special tactics, packages etc.) referring to internal names may have
   415 to be adapted to cope with fully qualified names; in case of severe
   416 backward campatibility problems try setting 'global_names' at compile
   417 time to have enrything declared within a flat name space; one may also
   418 fine tune name declarations in theories via the 'global' and 'local'
   419 section;
   420 
   421 * reimplemented the implicit simpset and claset using the new anytype
   422 data filed in signatures; references simpset:simpset ref etc. are
   423 replaced by functions simpset:unit->simpset and
   424 simpset_ref:unit->simpset ref; COMPATIBILITY: use isatool fixclasimp
   425 to patch your ML files accordingly;
   426 
   427 * HTML output now includes theory graph data for display with Java
   428 applet or isatool browser; data generated automatically via isatool
   429 usedir (see -i option, ISABELLE_USEDIR_OPTIONS);
   430 
   431 * defs may now be conditional; improved rewrite_goals_tac to handle
   432 conditional equations;
   433 
   434 * defs now admits additional type arguments, using TYPE('a) syntax;
   435 
   436 * theory aliases via merge (e.g. M=A+B+C) no longer supported, always
   437 creates a new theory node; implicit merge of thms' signatures is
   438 restricted to 'trivial' ones; COMPATIBILITY: one may have to use
   439 transfer:theory->thm->thm in (rare) cases;
   440 
   441 * improved handling of draft signatures / theories; draft thms (and
   442 ctyps, cterms) are automatically promoted to real ones;
   443 
   444 * slightly changed interfaces for oracles: admit many per theory, named
   445 (e.g. oracle foo = mlfun), additional name argument for invoke_oracle;
   446 
   447 * print_goals: optional output of const types (set show_consts and
   448 show_types);
   449 
   450 * improved output of warnings (###) and errors (***);
   451 
   452 * subgoal_tac displays a warning if the new subgoal has type variables;
   453 
   454 * removed old README and Makefiles;
   455 
   456 * replaced print_goals_ref hook by print_current_goals_fn and result_error_fn;
   457 
   458 * removed obsolete init_pps and init_database;
   459 
   460 * deleted the obsolete tactical STATE, which was declared by
   461     fun STATE tacfun st = tacfun st st;
   462 
   463 * cd and use now support path variables, e.g. $ISABELLE_HOME, or ~
   464 (which abbreviates $HOME);
   465 
   466 * changed Pure/Sequence interface (see Pure/seq.ML); COMPATIBILITY:
   467 use isatool fixseq to adapt your ML programs (this works for fully
   468 qualified references to the Sequence structure only!);
   469 
   470 * use_thy no longer requires writable current directory; it always
   471 reloads .ML *and* .thy file, if either one is out of date;
   472 
   473 
   474 *** Classical Reasoner ***
   475 
   476 * Clarify_tac, clarify_tac, clarify_step_tac, Clarify_step_tac: new
   477 tactics that use classical reasoning to simplify a subgoal without
   478 splitting it into several subgoals;
   479 
   480 * Safe_tac: like safe_tac but uses the default claset;
   481 
   482 
   483 *** Simplifier ***
   484 
   485 * added simplification meta rules:
   486     (asm_)(full_)simplify: simpset -> thm -> thm;
   487 
   488 * simplifier.ML no longer part of Pure -- has to be loaded by object
   489 logics (again);
   490 
   491 * added prems argument to simplification procedures;
   492 
   493 * HOL, FOL, ZF: added infix function `addsplits':
   494   instead of `<simpset> setloop (split_tac <thms>)'
   495   you can simply write `<simpset> addsplits <thms>'
   496 
   497 
   498 *** Syntax ***
   499 
   500 * TYPE('a) syntax for type reflection terms;
   501 
   502 * no longer handles consts with name "" -- declare as 'syntax' instead;
   503 
   504 * pretty printer: changed order of mixfix annotation preference (again!);
   505 
   506 * Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
   507 
   508 
   509 *** HOL ***
   510 
   511 * HOL: there is a new splitter `split_asm_tac' that can be used e.g.
   512   with `addloop' of the simplifier to faciliate case splitting in premises.
   513 
   514 * HOL/TLA: Stephan Merz's formalization of Lamport's Temporal Logic of Actions;
   515 
   516 * HOL/Auth: new protocol proofs including some for the Internet
   517   protocol TLS;
   518 
   519 * HOL/Map: new theory of `maps' a la VDM;
   520 
   521 * HOL/simplifier: simplification procedures nat_cancel_sums for
   522 cancelling out common nat summands from =, <, <= (in)equalities, or
   523 differences; simplification procedures nat_cancel_factor for
   524 cancelling common factor from =, <, <= (in)equalities over natural
   525 sums; nat_cancel contains both kinds of procedures, it is installed by
   526 default in Arith.thy -- this COULD MAKE EXISTING PROOFS FAIL;
   527 
   528 * HOL/simplifier: terms of the form
   529   `? x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x)'  (or t=x)
   530   are rewritten to
   531   `P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t)',
   532   and those of the form
   533   `! x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x) --> R(x)'  (or t=x)
   534   are rewritten to
   535   `P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t) --> R(t)',
   536 
   537 * HOL/datatype
   538   Each datatype `t' now comes with a theorem `split_t_case' of the form
   539 
   540   P(t_case f1 ... fn x) =
   541      ( (!y1 ... ym1. x = C1 y1 ... ym1 --> P(f1 y1 ... ym1)) &
   542         ...
   543        (!y1 ... ymn. x = Cn y1 ... ymn --> P(f1 y1 ... ymn))
   544      )
   545 
   546   and a theorem `split_t_case_asm' of the form
   547 
   548   P(t_case f1 ... fn x) =
   549     ~( (? y1 ... ym1. x = C1 y1 ... ym1 & ~P(f1 y1 ... ym1)) |
   550         ...
   551        (? y1 ... ymn. x = Cn y1 ... ymn & ~P(f1 y1 ... ymn))
   552      )
   553   which can be added to a simpset via `addsplits'. The existing theorems
   554   expand_list_case and expand_option_case have been renamed to
   555   split_list_case and split_option_case.
   556 
   557 * HOL/Arithmetic:
   558   - `pred n' is automatically converted to `n-1'.
   559     Users are strongly encouraged not to use `pred' any longer,
   560     because it will disappear altogether at some point.
   561   - Users are strongly encouraged to write "0 < n" rather than
   562     "n ~= 0". Theorems and proof tools have been modified towards this
   563     `standard'.
   564 
   565 * HOL/Lists:
   566   the function "set_of_list" has been renamed "set" (and its theorems too);
   567   the function "nth" now takes its arguments in the reverse order and
   568   has acquired the infix notation "!" as in "xs!n".
   569 
   570 * HOL/Set: UNIV is now a constant and is no longer translated to Compl{};
   571 
   572 * HOL/Set: The operator (UN x.B x) now abbreviates (UN x:UNIV. B x) and its
   573   specialist theorems (like UN1_I) are gone.  Similarly for (INT x.B x);
   574 
   575 * HOL/record: extensible records with schematic structural subtyping
   576 (single inheritance); EXPERIMENTAL version demonstrating the encoding,
   577 still lacks various theorems and concrete record syntax;
   578 
   579 
   580 *** HOLCF ***
   581 
   582 * removed "axioms" and "generated by" sections;
   583 
   584 * replaced "ops" section by extended "consts" section, which is capable of
   585   handling the continuous function space "->" directly;
   586 
   587 * domain package:
   588   . proves theorems immediately and stores them in the theory,
   589   . creates hierachical name space,
   590   . now uses normal mixfix annotations (instead of cinfix...),
   591   . minor changes to some names and values (for consistency),
   592   . e.g. cases -> casedist, dists_eq -> dist_eqs, [take_lemma] -> take_lemmas,
   593   . separator between mutual domain defs: changed "," to "and",
   594   . improved handling of sort constraints;  now they have to
   595     appear on the left-hand side of the equations only;
   596 
   597 * fixed LAM <x,y,zs>.b syntax;
   598 
   599 * added extended adm_tac to simplifier in HOLCF -- can now discharge
   600 adm (%x. P (t x)), where P is chainfinite and t continuous;
   601 
   602 
   603 *** FOL and ZF ***
   604 
   605 * FOL: there is a new splitter `split_asm_tac' that can be used e.g.
   606   with `addloop' of the simplifier to faciliate case splitting in premises.
   607 
   608 * qed_spec_mp, qed_goal_spec_mp, qed_goalw_spec_mp are available, as
   609 in HOL, they strip ALL and --> from proved theorems;
   610 
   611 
   612 
   613 New in Isabelle94-8 (May 1997)
   614 ------------------------------
   615 
   616 *** General Changes ***
   617 
   618 * new utilities to build / run / maintain Isabelle etc. (in parts
   619 still somewhat experimental); old Makefiles etc. still functional;
   620 
   621 * new 'Isabelle System Manual';
   622 
   623 * INSTALL text, together with ./configure and ./build scripts;
   624 
   625 * reimplemented type inference for greater efficiency, better error
   626 messages and clean internal interface;
   627 
   628 * prlim command for dealing with lots of subgoals (an easier way of
   629 setting goals_limit);
   630 
   631 
   632 *** Syntax ***
   633 
   634 * supports alternative (named) syntax tables (parser and pretty
   635 printer); internal interface is provided by add_modesyntax(_i);
   636 
   637 * Pure, FOL, ZF, HOL, HOLCF now support symbolic input and output; to
   638 be used in conjunction with the Isabelle symbol font; uses the
   639 "symbols" syntax table;
   640 
   641 * added token_translation interface (may translate name tokens in
   642 arbitrary ways, dependent on their type (free, bound, tfree, ...) and
   643 the current print_mode); IMPORTANT: user print translation functions
   644 are responsible for marking newly introduced bounds
   645 (Syntax.mark_boundT);
   646 
   647 * token translations for modes "xterm" and "xterm_color" that display
   648 names in bold, underline etc. or colors (which requires a color
   649 version of xterm);
   650 
   651 * infixes may now be declared with names independent of their syntax;
   652 
   653 * added typed_print_translation (like print_translation, but may
   654 access type of constant);
   655 
   656 
   657 *** Classical Reasoner ***
   658 
   659 Blast_tac: a new tactic!  It is often more powerful than fast_tac, but has
   660 some limitations.  Blast_tac...
   661   + ignores addss, addbefore, addafter; this restriction is intrinsic
   662   + ignores elimination rules that don't have the correct format
   663         (the conclusion MUST be a formula variable)
   664   + ignores types, which can make HOL proofs fail
   665   + rules must not require higher-order unification, e.g. apply_type in ZF
   666     [message "Function Var's argument not a bound variable" relates to this]
   667   + its proof strategy is more general but can actually be slower
   668 
   669 * substitution with equality assumptions no longer permutes other
   670 assumptions;
   671 
   672 * minor changes in semantics of addafter (now called addaltern); renamed
   673 setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper
   674 (and access functions for it);
   675 
   676 * improved combination of classical reasoner and simplifier:
   677   + functions for handling clasimpsets
   678   + improvement of addss: now the simplifier is called _after_ the
   679     safe steps.
   680   + safe variant of addss called addSss: uses safe simplifications
   681     _during_ the safe steps. It is more complete as it allows multiple
   682     instantiations of unknowns (e.g. with slow_tac).
   683 
   684 *** Simplifier ***
   685 
   686 * added interface for simplification procedures (functions that
   687 produce *proven* rewrite rules on the fly, depending on current
   688 redex);
   689 
   690 * ordering on terms as parameter (used for ordered rewriting);
   691 
   692 * new functions delcongs, deleqcongs, and Delcongs. richer rep_ss;
   693 
   694 * the solver is now split into a safe and an unsafe part.
   695 This should be invisible for the normal user, except that the
   696 functions setsolver and addsolver have been renamed to setSolver and
   697 addSolver; added safe_asm_full_simp_tac;
   698 
   699 
   700 *** HOL ***
   701 
   702 * a generic induction tactic `induct_tac' which works for all datatypes and
   703 also for type `nat';
   704 
   705 * a generic case distinction tactic `exhaust_tac' which works for all
   706 datatypes and also for type `nat';
   707 
   708 * each datatype comes with a function `size';
   709 
   710 * patterns in case expressions allow tuple patterns as arguments to
   711 constructors, for example `case x of [] => ... | (x,y,z)#ps => ...';
   712 
   713 * primrec now also works with type nat;
   714 
   715 * recdef: a new declaration form, allows general recursive functions to be
   716 defined in theory files.  See HOL/ex/Fib, HOL/ex/Primes, HOL/Subst/Unify.
   717 
   718 * the constant for negation has been renamed from "not" to "Not" to
   719 harmonize with FOL, ZF, LK, etc.;
   720 
   721 * HOL/ex/LFilter theory of a corecursive "filter" functional for
   722 infinite lists;
   723 
   724 * HOL/Modelcheck demonstrates invocation of model checker oracle;
   725 
   726 * HOL/ex/Ring.thy declares cring_simp, which solves equational
   727 problems in commutative rings, using axiomatic type classes for + and *;
   728 
   729 * more examples in HOL/MiniML and HOL/Auth;
   730 
   731 * more default rewrite rules for quantifiers, union/intersection;
   732 
   733 * a new constant `arbitrary == @x.False';
   734 
   735 * HOLCF/IOA replaces old HOL/IOA;
   736 
   737 * HOLCF changes: derived all rules and arities
   738   + axiomatic type classes instead of classes
   739   + typedef instead of faking type definitions
   740   + eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc.
   741   + new axclasses cpo, chfin, flat with flat < chfin < pcpo < cpo < po
   742   + eliminated the types void, one, tr
   743   + use unit lift and bool lift (with translations) instead of one and tr
   744   + eliminated blift from Lift3.thy (use Def instead of blift)
   745   all eliminated rules are derived as theorems --> no visible changes ;
   746 
   747 
   748 *** ZF ***
   749 
   750 * ZF now has Fast_tac, Simp_tac and Auto_tac.  Union_iff is a now a default
   751 rewrite rule; this may affect some proofs.  eq_cs is gone but can be put back
   752 as ZF_cs addSIs [equalityI];
   753 
   754 
   755 
   756 New in Isabelle94-7 (November 96)
   757 ---------------------------------
   758 
   759 * allowing negative levels (as offsets) in prlev and choplev;
   760 
   761 * super-linear speedup for large simplifications;
   762 
   763 * FOL, ZF and HOL now use miniscoping: rewriting pushes
   764 quantifications in as far as possible (COULD MAKE EXISTING PROOFS
   765 FAIL); can suppress it using the command Delsimps (ex_simps @
   766 all_simps); De Morgan laws are also now included, by default;
   767 
   768 * improved printing of ==>  :  ~:
   769 
   770 * new object-logic "Sequents" adds linear logic, while replacing LK
   771 and Modal (thanks to Sara Kalvala);
   772 
   773 * HOL/Auth: correctness proofs for authentication protocols;
   774 
   775 * HOL: new auto_tac combines rewriting and classical reasoning (many
   776 examples on HOL/Auth);
   777 
   778 * HOL: new command AddIffs for declaring theorems of the form P=Q to
   779 the rewriter and classical reasoner simultaneously;
   780 
   781 * function uresult no longer returns theorems in "standard" format;
   782 regain previous version by: val uresult = standard o uresult;
   783 
   784 
   785 
   786 New in Isabelle94-6
   787 -------------------
   788 
   789 * oracles -- these establish an interface between Isabelle and trusted
   790 external reasoners, which may deliver results as theorems;
   791 
   792 * proof objects (in particular record all uses of oracles);
   793 
   794 * Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset;
   795 
   796 * "constdefs" section in theory files;
   797 
   798 * "primrec" section (HOL) no longer requires names;
   799 
   800 * internal type "tactic" now simply "thm -> thm Sequence.seq";
   801 
   802 
   803 
   804 New in Isabelle94-5
   805 -------------------
   806 
   807 * reduced space requirements;
   808 
   809 * automatic HTML generation from theories;
   810 
   811 * theory files no longer require "..." (quotes) around most types;
   812 
   813 * new examples, including two proofs of the Church-Rosser theorem;
   814 
   815 * non-curried (1994) version of HOL is no longer distributed;
   816 
   817 
   818 
   819 New in Isabelle94-4
   820 -------------------
   821 
   822 * greatly reduced space requirements;
   823 
   824 * theory files (.thy) no longer require \...\ escapes at line breaks;
   825 
   826 * searchable theorem database (see the section "Retrieving theorems" on
   827 page 8 of the Reference Manual);
   828 
   829 * new examples, including Grabczewski's monumental case study of the
   830 Axiom of Choice;
   831 
   832 * The previous version of HOL renamed to Old_HOL;
   833 
   834 * The new version of HOL (previously called CHOL) uses a curried syntax
   835 for functions.  Application looks like f a b instead of f(a,b);
   836 
   837 * Mutually recursive inductive definitions finally work in HOL;
   838 
   839 * In ZF, pattern-matching on tuples is now available in all abstractions and
   840 translates to the operator "split";
   841 
   842 
   843 
   844 New in Isabelle94-3
   845 -------------------
   846 
   847 * new infix operator, addss, allowing the classical reasoner to
   848 perform simplification at each step of its search.  Example:
   849         fast_tac (cs addss ss)
   850 
   851 * a new logic, CHOL, the same as HOL, but with a curried syntax
   852 for functions.  Application looks like f a b instead of f(a,b).  Also pairs
   853 look like (a,b) instead of <a,b>;
   854 
   855 * PLEASE NOTE: CHOL will eventually replace HOL!
   856 
   857 * In CHOL, pattern-matching on tuples is now available in all abstractions.
   858 It translates to the operator "split".  A new theory of integers is available;
   859 
   860 * In ZF, integer numerals now denote two's-complement binary integers.
   861 Arithmetic operations can be performed by rewriting.  See ZF/ex/Bin.ML;
   862 
   863 * Many new examples: I/O automata, Church-Rosser theorem, equivalents
   864 of the Axiom of Choice;
   865 
   866 
   867 
   868 New in Isabelle94-2
   869 -------------------
   870 
   871 * Significantly faster resolution;
   872 
   873 * the different sections in a .thy file can now be mixed and repeated
   874 freely;
   875 
   876 * Database of theorems for FOL, HOL and ZF.  New
   877 commands including qed, qed_goal and bind_thm store theorems in the database.
   878 
   879 * Simple database queries: return a named theorem (get_thm) or all theorems of
   880 a given theory (thms_of), or find out what theory a theorem was proved in
   881 (theory_of_thm);
   882 
   883 * Bugs fixed in the inductive definition and datatype packages;
   884 
   885 * The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs
   886 and HOL_dup_cs obsolete;
   887 
   888 * Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1
   889 have been removed;
   890 
   891 * Simpler definition of function space in ZF;
   892 
   893 * new results about cardinal and ordinal arithmetic in ZF;
   894 
   895 * 'subtype' facility in HOL for introducing new types as subsets of existing
   896 types;
   897 
   898 
   899 $Id$