NEWS
author wenzelm
Tue, 16 Sep 2008 17:16:27 +0200
changeset 28249 5440452371e9
parent 28248 b2869ebcf8e3
child 28252 79b8efed66bf
permissions -rw-r--r--
added PROOFGENERAL_HOME;
     1 Isabelle NEWS -- history user-relevant changes
     2 ==============================================
     3 
     4 New in this Isabelle version
     5 ----------------------------
     6 
     7 *** General ***
     8 
     9 * Generalized Isar history, with support for linear undo, direct state
    10 addressing etc.
    11 
    12 * Recovered hiding of consts, which was accidentally broken in
    13 Isabelle2007.  Potential INCOMPATIBILITY, ``hide const c'' really
    14 makes c inaccessible; consider using ``hide (open) const c'' instead.
    15 
    16 * Removed exotic 'token_translation' command.  INCOMPATIBILITY, use ML
    17 interface instead.
    18 
    19 
    20 *** Pure ***
    21 
    22 * Changed defaults for unify configuration options:
    23 
    24   unify_trace_bound = 50 (formerly 25)
    25   unify_search_bound = 60 (formerly 30)
    26 
    27 * Different bookkeeping for code equations:
    28   a) On theory merge, the last set of code equations for a particular constant
    29      is taken (in accordance with the policy applied by other parts of the
    30      code generator framework).
    31   b) Code equations stemming from explicit declarations (e.g. code attribute)
    32      gain priority over default code equations stemming from definition, primrec,
    33      fun etc.
    34   INCOMPATIBILITY.
    35 
    36 * Global versions of theorems stemming from classes do not carry
    37 a parameter prefix any longer.  INCOMPATIBILITY.
    38 
    39 * Dropped "locale (open)".  INCOMPATBILITY.
    40 
    41 * Interpretation commands no longer attempt to simplify goal.
    42 INCOMPATIBILITY: in rare situations the generated goal differs.  Use
    43 methods intro_locales and unfold_locales to clarify.
    44 
    45 * Interpretation commands no longer accept interpretation attributes.
    46 INCOMPATBILITY.
    47 
    48 * Command 'instance': attached definitions no longer accepted.
    49 INCOMPATIBILITY, use proper 'instantiation' target.
    50 
    51 * Keyword 'code_exception' now named 'code_abort'.  INCOMPATIBILITY.
    52 
    53 * The 'axiomatization' command now only works within a global theory
    54 context.  INCOMPATIBILITY.
    55 
    56 
    57 *** Document preparation ***
    58 
    59 * Antiquotation @{lemma} now imitates a regular terminal proof,
    60 demanding keyword 'by' and supporting the full method expression
    61 syntax just like the Isar command 'by'.
    62 
    63 
    64 *** HOL ***
    65 
    66 * HOL/Main: command "value" now integrates different evaluation
    67 mechanisms.  The result of the first successful evaluation mechanism
    68 is printed.  In square brackets a particular named evaluation
    69 mechanisms may be specified (currently, [SML], [code] or [nbe]).  See
    70 further src/HOL/ex/Eval_Examples.thy.
    71 
    72 * HOL/Orderings: class "wellorder" moved here, with explicit induction
    73 rule "less_induct" as assumption.  For instantiation of "wellorder" by
    74 means of predicate "wf", use rule wf_wellorderI.  INCOMPATIBILITY.
    75 
    76 * HOL/Orderings: added class "preorder" as superclass of "order".
    77 INCOMPATIBILITY: Instantiation proofs for order, linorder
    78 etc. slightly changed.  Some theorems named order_class.* now named
    79 preorder_class.*.
    80 
    81 * HOL/Ring_and_Field and HOL/Divides: Definition of "op dvd" has been
    82 moved to separate class dvd in Ring_and_Field; a couple of lemmas on
    83 dvd has been generalized to class comm_semiring_1.  Likewise a bunch
    84 of lemmas from Divides has been generalized from nat to class
    85 semiring_div.  INCOMPATIBILITY.  This involves the following theorem
    86 renames resulting from duplicate elimination:
    87 
    88     dvd_def_mod ~>          dvd_eq_mod_eq_0
    89     zero_dvd_iff ~>         dvd_0_left_iff
    90     DIVISION_BY_ZERO_DIV ~> div_by_0
    91     DIVISION_BY_ZERO_MOD ~> mod_by_0
    92     mult_div ~>             div_mult_self2_is_id
    93     mult_mod ~>             mod_mult_self2_is_0
    94 
    95 * HOL/Library/GCD: Curried operations gcd, lcm (for nat) and zgcd,
    96 zlcm (for int); carried together from various gcd/lcm developements in
    97 the HOL Distribution.  zgcd and zlcm replace former igcd and ilcm;
    98 corresponding theorems renamed accordingly.  INCOMPATIBILY.  To
    99 recover tupled syntax, use syntax declarations like:
   100 
   101     hide (open) const gcd
   102     abbreviation gcd where
   103       "gcd == (%(a, b). GCD.gcd a b)"
   104     notation (output)
   105       GCD.gcd ("gcd '(_, _')")
   106 
   107 (analogously for lcm, zgcd, zlcm).
   108 
   109 * HOL/Real/Rational: 'Fract k 0' now equals '0'.  INCOMPATIBILITY.
   110 
   111 * New ML antiquotation @{code}: takes constant as argument, generates
   112 corresponding code in background and inserts name of the corresponding
   113 resulting ML value/function/datatype constructor binding in place.
   114 All occurrences of @{code} with a single ML block are generated
   115 simultaneously.  Provides a generic and safe interface for
   116 instrumentalizing code generation.  See HOL/ex/Code_Antiq for a toy
   117 example, or HOL/Complex/ex/ReflectedFerrack for a more ambitious
   118 application.  In future you ought refrain from ad-hoc compiling
   119 generated SML code on the ML toplevel.  Note that (for technical
   120 reasons) @{code} cannot refer to constants for which user-defined
   121 serializations are set.  Refer to the corresponding ML counterpart
   122 directly in that cases.
   123 
   124 * Integrated image HOL-Complex with HOL.  Entry points Main.thy and
   125 Complex_Main.thy remain as they are.
   126 
   127 * New image HOL-Plain provides a minimal HOL with the most important
   128 tools available (inductive, datatype, primrec, ...).  By convention
   129 the corresponding theory Plain should be ancestor of every further
   130 (library) theory.  Some library theories now have ancestor Plain
   131 (instead of Main), thus theory Main occasionally has to be imported
   132 explicitly.
   133 
   134 * The metis method now fails in the usual manner, rather than raising
   135 an exception, if it determines that it cannot prove the theorem.
   136 
   137 * Methods "case_tac" and "induct_tac" now refer to the very same rules
   138 as the structured Isar versions "cases" and "induct", cf. the
   139 corresponding "cases" and "induct" attributes.  Mutual induction rules
   140 are now presented as a list of individual projections
   141 (e.g. foo_bar.inducts for types foo and bar); the old format with
   142 explicit HOL conjunction is no longer supported.  INCOMPATIBILITY, in
   143 rare situations a different rule is selected --- notably nested tuple
   144 elimination instead of former prod.exhaust: use explicit (case_tac t
   145 rule: prod.exhaust) here.
   146 
   147 * Attributes "cases", "induct", "coinduct" support "del" option.
   148 
   149 * Removed fact "case_split_thm", which duplicates "case_split".
   150 
   151 * Command 'rep_datatype': instead of theorem names the command now
   152 takes a list of terms denoting the constructors of the type to be
   153 represented as datatype.  The characteristic theorems have to be
   154 proven.  INCOMPATIBILITY.  Also observe that the following theorems
   155 have disappeared in favour of existing ones:
   156 
   157     unit_induct                 ~> unit.induct
   158     prod_induct                 ~> prod.induct
   159     sum_induct                  ~> sum.induct
   160     Suc_Suc_eq                  ~> nat.inject
   161     Suc_not_Zero Zero_not_Suc   ~> nat.distinct
   162 
   163 * Library/Nat_Infinity: added addition, numeral syntax and more
   164 instantiations for algebraic structures.  Removed some duplicate
   165 theorems.  Changes in simp rules.  INCOMPATIBILITY.
   166 
   167 * ATP selection (E/Vampire/Spass) is now via Proof General's settings
   168 menu.
   169 
   170 
   171 *** HOL-Algebra ***
   172 
   173 * New locales for orders and lattices where the equivalence relation
   174   is not restricted to equality.  INCOMPATIBILITY: all order and
   175   lattice locales use a record structure with field eq for the
   176   equivalence.
   177 
   178 * New theory of factorial domains.
   179 
   180 * Units_l_inv and Units_r_inv are now simprules by default.
   181 INCOMPATIBILITY.  Simplifier proof that require deletion of l_inv
   182 and/or r_inv will now also require deletion of these lemmas.
   183 
   184 * Renamed the following theorems.  INCOMPATIBILITY.
   185 UpperD ~> Upper_memD
   186 LowerD ~> Lower_memD
   187 least_carrier ~> least_closed
   188 greatest_carrier ~> greatest_closed
   189 greatest_Lower_above ~> greatest_Lower_below
   190 one_zero ~> carrier_one_zero
   191 one_not_zero ~> carrier_one_not_zero  (collision with assumption)
   192 
   193 
   194 *** HOL-NSA ***
   195 
   196 * Created new image HOL-NSA, containing theories of nonstandard
   197 analysis which were previously part of HOL-Complex.  Entry point
   198 Hyperreal.thy remains valid, but theories formerly using
   199 Complex_Main.thy should now use new entry point Hypercomplex.thy.
   200 
   201 
   202 *** ZF ***
   203 
   204 * Proof of Zorn's Lemma for partial orders.
   205 
   206 
   207 *** ML ***
   208 
   209 * Generic Toplevel.add_hook interface allows to analyze the result of
   210 transactions.  E.g. see src/Pure/ProofGeneral/proof_general_pgip.ML
   211 for theorem dependency output of transactions resulting in a new
   212 theory state.
   213 
   214 * Name bindings in higher specification mechanisms (notably
   215 LocalTheory.define, LocalTheory.note, and derived packages) are now
   216 formalized as type Name.binding, replacing old bstring.
   217 INCOMPATIBILITY, need to wrap strings via Name.binding function, see
   218 also Name.name_of.  Packages should pass name bindings given by the
   219 user to underlying specification mechanisms; this enables precise
   220 tracking of source positions, for example.
   221 
   222 * Result facts (from PureThy.note_thms, ProofContext.note_thms,
   223 LocalTheory.note etc.) now refer to the *full* internal name, not the
   224 bstring as before.  INCOMPATIBILITY, not detected by ML type-checking!
   225 
   226 * Rules and tactics that read instantiations (read_instantiate,
   227 res_inst_tac, thin_tac, subgoal_tac etc.) now demand a proper proof
   228 context, which is required for parsing and type-checking.  Moreover,
   229 the variables are specified as plain indexnames, not string encodings
   230 thereof.  INCOMPATIBILITY.
   231 
   232 * Disposed old type and term read functions (Sign.read_def_typ,
   233 Sign.read_typ, Sign.read_def_terms, Sign.read_term,
   234 Thm.read_def_cterms, Thm.read_cterm etc.).  INCOMPATIBILITY, should
   235 use regular Syntax.read_typ, Syntax.read_term, Syntax.read_typ_global,
   236 Syntax.read_term_global etc.; see also OldGoals.read_term as last
   237 resort for legacy applications.
   238 
   239 * Antiquotations: block-structured compilation context indicated by
   240 \<lbrace> ... \<rbrace>; additional antiquotation forms:
   241 
   242   @{let ?pat = term}                      - term abbreviation (HO matching)
   243   @{note name = fact}                     - fact abbreviation
   244   @{thm fact}                             - singleton fact (with attributes)
   245   @{thms fact}                            - general fact (with attributes)
   246   @{lemma prop by method}                 - singleton goal
   247   @{lemma prop by meth1 meth2}            - singleton goal
   248   @{lemma prop1 ... propN by method}      - general goal
   249   @{lemma prop1 ... propN by meth1 meth2} - general goal
   250   @{lemma (open) ...}                     - open derivation
   251 
   252 
   253 *** System ***
   254 
   255 * The Isabelle "emacs" tool provides a specific interface to invoke
   256 Proof General / Emacs, with more explicit failure if that is not
   257 installed (the old isabelle-interface script silently falls back on
   258 isabelle-process).  The PROOFGENERAL_HOME setting determines the
   259 installation location of the Proof General distribution.
   260 
   261 * Isabelle/lib/classes/Pure.jar provides basic support to integrate
   262 the Isabelle process into a JVM/Scala application.  See
   263 Isabelle/lib/jedit/plugin for a minimal example.  (The obsolete Java
   264 process wrapper has been discontinued.)
   265 
   266 * Status messages (with exact source position information) are
   267 emitted, if proper markup print mode is enabled.  This allows
   268 user-interface components to provide detailed feedback on internal
   269 prover operations.
   270 
   271 * Homegrown Isabelle font with unicode layout, see Isabelle/lib/fonts.
   272 
   273 
   274 
   275 New in Isabelle2008 (June 2008)
   276 -------------------------------
   277 
   278 *** General ***
   279 
   280 * The Isabelle/Isar Reference Manual (isar-ref) has been reorganized
   281 and updated, with formally checked references as hyperlinks.
   282 
   283 * Theory loader: use_thy (and similar operations) no longer set the
   284 implicit ML context, which was occasionally hard to predict and in
   285 conflict with concurrency.  INCOMPATIBILITY, use ML within Isar which
   286 provides a proper context already.
   287 
   288 * Theory loader: old-style ML proof scripts being *attached* to a thy
   289 file are no longer supported.  INCOMPATIBILITY, regular 'uses' and
   290 'use' within a theory file will do the job.
   291 
   292 * Name space merge now observes canonical order, i.e. the second space
   293 is inserted into the first one, while existing entries in the first
   294 space take precedence.  INCOMPATIBILITY in rare situations, may try to
   295 swap theory imports.
   296 
   297 * Syntax: symbol \<chi> is now considered a letter.  Potential
   298 INCOMPATIBILITY in identifier syntax etc.
   299 
   300 * Outer syntax: string tokens no longer admit escaped white space,
   301 which was an accidental (undocumented) feature.  INCOMPATIBILITY, use
   302 white space without escapes.
   303 
   304 * Outer syntax: string tokens may contain arbitrary character codes
   305 specified via 3 decimal digits (as in SML).  E.g. "foo\095bar" for
   306 "foo_bar".
   307 
   308 
   309 *** Pure ***
   310 
   311 * Context-dependent token translations.  Default setup reverts locally
   312 fixed variables, and adds hilite markup for undeclared frees.
   313 
   314 * Unused theorems can be found using the new command 'unused_thms'.
   315 There are three ways of invoking it:
   316 
   317 (1) unused_thms
   318      Only finds unused theorems in the current theory.
   319 
   320 (2) unused_thms thy_1 ... thy_n -
   321      Finds unused theorems in the current theory and all of its ancestors,
   322      excluding the theories thy_1 ... thy_n and all of their ancestors.
   323 
   324 (3) unused_thms thy_1 ... thy_n - thy'_1 ... thy'_m
   325      Finds unused theorems in the theories thy'_1 ... thy'_m and all of
   326      their ancestors, excluding the theories thy_1 ... thy_n and all of
   327      their ancestors.
   328 
   329 In order to increase the readability of the list produced by
   330 unused_thms, theorems that have been created by a particular instance
   331 of a theory command such as 'inductive' or 'function' are considered
   332 to belong to the same "group", meaning that if at least one theorem in
   333 this group is used, the other theorems in the same group are no longer
   334 reported as unused.  Moreover, if all theorems in the group are
   335 unused, only one theorem in the group is displayed.
   336 
   337 Note that proof objects have to be switched on in order for
   338 unused_thms to work properly (i.e. !proofs must be >= 1, which is
   339 usually the case when using Proof General with the default settings).
   340 
   341 * Authentic naming of facts disallows ad-hoc overwriting of previous
   342 theorems within the same name space.  INCOMPATIBILITY, need to remove
   343 duplicate fact bindings, or even accidental fact duplications.  Note
   344 that tools may maintain dynamically scoped facts systematically, using
   345 PureThy.add_thms_dynamic.
   346 
   347 * Command 'hide' now allows to hide from "fact" name space as well.
   348 
   349 * Eliminated destructive theorem database, simpset, claset, and
   350 clasimpset.  Potential INCOMPATIBILITY, really need to observe linear
   351 update of theories within ML code.
   352 
   353 * Eliminated theory ProtoPure and CPure, leaving just one Pure theory.
   354 INCOMPATIBILITY, object-logics depending on former Pure require
   355 additional setup PureThy.old_appl_syntax_setup; object-logics
   356 depending on former CPure need to refer to Pure.
   357 
   358 * Commands 'use' and 'ML' are now purely functional, operating on
   359 theory/local_theory.  Removed former 'ML_setup' (on theory), use 'ML'
   360 instead.  Added 'ML_val' as mere diagnostic replacement for 'ML'.
   361 INCOMPATIBILITY.
   362 
   363 * Command 'setup': discontinued implicit version with ML reference.
   364 
   365 * Instantiation target allows for simultaneous specification of class
   366 instance operations together with an instantiation proof.
   367 Type-checking phase allows to refer to class operations uniformly.
   368 See src/HOL/Complex/Complex.thy for an Isar example and
   369 src/HOL/Library/Eval.thy for an ML example.
   370 
   371 * Indexing of literal facts: be more serious about including only
   372 facts from the visible specification/proof context, but not the
   373 background context (locale etc.).  Affects `prop` notation and method
   374 "fact".  INCOMPATIBILITY: need to name facts explicitly in rare
   375 situations.
   376 
   377 * Method "cases", "induct", "coinduct": removed obsolete/undocumented
   378 "(open)" option, which used to expose internal bound variables to the
   379 proof text.
   380 
   381 * Isar statements: removed obsolete case "rule_context".
   382 INCOMPATIBILITY, better use explicit fixes/assumes.
   383 
   384 * Locale proofs: default proof step now includes 'unfold_locales';
   385 hence 'proof' without argument may be used to unfold locale
   386 predicates.
   387 
   388 
   389 *** Document preparation ***
   390 
   391 * Simplified pdfsetup.sty: color/hyperref is used unconditionally for
   392 both pdf and dvi (hyperlinks usually work in xdvi as well); removed
   393 obsolete thumbpdf setup (contemporary PDF viewers do this on the
   394 spot); renamed link color from "darkblue" to "linkcolor" (default
   395 value unchanged, can be redefined via \definecolor); no longer sets
   396 "a4paper" option (unnecessary or even intrusive).
   397 
   398 * Antiquotation @{lemma A method} proves proposition A by the given
   399 method (either a method name or a method name plus (optional) method
   400 arguments in parentheses) and prints A just like @{prop A}.
   401 
   402 
   403 *** HOL ***
   404 
   405 * New primrec package.  Specification syntax conforms in style to
   406 definition/function/....  No separate induction rule is provided.  The
   407 "primrec" command distinguishes old-style and new-style specifications
   408 by syntax.  The former primrec package is now named OldPrimrecPackage.
   409 When adjusting theories, beware: constants stemming from new-style
   410 primrec specifications have authentic syntax.
   411 
   412 * Metis prover is now an order of magnitude faster, and also works
   413 with multithreading.
   414 
   415 * Metis: the maximum number of clauses that can be produced from a
   416 theorem is now given by the attribute max_clauses.  Theorems that
   417 exceed this number are ignored, with a warning printed.
   418 
   419 * Sledgehammer no longer produces structured proofs by default. To
   420 enable, declare [[sledgehammer_full = true]].  Attributes
   421 reconstruction_modulus, reconstruction_sorts renamed
   422 sledgehammer_modulus, sledgehammer_sorts.  INCOMPATIBILITY.
   423 
   424 * Method "induct_scheme" derives user-specified induction rules
   425 from well-founded induction and completeness of patterns. This factors
   426 out some operations that are done internally by the function package
   427 and makes them available separately.  See
   428 src/HOL/ex/Induction_Scheme.thy for examples.
   429 
   430 * More flexible generation of measure functions for termination
   431 proofs: Measure functions can be declared by proving a rule of the
   432 form "is_measure f" and giving it the [measure_function] attribute.
   433 The "is_measure" predicate is logically meaningless (always true), and
   434 just guides the heuristic.  To find suitable measure functions, the
   435 termination prover sets up the goal "is_measure ?f" of the appropriate
   436 type and generates all solutions by prolog-style backwards proof using
   437 the declared rules.
   438 
   439 This setup also deals with rules like 
   440 
   441   "is_measure f ==> is_measure (list_size f)"
   442 
   443 which accommodates nested datatypes that recurse through lists.
   444 Similar rules are predeclared for products and option types.
   445 
   446 * Turned the type of sets "'a set" into an abbreviation for "'a => bool"
   447 
   448   INCOMPATIBILITIES:
   449 
   450   - Definitions of overloaded constants on sets have to be replaced by
   451     definitions on => and bool.
   452 
   453   - Some definitions of overloaded operators on sets can now be proved
   454     using the definitions of the operators on => and bool.  Therefore,
   455     the following theorems have been renamed:
   456 
   457       subset_def   -> subset_eq
   458       psubset_def  -> psubset_eq
   459       set_diff_def -> set_diff_eq
   460       Compl_def    -> Compl_eq
   461       Sup_set_def  -> Sup_set_eq
   462       Inf_set_def  -> Inf_set_eq
   463       sup_set_def  -> sup_set_eq
   464       inf_set_def  -> inf_set_eq
   465 
   466   - Due to the incompleteness of the HO unification algorithm, some
   467     rules such as subst may require manual instantiation, if some of
   468     the unknowns in the rule is a set.
   469 
   470   - Higher order unification and forward proofs:
   471     The proof pattern
   472 
   473       have "P (S::'a set)" <...>
   474       then have "EX S. P S" ..
   475 
   476     no longer works (due to the incompleteness of the HO unification
   477     algorithm) and must be replaced by the pattern
   478 
   479       have "EX S. P S"
   480       proof
   481         show "P S" <...>
   482       qed
   483 
   484   - Calculational reasoning with subst (or similar rules):
   485     The proof pattern
   486 
   487       have "P (S::'a set)" <...>
   488       also have "S = T" <...>
   489       finally have "P T" .
   490 
   491     no longer works (for similar reasons as the previous example) and
   492     must be replaced by something like
   493 
   494       have "P (S::'a set)" <...>
   495       moreover have "S = T" <...>
   496       ultimately have "P T" by simp
   497 
   498   - Tactics or packages written in ML code:
   499     Code performing pattern matching on types via
   500 
   501       Type ("set", [T]) => ...
   502 
   503     must be rewritten. Moreover, functions like strip_type or
   504     binder_types no longer return the right value when applied to a
   505     type of the form
   506 
   507       T1 => ... => Tn => U => bool
   508 
   509     rather than
   510 
   511       T1 => ... => Tn => U set
   512 
   513 * Merged theories Wellfounded_Recursion, Accessible_Part and
   514 Wellfounded_Relations to theory Wellfounded.
   515 
   516 * Explicit class "eq" for executable equality.  INCOMPATIBILITY.
   517 
   518 * Class finite no longer treats UNIV as class parameter.  Use class
   519 enum from theory Library/Enum instead to achieve a similar effect.
   520 INCOMPATIBILITY.
   521 
   522 * Theory List: rule list_induct2 now has explicitly named cases "Nil"
   523 and "Cons".  INCOMPATIBILITY.
   524 
   525 * HOL (and FOL): renamed variables in rules imp_elim and swap.
   526 Potential INCOMPATIBILITY.
   527 
   528 * Theory Product_Type: duplicated lemmas split_Pair_apply and
   529 injective_fst_snd removed, use split_eta and prod_eqI instead.
   530 Renamed upd_fst to apfst and upd_snd to apsnd.  INCOMPATIBILITY.
   531 
   532 * Theory Nat: removed redundant lemmas that merely duplicate lemmas of
   533 the same name in theory Orderings:
   534 
   535   less_trans
   536   less_linear
   537   le_imp_less_or_eq
   538   le_less_trans
   539   less_le_trans
   540   less_not_sym
   541   less_asym
   542 
   543 Renamed less_imp_le to less_imp_le_nat, and less_irrefl to
   544 less_irrefl_nat.  Potential INCOMPATIBILITY due to more general types
   545 and different variable names.
   546 
   547 * Library/Option_ord.thy: Canonical order on option type.
   548 
   549 * Library/RBT.thy: Red-black trees, an efficient implementation of
   550 finite maps.
   551 
   552 * Library/Countable.thy: Type class for countable types.
   553 
   554 * Theory Int: The representation of numerals has changed.  The infix
   555 operator BIT and the bit datatype with constructors B0 and B1 have
   556 disappeared.  INCOMPATIBILITY, use "Int.Bit0 x" and "Int.Bit1 y" in
   557 place of "x BIT bit.B0" and "y BIT bit.B1", respectively.  Theorems
   558 involving BIT, B0, or B1 have been renamed with "Bit0" or "Bit1"
   559 accordingly.
   560 
   561 * Theory Nat: definition of <= and < on natural numbers no longer
   562 depend on well-founded relations.  INCOMPATIBILITY.  Definitions
   563 le_def and less_def have disappeared.  Consider lemmas not_less
   564 [symmetric, where ?'a = nat] and less_eq [symmetric] instead.
   565 
   566 * Theory Finite_Set: locales ACf, ACe, ACIf, ACIfSL and ACIfSLlin
   567 (whose purpose mainly is for various fold_set functionals) have been
   568 abandoned in favor of the existing algebraic classes
   569 ab_semigroup_mult, comm_monoid_mult, ab_semigroup_idem_mult,
   570 lower_semilattice (resp. upper_semilattice) and linorder.
   571 INCOMPATIBILITY.
   572 
   573 * Theory Transitive_Closure: induct and cases rules now declare proper
   574 case_names ("base" and "step").  INCOMPATIBILITY.
   575 
   576 * Theorem Inductive.lfp_ordinal_induct generalized to complete
   577 lattices.  The form set-specific version is available as
   578 Inductive.lfp_ordinal_induct_set.
   579 
   580 * Renamed theorems "power.simps" to "power_int.simps".
   581 INCOMPATIBILITY.
   582 
   583 * Class semiring_div provides basic abstract properties of semirings
   584 with division and modulo operations.  Subsumes former class dvd_mod.
   585 
   586 * Merged theories IntDef, Numeral and IntArith into unified theory
   587 Int.  INCOMPATIBILITY.
   588 
   589 * Theory Library/Code_Index: type "index" now represents natural
   590 numbers rather than integers.  INCOMPATIBILITY.
   591 
   592 * New class "uminus" with operation "uminus" (split of from class
   593 "minus" which now only has operation "minus", binary).
   594 INCOMPATIBILITY.
   595 
   596 * Constants "card", "internal_split", "option_map" now with authentic
   597 syntax.  INCOMPATIBILITY.
   598 
   599 * Definitions subset_def, psubset_def, set_diff_def, Compl_def,
   600 le_bool_def, less_bool_def, le_fun_def, less_fun_def, inf_bool_def,
   601 sup_bool_def, Inf_bool_def, Sup_bool_def, inf_fun_def, sup_fun_def,
   602 Inf_fun_def, Sup_fun_def, inf_set_def, sup_set_def, Inf_set_def,
   603 Sup_set_def, le_def, less_def, option_map_def now with object
   604 equality.  INCOMPATIBILITY.
   605 
   606 * Records. Removed K_record, and replaced it by pure lambda term
   607 %x. c. The simplifier setup is now more robust against eta expansion.
   608 INCOMPATIBILITY: in cases explicitly referring to K_record.
   609 
   610 * Library/Multiset: {#a, b, c#} abbreviates {#a#} + {#b#} + {#c#}.
   611 
   612 * Library/ListVector: new theory of arithmetic vector operations.
   613 
   614 * Library/Order_Relation: new theory of various orderings as sets of
   615 pairs.  Defines preorders, partial orders, linear orders and
   616 well-orders on sets and on types.
   617 
   618 
   619 *** ZF ***
   620 
   621 * Renamed some theories to allow to loading both ZF and HOL in the
   622 same session:
   623 
   624   Datatype  -> Datatype_ZF
   625   Inductive -> Inductive_ZF
   626   Int       -> Int_ZF
   627   IntDiv    -> IntDiv_ZF
   628   Nat       -> Nat_ZF
   629   List      -> List_ZF
   630   Main      -> Main_ZF
   631 
   632 INCOMPATIBILITY: ZF theories that import individual theories below
   633 Main might need to be adapted.  Regular theory Main is still
   634 available, as trivial extension of Main_ZF.
   635 
   636 
   637 *** ML ***
   638 
   639 * ML within Isar: antiquotation @{const name} or @{const
   640 name(typargs)} produces statically-checked Const term.
   641 
   642 * Functor NamedThmsFun: data is available to the user as dynamic fact
   643 (of the same name).  Removed obsolete print command.
   644 
   645 * Removed obsolete "use_legacy_bindings" function.
   646 
   647 * The ``print mode'' is now a thread-local value derived from a global
   648 template (the former print_mode reference), thus access becomes
   649 non-critical.  The global print_mode reference is for session
   650 management only; user-code should use print_mode_value,
   651 print_mode_active, PrintMode.setmp etc.  INCOMPATIBILITY.
   652 
   653 * Functions system/system_out provide a robust way to invoke external
   654 shell commands, with propagation of interrupts (requires Poly/ML 5.2).
   655 Do not use OS.Process.system etc. from the basis library!
   656 
   657 
   658 *** System ***
   659 
   660 * Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs ---
   661 in accordance with Proof General 3.7, which prefers GNU emacs.
   662 
   663 * isatool tty runs Isabelle process with plain tty interaction;
   664 optional line editor may be specified via ISABELLE_LINE_EDITOR
   665 setting, the default settings attempt to locate "ledit" and "rlwrap".
   666 
   667 * isatool browser now works with Cygwin as well, using general
   668 "javapath" function defined in Isabelle process environment.
   669 
   670 * YXML notation provides a simple and efficient alternative to
   671 standard XML transfer syntax.  See src/Pure/General/yxml.ML and
   672 isatool yxml as described in the Isabelle system manual.
   673 
   674 * JVM class isabelle.IsabelleProcess (located in Isabelle/lib/classes)
   675 provides general wrapper for managing an Isabelle process in a robust
   676 fashion, with ``cooked'' output from stdin/stderr.
   677 
   678 * Rudimentary Isabelle plugin for jEdit (see Isabelle/lib/jedit),
   679 based on Isabelle/JVM process wrapper (see Isabelle/lib/classes).
   680 
   681 * Removed obsolete THIS_IS_ISABELLE_BUILD feature.  NB: the documented
   682 way of changing the user's settings is via
   683 ISABELLE_HOME_USER/etc/settings, which is a fully featured bash
   684 script.
   685 
   686 * Multithreading.max_threads := 0 refers to the number of actual CPU
   687 cores of the underlying machine, which is a good starting point for
   688 optimal performance tuning.  The corresponding usedir option -M allows
   689 "max" as an alias for "0".  WARNING: does not work on certain versions
   690 of Mac OS (with Poly/ML 5.1).
   691 
   692 * isabelle-process: non-ML sessions are run with "nice", to reduce the
   693 adverse effect of Isabelle flooding interactive front-ends (notably
   694 ProofGeneral / XEmacs).
   695 
   696 
   697 
   698 New in Isabelle2007 (November 2007)
   699 -----------------------------------
   700 
   701 *** General ***
   702 
   703 * More uniform information about legacy features, notably a
   704 warning/error of "Legacy feature: ...", depending on the state of the
   705 tolerate_legacy_features flag (default true). FUTURE INCOMPATIBILITY:
   706 legacy features will disappear eventually.
   707 
   708 * Theory syntax: the header format ``theory A = B + C:'' has been
   709 discontinued in favour of ``theory A imports B C begin''.  Use isatool
   710 fixheaders to convert existing theory files.  INCOMPATIBILITY.
   711 
   712 * Theory syntax: the old non-Isar theory file format has been
   713 discontinued altogether.  Note that ML proof scripts may still be used
   714 with Isar theories; migration is usually quite simple with the ML
   715 function use_legacy_bindings.  INCOMPATIBILITY.
   716 
   717 * Theory syntax: some popular names (e.g. 'class', 'declaration',
   718 'fun', 'help', 'if') are now keywords.  INCOMPATIBILITY, use double
   719 quotes.
   720 
   721 * Theory loader: be more serious about observing the static theory
   722 header specifications (including optional directories), but not the
   723 accidental file locations of previously successful loads.  The strict
   724 update policy of former update_thy is now already performed by
   725 use_thy, so the former has been removed; use_thys updates several
   726 theories simultaneously, just as 'imports' within a theory header
   727 specification, but without merging the results.  Potential
   728 INCOMPATIBILITY: may need to refine theory headers and commands
   729 ROOT.ML which depend on load order.
   730 
   731 * Theory loader: optional support for content-based file
   732 identification, instead of the traditional scheme of full physical
   733 path plus date stamp; configured by the ISABELLE_FILE_IDENT setting
   734 (cf. the system manual).  The new scheme allows to work with
   735 non-finished theories in persistent session images, such that source
   736 files may be moved later on without requiring reloads.
   737 
   738 * Theory loader: old-style ML proof scripts being *attached* to a thy
   739 file (with the same base name as the theory) are considered a legacy
   740 feature, which will disappear eventually. Even now, the theory loader
   741 no longer maintains dependencies on such files.
   742 
   743 * Syntax: the scope for resolving ambiguities via type-inference is
   744 now limited to individual terms, instead of whole simultaneous
   745 specifications as before. This greatly reduces the complexity of the
   746 syntax module and improves flexibility by separating parsing and
   747 type-checking. INCOMPATIBILITY: additional type-constraints (explicit
   748 'fixes' etc.) are required in rare situations.
   749 
   750 * Syntax: constants introduced by new-style packages ('definition',
   751 'abbreviation' etc.) are passed through the syntax module in
   752 ``authentic mode''. This means that associated mixfix annotations
   753 really stick to such constants, independently of potential name space
   754 ambiguities introduced later on. INCOMPATIBILITY: constants in parse
   755 trees are represented slightly differently, may need to adapt syntax
   756 translations accordingly. Use CONST marker in 'translations' and
   757 @{const_syntax} antiquotation in 'parse_translation' etc.
   758 
   759 * Legacy goal package: reduced interface to the bare minimum required
   760 to keep existing proof scripts running.  Most other user-level
   761 functions are now part of the OldGoals structure, which is *not* open
   762 by default (consider isatool expandshort before open OldGoals).
   763 Removed top_sg, prin, printyp, pprint_term/typ altogether, because
   764 these tend to cause confusion about the actual goal (!) context being
   765 used here, which is not necessarily the same as the_context().
   766 
   767 * Command 'find_theorems': supports "*" wild-card in "name:"
   768 criterion; "with_dups" option.  Certain ProofGeneral versions might
   769 support a specific search form (see ProofGeneral/CHANGES).
   770 
   771 * The ``prems limit'' option (cf. ProofContext.prems_limit) is now -1
   772 by default, which means that "prems" (and also "fixed variables") are
   773 suppressed from proof state output.  Note that the ProofGeneral
   774 settings mechanism allows to change and save options persistently, but
   775 older versions of Isabelle will fail to start up if a negative prems
   776 limit is imposed.
   777 
   778 * Local theory targets may be specified by non-nested blocks of
   779 ``context/locale/class ... begin'' followed by ``end''.  The body may
   780 contain definitions, theorems etc., including any derived mechanism
   781 that has been implemented on top of these primitives.  This concept
   782 generalizes the existing ``theorem (in ...)'' towards more versatility
   783 and scalability.
   784 
   785 * Proof General interface: proper undo of final 'end' command;
   786 discontinued Isabelle/classic mode (ML proof scripts).
   787 
   788 
   789 *** Document preparation ***
   790 
   791 * Added antiquotation @{theory name} which prints the given name,
   792 after checking that it refers to a valid ancestor theory in the
   793 current context.
   794 
   795 * Added antiquotations @{ML_type text} and @{ML_struct text} which
   796 check the given source text as ML type/structure, printing verbatim.
   797 
   798 * Added antiquotation @{abbrev "c args"} which prints the abbreviation
   799 "c args == rhs" given in the current context.  (Any number of
   800 arguments may be given on the LHS.)
   801 
   802 
   803 *** Pure ***
   804 
   805 * The 'class' package offers a combination of axclass and locale to
   806 achieve Haskell-like type classes in Isabelle.  Definitions and
   807 theorems within a class context produce both relative results (with
   808 implicit parameters according to the locale context), and polymorphic
   809 constants with qualified polymorphism (according to the class
   810 context).  Within the body context of a 'class' target, a separate
   811 syntax layer ("user space type system") takes care of converting
   812 between global polymorphic consts and internal locale representation.
   813 See src/HOL/ex/Classpackage.thy for examples (as well as main HOL).
   814 "isatool doc classes" provides a tutorial.
   815 
   816 * Generic code generator framework allows to generate executable
   817 code for ML and Haskell (including Isabelle classes).  A short usage
   818 sketch:
   819 
   820     internal compilation:
   821         export_code <list of constants (term syntax)> in SML
   822     writing SML code to a file:
   823         export_code <list of constants (term syntax)> in SML <filename>
   824     writing OCaml code to a file:
   825         export_code <list of constants (term syntax)> in OCaml <filename>
   826     writing Haskell code to a bunch of files:
   827         export_code <list of constants (term syntax)> in Haskell <filename>
   828 
   829     evaluating closed propositions to True/False using code generation:
   830         method ``eval''
   831 
   832 Reasonable default setup of framework in HOL.
   833 
   834 Theorem attributs for selecting and transforming function equations theorems:
   835 
   836     [code fun]:        select a theorem as function equation for a specific constant
   837     [code fun del]:    deselect a theorem as function equation for a specific constant
   838     [code inline]:     select an equation theorem for unfolding (inlining) in place
   839     [code inline del]: deselect an equation theorem for unfolding (inlining) in place
   840 
   841 User-defined serializations (target in {SML, OCaml, Haskell}):
   842 
   843     code_const <and-list of constants (term syntax)>
   844       {(target) <and-list of const target syntax>}+
   845 
   846     code_type <and-list of type constructors>
   847       {(target) <and-list of type target syntax>}+
   848 
   849     code_instance <and-list of instances>
   850       {(target)}+
   851         where instance ::= <type constructor> :: <class>
   852 
   853     code_class <and_list of classes>
   854       {(target) <and-list of class target syntax>}+
   855         where class target syntax ::= <class name> {where {<classop> == <target syntax>}+}?
   856 
   857 code_instance and code_class only are effective to target Haskell.
   858 
   859 For example usage see src/HOL/ex/Codegenerator.thy and
   860 src/HOL/ex/Codegenerator_Pretty.thy.  A separate tutorial on code
   861 generation from Isabelle/HOL theories is available via "isatool doc
   862 codegen".
   863 
   864 * Code generator: consts in 'consts_code' Isar commands are now
   865 referred to by usual term syntax (including optional type
   866 annotations).
   867 
   868 * Command 'no_translations' removes translation rules from theory
   869 syntax.
   870 
   871 * Overloaded definitions are now actually checked for acyclic
   872 dependencies.  The overloading scheme is slightly more general than
   873 that of Haskell98, although Isabelle does not demand an exact
   874 correspondence to type class and instance declarations.
   875 INCOMPATIBILITY, use ``defs (unchecked overloaded)'' to admit more
   876 exotic versions of overloading -- at the discretion of the user!
   877 
   878 Polymorphic constants are represented via type arguments, i.e. the
   879 instantiation that matches an instance against the most general
   880 declaration given in the signature.  For example, with the declaration
   881 c :: 'a => 'a => 'a, an instance c :: nat => nat => nat is represented
   882 as c(nat).  Overloading is essentially simultaneous structural
   883 recursion over such type arguments.  Incomplete specification patterns
   884 impose global constraints on all occurrences, e.g. c('a * 'a) on the
   885 LHS means that more general c('a * 'b) will be disallowed on any RHS.
   886 Command 'print_theory' outputs the normalized system of recursive
   887 equations, see section "definitions".
   888 
   889 * Configuration options are maintained within the theory or proof
   890 context (with name and type bool/int/string), providing a very simple
   891 interface to a poor-man's version of general context data.  Tools may
   892 declare options in ML (e.g. using Attrib.config_int) and then refer to
   893 these values using Config.get etc.  Users may change options via an
   894 associated attribute of the same name.  This form of context
   895 declaration works particularly well with commands 'declare' or
   896 'using', for example ``declare [[foo = 42]]''.  Thus it has become
   897 very easy to avoid global references, which would not observe Isar
   898 toplevel undo/redo and fail to work with multithreading.
   899 
   900 Various global ML references of Pure and HOL have been turned into
   901 configuration options:
   902 
   903   Unify.search_bound		unify_search_bound
   904   Unify.trace_bound		unify_trace_bound
   905   Unify.trace_simp		unify_trace_simp
   906   Unify.trace_types		unify_trace_types
   907   Simplifier.simp_depth_limit	simp_depth_limit
   908   Blast.depth_limit		blast_depth_limit
   909   DatatypeProp.dtK		datatype_distinctness_limit
   910   fast_arith_neq_limit  	fast_arith_neq_limit
   911   fast_arith_split_limit	fast_arith_split_limit
   912 
   913 * Named collections of theorems may be easily installed as context
   914 data using the functor NamedThmsFun (see also
   915 src/Pure/Tools/named_thms.ML).  The user may add or delete facts via
   916 attributes; there is also a toplevel print command.  This facility is
   917 just a common case of general context data, which is the preferred way
   918 for anything more complex than just a list of facts in canonical
   919 order.
   920 
   921 * Isar: command 'declaration' augments a local theory by generic
   922 declaration functions written in ML.  This enables arbitrary content
   923 being added to the context, depending on a morphism that tells the
   924 difference of the original declaration context wrt. the application
   925 context encountered later on.
   926 
   927 * Isar: proper interfaces for simplification procedures.  Command
   928 'simproc_setup' declares named simprocs (with match patterns, and body
   929 text in ML).  Attribute "simproc" adds/deletes simprocs in the current
   930 context.  ML antiquotation @{simproc name} retrieves named simprocs.
   931 
   932 * Isar: an extra pair of brackets around attribute declarations
   933 abbreviates a theorem reference involving an internal dummy fact,
   934 which will be ignored later --- only the effect of the attribute on
   935 the background context will persist.  This form of in-place
   936 declarations is particularly useful with commands like 'declare' and
   937 'using', for example ``have A using [[simproc a]] by simp''.
   938 
   939 * Isar: method "assumption" (and implicit closing of subproofs) now
   940 takes simple non-atomic goal assumptions into account: after applying
   941 an assumption as a rule the resulting subgoals are solved by atomic
   942 assumption steps.  This is particularly useful to finish 'obtain'
   943 goals, such as "!!x. (!!x. P x ==> thesis) ==> P x ==> thesis",
   944 without referring to the original premise "!!x. P x ==> thesis" in the
   945 Isar proof context.  POTENTIAL INCOMPATIBILITY: method "assumption" is
   946 more permissive.
   947 
   948 * Isar: implicit use of prems from the Isar proof context is
   949 considered a legacy feature.  Common applications like ``have A .''
   950 may be replaced by ``have A by fact'' or ``note `A`''.  In general,
   951 referencing facts explicitly here improves readability and
   952 maintainability of proof texts.
   953 
   954 * Isar: improper proof element 'guess' is like 'obtain', but derives
   955 the obtained context from the course of reasoning!  For example:
   956 
   957   assume "EX x y. A x & B y"   -- "any previous fact"
   958   then guess x and y by clarify
   959 
   960 This technique is potentially adventurous, depending on the facts and
   961 proof tools being involved here.
   962 
   963 * Isar: known facts from the proof context may be specified as literal
   964 propositions, using ASCII back-quote syntax.  This works wherever
   965 named facts used to be allowed so far, in proof commands, proof
   966 methods, attributes etc.  Literal facts are retrieved from the context
   967 according to unification of type and term parameters.  For example,
   968 provided that "A" and "A ==> B" and "!!x. P x ==> Q x" are known
   969 theorems in the current context, then these are valid literal facts:
   970 `A` and `A ==> B` and `!!x. P x ==> Q x" as well as `P a ==> Q a` etc.
   971 
   972 There is also a proof method "fact" which does the same composition
   973 for explicit goal states, e.g. the following proof texts coincide with
   974 certain special cases of literal facts:
   975 
   976   have "A" by fact                 ==  note `A`
   977   have "A ==> B" by fact           ==  note `A ==> B`
   978   have "!!x. P x ==> Q x" by fact  ==  note `!!x. P x ==> Q x`
   979   have "P a ==> Q a" by fact       ==  note `P a ==> Q a`
   980 
   981 * Isar: ":" (colon) is no longer a symbolic identifier character in
   982 outer syntax.  Thus symbolic identifiers may be used without
   983 additional white space in declarations like this: ``assume *: A''.
   984 
   985 * Isar: 'print_facts' prints all local facts of the current context,
   986 both named and unnamed ones.
   987 
   988 * Isar: 'def' now admits simultaneous definitions, e.g.:
   989 
   990   def x == "t" and y == "u"
   991 
   992 * Isar: added command 'unfolding', which is structurally similar to
   993 'using', but affects both the goal state and facts by unfolding given
   994 rewrite rules.  Thus many occurrences of the 'unfold' method or
   995 'unfolded' attribute may be replaced by first-class proof text.
   996 
   997 * Isar: methods 'unfold' / 'fold', attributes 'unfolded' / 'folded',
   998 and command 'unfolding' now all support object-level equalities
   999 (potentially conditional).  The underlying notion of rewrite rule is
  1000 analogous to the 'rule_format' attribute, but *not* that of the
  1001 Simplifier (which is usually more generous).
  1002 
  1003 * Isar: the new attribute [rotated n] (default n = 1) rotates the
  1004 premises of a theorem by n. Useful in conjunction with drule.
  1005 
  1006 * Isar: the goal restriction operator [N] (default N = 1) evaluates a
  1007 method expression within a sandbox consisting of the first N
  1008 sub-goals, which need to exist.  For example, ``simp_all [3]''
  1009 simplifies the first three sub-goals, while (rule foo, simp_all)[]
  1010 simplifies all new goals that emerge from applying rule foo to the
  1011 originally first one.
  1012 
  1013 * Isar: schematic goals are no longer restricted to higher-order
  1014 patterns; e.g. ``lemma "?P(?x)" by (rule TrueI)'' now works as
  1015 expected.
  1016 
  1017 * Isar: the conclusion of a long theorem statement is now either
  1018 'shows' (a simultaneous conjunction, as before), or 'obtains'
  1019 (essentially a disjunction of cases with local parameters and
  1020 assumptions).  The latter allows to express general elimination rules
  1021 adequately; in this notation common elimination rules look like this:
  1022 
  1023   lemma exE:    -- "EX x. P x ==> (!!x. P x ==> thesis) ==> thesis"
  1024     assumes "EX x. P x"
  1025     obtains x where "P x"
  1026 
  1027   lemma conjE:  -- "A & B ==> (A ==> B ==> thesis) ==> thesis"
  1028     assumes "A & B"
  1029     obtains A and B
  1030 
  1031   lemma disjE:  -- "A | B ==> (A ==> thesis) ==> (B ==> thesis) ==> thesis"
  1032     assumes "A | B"
  1033     obtains
  1034       A
  1035     | B
  1036 
  1037 The subsequent classical rules even refer to the formal "thesis"
  1038 explicitly:
  1039 
  1040   lemma classical:     -- "(~ thesis ==> thesis) ==> thesis"
  1041     obtains "~ thesis"
  1042 
  1043   lemma Peirce's_Law:  -- "((thesis ==> something) ==> thesis) ==> thesis"
  1044     obtains "thesis ==> something"
  1045 
  1046 The actual proof of an 'obtains' statement is analogous to that of the
  1047 Isar proof element 'obtain', only that there may be several cases.
  1048 Optional case names may be specified in parentheses; these will be
  1049 available both in the present proof and as annotations in the
  1050 resulting rule, for later use with the 'cases' method (cf. attribute
  1051 case_names).
  1052 
  1053 * Isar: the assumptions of a long theorem statement are available as
  1054 "assms" fact in the proof context.  This is more appropriate than the
  1055 (historical) "prems", which refers to all assumptions of the current
  1056 context, including those from the target locale, proof body etc.
  1057 
  1058 * Isar: 'print_statement' prints theorems from the current theory or
  1059 proof context in long statement form, according to the syntax of a
  1060 top-level lemma.
  1061 
  1062 * Isar: 'obtain' takes an optional case name for the local context
  1063 introduction rule (default "that").
  1064 
  1065 * Isar: removed obsolete 'concl is' patterns.  INCOMPATIBILITY, use
  1066 explicit (is "_ ==> ?foo") in the rare cases where this still happens
  1067 to occur.
  1068 
  1069 * Pure: syntax "CONST name" produces a fully internalized constant
  1070 according to the current context.  This is particularly useful for
  1071 syntax translations that should refer to internal constant
  1072 representations independently of name spaces.
  1073 
  1074 * Pure: syntax constant for foo (binder "FOO ") is called "foo_binder"
  1075 instead of "FOO ". This allows multiple binder declarations to coexist
  1076 in the same context.  INCOMPATIBILITY.
  1077 
  1078 * Isar/locales: 'notation' provides a robust interface to the 'syntax'
  1079 primitive that also works in a locale context (both for constants and
  1080 fixed variables). Type declaration and internal syntactic representation
  1081 of given constants retrieved from the context. Likewise, the
  1082 'no_notation' command allows to remove given syntax annotations from the
  1083 current context.
  1084 
  1085 * Isar/locales: new derived specification elements 'axiomatization',
  1086 'definition', 'abbreviation', which support type-inference, admit
  1087 object-level specifications (equality, equivalence).  See also the
  1088 isar-ref manual.  Examples:
  1089 
  1090   axiomatization
  1091     eq  (infix "===" 50) where
  1092     eq_refl: "x === x" and eq_subst: "x === y ==> P x ==> P y"
  1093 
  1094   definition "f x y = x + y + 1"
  1095   definition g where "g x = f x x"
  1096 
  1097   abbreviation
  1098     neq  (infix "=!=" 50) where
  1099     "x =!= y == ~ (x === y)"
  1100 
  1101 These specifications may be also used in a locale context.  Then the
  1102 constants being introduced depend on certain fixed parameters, and the
  1103 constant name is qualified by the locale base name.  An internal
  1104 abbreviation takes care for convenient input and output, making the
  1105 parameters implicit and using the original short name.  See also
  1106 src/HOL/ex/Abstract_NAT.thy for an example of deriving polymorphic
  1107 entities from a monomorphic theory.
  1108 
  1109 Presently, abbreviations are only available 'in' a target locale, but
  1110 not inherited by general import expressions.  Also note that
  1111 'abbreviation' may be used as a type-safe replacement for 'syntax' +
  1112 'translations' in common applications.  The "no_abbrevs" print mode
  1113 prevents folding of abbreviations in term output.
  1114 
  1115 Concrete syntax is attached to specified constants in internal form,
  1116 independently of name spaces.  The parse tree representation is
  1117 slightly different -- use 'notation' instead of raw 'syntax', and
  1118 'translations' with explicit "CONST" markup to accommodate this.
  1119 
  1120 * Pure/Isar: unified syntax for new-style specification mechanisms
  1121 (e.g.  'definition', 'abbreviation', or 'inductive' in HOL) admits
  1122 full type inference and dummy patterns ("_").  For example:
  1123 
  1124   definition "K x _ = x"
  1125 
  1126   inductive conj for A B
  1127   where "A ==> B ==> conj A B"
  1128 
  1129 * Pure: command 'print_abbrevs' prints all constant abbreviations of
  1130 the current context.  Print mode "no_abbrevs" prevents inversion of
  1131 abbreviations on output.
  1132 
  1133 * Isar/locales: improved parameter handling: use of locales "var" and
  1134 "struct" no longer necessary; - parameter renamings are no longer
  1135 required to be injective.  For example, this allows to define
  1136 endomorphisms as locale endom = homom mult mult h.
  1137 
  1138 * Isar/locales: changed the way locales with predicates are defined.
  1139 Instead of accumulating the specification, the imported expression is
  1140 now an interpretation.  INCOMPATIBILITY: different normal form of
  1141 locale expressions.  In particular, in interpretations of locales with
  1142 predicates, goals repesenting already interpreted fragments are not
  1143 removed automatically.  Use methods `intro_locales' and
  1144 `unfold_locales'; see below.
  1145 
  1146 * Isar/locales: new methods `intro_locales' and `unfold_locales'
  1147 provide backward reasoning on locales predicates.  The methods are
  1148 aware of interpretations and discharge corresponding goals.
  1149 `intro_locales' is less aggressive then `unfold_locales' and does not
  1150 unfold predicates to assumptions.
  1151 
  1152 * Isar/locales: the order in which locale fragments are accumulated
  1153 has changed.  This enables to override declarations from fragments due
  1154 to interpretations -- for example, unwanted simp rules.
  1155 
  1156 * Isar/locales: interpretation in theories and proof contexts has been
  1157 extended.  One may now specify (and prove) equations, which are
  1158 unfolded in interpreted theorems.  This is useful for replacing
  1159 defined concepts (constants depending on locale parameters) by
  1160 concepts already existing in the target context.  Example:
  1161 
  1162   interpretation partial_order ["op <= :: [int, int] => bool"]
  1163     where "partial_order.less (op <=) (x::int) y = (x < y)"
  1164 
  1165 Typically, the constant `partial_order.less' is created by a
  1166 definition specification element in the context of locale
  1167 partial_order.
  1168 
  1169 * Method "induct": improved internal context management to support
  1170 local fixes and defines on-the-fly. Thus explicit meta-level
  1171 connectives !!  and ==> are rarely required anymore in inductive goals
  1172 (using object-logic connectives for this purpose has been long
  1173 obsolete anyway). Common proof patterns are explained in
  1174 src/HOL/Induct/Common_Patterns.thy, see also
  1175 src/HOL/Isar_examples/Puzzle.thy and src/HOL/Lambda for realistic
  1176 examples.
  1177 
  1178 * Method "induct": improved handling of simultaneous goals. Instead of
  1179 introducing object-level conjunction, the statement is now split into
  1180 several conclusions, while the corresponding symbolic cases are nested
  1181 accordingly. INCOMPATIBILITY, proofs need to be structured explicitly,
  1182 see src/HOL/Induct/Common_Patterns.thy, for example.
  1183 
  1184 * Method "induct": mutual induction rules are now specified as a list
  1185 of rule sharing the same induction cases. HOL packages usually provide
  1186 foo_bar.inducts for mutually defined items foo and bar (e.g. inductive
  1187 predicates/sets or datatypes). INCOMPATIBILITY, users need to specify
  1188 mutual induction rules differently, i.e. like this:
  1189 
  1190   (induct rule: foo_bar.inducts)
  1191   (induct set: foo bar)
  1192   (induct pred: foo bar)
  1193   (induct type: foo bar)
  1194 
  1195 The ML function ProjectRule.projections turns old-style rules into the
  1196 new format.
  1197 
  1198 * Method "coinduct": dual of induction, see
  1199 src/HOL/Library/Coinductive_List.thy for various examples.
  1200 
  1201 * Method "cases", "induct", "coinduct": the ``(open)'' option is
  1202 considered a legacy feature.
  1203 
  1204 * Attribute "symmetric" produces result with standardized schematic
  1205 variables (index 0).  Potential INCOMPATIBILITY.
  1206 
  1207 * Simplifier: by default the simplifier trace only shows top level
  1208 rewrites now. That is, trace_simp_depth_limit is set to 1 by
  1209 default. Thus there is less danger of being flooded by the trace. The
  1210 trace indicates where parts have been suppressed.
  1211   
  1212 * Provers/classical: removed obsolete classical version of elim_format
  1213 attribute; classical elim/dest rules are now treated uniformly when
  1214 manipulating the claset.
  1215 
  1216 * Provers/classical: stricter checks to ensure that supplied intro,
  1217 dest and elim rules are well-formed; dest and elim rules must have at
  1218 least one premise.
  1219 
  1220 * Provers/classical: attributes dest/elim/intro take an optional
  1221 weight argument for the rule (just as the Pure versions).  Weights are
  1222 ignored by automated tools, but determine the search order of single
  1223 rule steps.
  1224 
  1225 * Syntax: input syntax now supports dummy variable binding "%_. b",
  1226 where the body does not mention the bound variable.  Note that dummy
  1227 patterns implicitly depend on their context of bounds, which makes
  1228 "{_. _}" match any set comprehension as expected.  Potential
  1229 INCOMPATIBILITY -- parse translations need to cope with syntactic
  1230 constant "_idtdummy" in the binding position.
  1231 
  1232 * Syntax: removed obsolete syntactic constant "_K" and its associated
  1233 parse translation.  INCOMPATIBILITY -- use dummy abstraction instead,
  1234 for example "A -> B" => "Pi A (%_. B)".
  1235 
  1236 * Pure: 'class_deps' command visualizes the subclass relation, using
  1237 the graph browser tool.
  1238 
  1239 * Pure: 'print_theory' now suppresses certain internal declarations by
  1240 default; use '!' option for full details.
  1241 
  1242 
  1243 *** HOL ***
  1244 
  1245 * Method "metis" proves goals by applying the Metis general-purpose
  1246 resolution prover (see also http://gilith.com/software/metis/).
  1247 Examples are in the directory MetisExamples.  WARNING: the
  1248 Isabelle/HOL-Metis integration does not yet work properly with
  1249 multi-threading.
  1250   
  1251 * Command 'sledgehammer' invokes external automatic theorem provers as
  1252 background processes.  It generates calls to the "metis" method if
  1253 successful. These can be pasted into the proof.  Users do not have to
  1254 wait for the automatic provers to return.  WARNING: does not really
  1255 work with multi-threading.
  1256 
  1257 * New "auto_quickcheck" feature tests outermost goal statements for
  1258 potential counter-examples.  Controlled by ML references
  1259 auto_quickcheck (default true) and auto_quickcheck_time_limit (default
  1260 5000 milliseconds).  Fails silently if statements is outside of
  1261 executable fragment, or any other codgenerator problem occurs.
  1262 
  1263 * New constant "undefined" with axiom "undefined x = undefined".
  1264 
  1265 * Added class "HOL.eq", allowing for code generation with polymorphic
  1266 equality.
  1267 
  1268 * Some renaming of class constants due to canonical name prefixing in
  1269 the new 'class' package:
  1270 
  1271     HOL.abs ~> HOL.abs_class.abs
  1272     HOL.divide ~> HOL.divide_class.divide
  1273     0 ~> HOL.zero_class.zero
  1274     1 ~> HOL.one_class.one
  1275     op + ~> HOL.plus_class.plus
  1276     op - ~> HOL.minus_class.minus
  1277     uminus ~> HOL.minus_class.uminus
  1278     op * ~> HOL.times_class.times
  1279     op < ~> HOL.ord_class.less
  1280     op <= > HOL.ord_class.less_eq
  1281     Nat.power ~> Power.power_class.power
  1282     Nat.size ~> Nat.size_class.size
  1283     Numeral.number_of ~> Numeral.number_class.number_of
  1284     FixedPoint.Inf ~> Lattices.complete_lattice_class.Inf
  1285     FixedPoint.Sup ~> Lattices.complete_lattice_class.Sup
  1286     Orderings.min ~> Orderings.ord_class.min
  1287     Orderings.max ~> Orderings.ord_class.max
  1288     Divides.op div ~> Divides.div_class.div
  1289     Divides.op mod ~> Divides.div_class.mod
  1290     Divides.op dvd ~> Divides.div_class.dvd
  1291 
  1292 INCOMPATIBILITY.  Adaptions may be required in the following cases:
  1293 
  1294 a) User-defined constants using any of the names "plus", "minus",
  1295 "times", "less" or "less_eq". The standard syntax translations for
  1296 "+", "-" and "*" may go wrong.  INCOMPATIBILITY: use more specific
  1297 names.
  1298 
  1299 b) Variables named "plus", "minus", "times", "less", "less_eq"
  1300 INCOMPATIBILITY: use more specific names.
  1301 
  1302 c) Permutative equations (e.g. "a + b = b + a")
  1303 Since the change of names also changes the order of terms, permutative
  1304 rewrite rules may get applied in a different order. Experience shows
  1305 that this is rarely the case (only two adaptions in the whole Isabelle
  1306 distribution).  INCOMPATIBILITY: rewrite proofs
  1307 
  1308 d) ML code directly refering to constant names
  1309 This in general only affects hand-written proof tactics, simprocs and
  1310 so on.  INCOMPATIBILITY: grep your sourcecode and replace names.
  1311 Consider using @{const_name} antiquotation.
  1312 
  1313 * New class "default" with associated constant "default".
  1314 
  1315 * Function "sgn" is now overloaded and available on int, real, complex
  1316 (and other numeric types), using class "sgn".  Two possible defs of
  1317 sgn are given as equational assumptions in the classes sgn_if and
  1318 sgn_div_norm; ordered_idom now also inherits from sgn_if.
  1319 INCOMPATIBILITY.
  1320 
  1321 * Locale "partial_order" now unified with class "order" (cf. theory
  1322 Orderings), added parameter "less".  INCOMPATIBILITY.
  1323 
  1324 * Renamings in classes "order" and "linorder": facts "refl", "trans" and
  1325 "cases" to "order_refl", "order_trans" and "linorder_cases", to avoid
  1326 clashes with HOL "refl" and "trans".  INCOMPATIBILITY.
  1327 
  1328 * Classes "order" and "linorder": potential INCOMPATIBILITY due to
  1329 changed order of proof goals in instance proofs.
  1330 
  1331 * The transitivity reasoner for partial and linear orders is set up
  1332 for classes "order" and "linorder".  Instances of the reasoner are available
  1333 in all contexts importing or interpreting the corresponding locales.
  1334 Method "order" invokes the reasoner separately; the reasoner
  1335 is also integrated with the Simplifier as a solver.  Diagnostic
  1336 command 'print_orders' shows the available instances of the reasoner
  1337 in the current context.
  1338 
  1339 * Localized monotonicity predicate in theory "Orderings"; integrated
  1340 lemmas max_of_mono and min_of_mono with this predicate.
  1341 INCOMPATIBILITY.
  1342 
  1343 * Formulation of theorem "dense" changed slightly due to integration
  1344 with new class dense_linear_order.
  1345 
  1346 * Uniform lattice theory development in HOL.
  1347 
  1348     constants "meet" and "join" now named "inf" and "sup"
  1349     constant "Meet" now named "Inf"
  1350 
  1351     classes "meet_semilorder" and "join_semilorder" now named
  1352       "lower_semilattice" and "upper_semilattice"
  1353     class "lorder" now named "lattice"
  1354     class "comp_lat" now named "complete_lattice"
  1355 
  1356     Instantiation of lattice classes allows explicit definitions
  1357     for "inf" and "sup" operations (or "Inf" and "Sup" for complete lattices).
  1358 
  1359   INCOMPATIBILITY.  Theorem renames:
  1360 
  1361     meet_left_le            ~> inf_le1
  1362     meet_right_le           ~> inf_le2
  1363     join_left_le            ~> sup_ge1
  1364     join_right_le           ~> sup_ge2
  1365     meet_join_le            ~> inf_sup_ord
  1366     le_meetI                ~> le_infI
  1367     join_leI                ~> le_supI
  1368     le_meet                 ~> le_inf_iff
  1369     le_join                 ~> ge_sup_conv
  1370     meet_idempotent         ~> inf_idem
  1371     join_idempotent         ~> sup_idem
  1372     meet_comm               ~> inf_commute
  1373     join_comm               ~> sup_commute
  1374     meet_leI1               ~> le_infI1
  1375     meet_leI2               ~> le_infI2
  1376     le_joinI1               ~> le_supI1
  1377     le_joinI2               ~> le_supI2
  1378     meet_assoc              ~> inf_assoc
  1379     join_assoc              ~> sup_assoc
  1380     meet_left_comm          ~> inf_left_commute
  1381     meet_left_idempotent    ~> inf_left_idem
  1382     join_left_comm          ~> sup_left_commute
  1383     join_left_idempotent    ~> sup_left_idem
  1384     meet_aci                ~> inf_aci
  1385     join_aci                ~> sup_aci
  1386     le_def_meet             ~> le_iff_inf
  1387     le_def_join             ~> le_iff_sup
  1388     join_absorp2            ~> sup_absorb2
  1389     join_absorp1            ~> sup_absorb1
  1390     meet_absorp1            ~> inf_absorb1
  1391     meet_absorp2            ~> inf_absorb2
  1392     meet_join_absorp        ~> inf_sup_absorb
  1393     join_meet_absorp        ~> sup_inf_absorb
  1394     distrib_join_le         ~> distrib_sup_le
  1395     distrib_meet_le         ~> distrib_inf_le
  1396 
  1397     add_meet_distrib_left   ~> add_inf_distrib_left
  1398     add_join_distrib_left   ~> add_sup_distrib_left
  1399     is_join_neg_meet        ~> is_join_neg_inf
  1400     is_meet_neg_join        ~> is_meet_neg_sup
  1401     add_meet_distrib_right  ~> add_inf_distrib_right
  1402     add_join_distrib_right  ~> add_sup_distrib_right
  1403     add_meet_join_distribs  ~> add_sup_inf_distribs
  1404     join_eq_neg_meet        ~> sup_eq_neg_inf
  1405     meet_eq_neg_join        ~> inf_eq_neg_sup
  1406     add_eq_meet_join        ~> add_eq_inf_sup
  1407     meet_0_imp_0            ~> inf_0_imp_0
  1408     join_0_imp_0            ~> sup_0_imp_0
  1409     meet_0_eq_0             ~> inf_0_eq_0
  1410     join_0_eq_0             ~> sup_0_eq_0
  1411     neg_meet_eq_join        ~> neg_inf_eq_sup
  1412     neg_join_eq_meet        ~> neg_sup_eq_inf
  1413     join_eq_if              ~> sup_eq_if
  1414 
  1415     mono_meet               ~> mono_inf
  1416     mono_join               ~> mono_sup
  1417     meet_bool_eq            ~> inf_bool_eq
  1418     join_bool_eq            ~> sup_bool_eq
  1419     meet_fun_eq             ~> inf_fun_eq
  1420     join_fun_eq             ~> sup_fun_eq
  1421     meet_set_eq             ~> inf_set_eq
  1422     join_set_eq             ~> sup_set_eq
  1423     meet1_iff               ~> inf1_iff
  1424     meet2_iff               ~> inf2_iff
  1425     meet1I                  ~> inf1I
  1426     meet2I                  ~> inf2I
  1427     meet1D1                 ~> inf1D1
  1428     meet2D1                 ~> inf2D1
  1429     meet1D2                 ~> inf1D2
  1430     meet2D2                 ~> inf2D2
  1431     meet1E                  ~> inf1E
  1432     meet2E                  ~> inf2E
  1433     join1_iff               ~> sup1_iff
  1434     join2_iff               ~> sup2_iff
  1435     join1I1                 ~> sup1I1
  1436     join2I1                 ~> sup2I1
  1437     join1I1                 ~> sup1I1
  1438     join2I2                 ~> sup1I2
  1439     join1CI                 ~> sup1CI
  1440     join2CI                 ~> sup2CI
  1441     join1E                  ~> sup1E
  1442     join2E                  ~> sup2E
  1443 
  1444     is_meet_Meet            ~> is_meet_Inf
  1445     Meet_bool_def           ~> Inf_bool_def
  1446     Meet_fun_def            ~> Inf_fun_def
  1447     Meet_greatest           ~> Inf_greatest
  1448     Meet_lower              ~> Inf_lower
  1449     Meet_set_def            ~> Inf_set_def
  1450 
  1451     Sup_def                 ~> Sup_Inf
  1452     Sup_bool_eq             ~> Sup_bool_def
  1453     Sup_fun_eq              ~> Sup_fun_def
  1454     Sup_set_eq              ~> Sup_set_def
  1455 
  1456     listsp_meetI            ~> listsp_infI
  1457     listsp_meet_eq          ~> listsp_inf_eq
  1458 
  1459     meet_min                ~> inf_min
  1460     join_max                ~> sup_max
  1461 
  1462 * Added syntactic class "size"; overloaded constant "size" now has
  1463 type "'a::size ==> bool"
  1464 
  1465 * Internal reorganisation of `size' of datatypes: size theorems
  1466 "foo.size" are no longer subsumed by "foo.simps" (but are still
  1467 simplification rules by default!); theorems "prod.size" now named
  1468 "*.size".
  1469 
  1470 * Class "div" now inherits from class "times" rather than "type".
  1471 INCOMPATIBILITY.
  1472 
  1473 * HOL/Finite_Set: "name-space" locales Lattice, Distrib_lattice,
  1474 Linorder etc.  have disappeared; operations defined in terms of
  1475 fold_set now are named Inf_fin, Sup_fin.  INCOMPATIBILITY.
  1476 
  1477 * HOL/Nat: neq0_conv no longer declared as iff.  INCOMPATIBILITY.
  1478 
  1479 * HOL-Word: New extensive library and type for generic, fixed size
  1480 machine words, with arithemtic, bit-wise, shifting and rotating
  1481 operations, reflection into int, nat, and bool lists, automation for
  1482 linear arithmetic (by automatic reflection into nat or int), including
  1483 lemmas on overflow and monotonicity.  Instantiated to all appropriate
  1484 arithmetic type classes, supporting automatic simplification of
  1485 numerals on all operations.
  1486 
  1487 * Library/Boolean_Algebra: locales for abstract boolean algebras.
  1488 
  1489 * Library/Numeral_Type: numbers as types, e.g. TYPE(32).
  1490 
  1491 * Code generator library theories:
  1492   - Code_Integer represents HOL integers by big integer literals in target
  1493     languages.
  1494   - Code_Char represents HOL characters by character literals in target
  1495     languages.
  1496   - Code_Char_chr like Code_Char, but also offers treatment of character
  1497     codes; includes Code_Integer.
  1498   - Executable_Set allows to generate code for finite sets using lists.
  1499   - Executable_Rat implements rational numbers as triples (sign, enumerator,
  1500     denominator).
  1501   - Executable_Real implements a subset of real numbers, namly those
  1502     representable by rational numbers.
  1503   - Efficient_Nat implements natural numbers by integers, which in general will
  1504     result in higher efficency; pattern matching with 0/Suc is eliminated;
  1505     includes Code_Integer.
  1506   - Code_Index provides an additional datatype index which is mapped to
  1507     target-language built-in integers.
  1508   - Code_Message provides an additional datatype message_string which is isomorphic to
  1509     strings; messages are mapped to target-language strings.
  1510 
  1511 * New package for inductive predicates
  1512 
  1513   An n-ary predicate p with m parameters z_1, ..., z_m can now be defined via
  1514 
  1515     inductive
  1516       p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
  1517       for z_1 :: U_1 and ... and z_n :: U_m
  1518     where
  1519       rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n"
  1520     | ...
  1521 
  1522   with full support for type-inference, rather than
  1523 
  1524     consts s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
  1525 
  1526     abbreviation p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
  1527     where "p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m"
  1528 
  1529     inductive "s z_1 ... z_m"
  1530     intros
  1531       rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m"
  1532       ...
  1533 
  1534   For backward compatibility, there is a wrapper allowing inductive
  1535   sets to be defined with the new package via
  1536 
  1537     inductive_set
  1538       s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
  1539       for z_1 :: U_1 and ... and z_n :: U_m
  1540     where
  1541       rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m"
  1542     | ...
  1543 
  1544   or
  1545 
  1546     inductive_set
  1547       s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
  1548       and p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
  1549       for z_1 :: U_1 and ... and z_n :: U_m
  1550     where
  1551       "p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m"
  1552     | rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n"
  1553     | ...
  1554 
  1555   if the additional syntax "p ..." is required.
  1556 
  1557   Numerous examples can be found in the subdirectories src/HOL/Auth,
  1558   src/HOL/Bali, src/HOL/Induct, and src/HOL/MicroJava.
  1559 
  1560   INCOMPATIBILITIES:
  1561 
  1562   - Since declaration and definition of inductive sets or predicates
  1563     is no longer separated, abbreviations involving the newly
  1564     introduced sets or predicates must be specified together with the
  1565     introduction rules after the 'where' keyword (see above), rather
  1566     than before the actual inductive definition.
  1567 
  1568   - The variables in induction and elimination rules are now
  1569     quantified in the order of their occurrence in the introduction
  1570     rules, rather than in alphabetical order. Since this may break
  1571     some proofs, these proofs either have to be repaired, e.g. by
  1572     reordering the variables a_i_1 ... a_i_{k_i} in Isar 'case'
  1573     statements of the form
  1574 
  1575       case (rule_i a_i_1 ... a_i_{k_i})
  1576 
  1577     or the old order of quantification has to be restored by explicitly adding
  1578     meta-level quantifiers in the introduction rules, i.e.
  1579 
  1580       | rule_i: "!!a_i_1 ... a_i_{k_i}. ... ==> p z_1 ... z_m t_i_1 ... t_i_n"
  1581 
  1582   - The format of the elimination rules is now
  1583 
  1584       p z_1 ... z_m x_1 ... x_n ==>
  1585         (!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P)
  1586         ==> ... ==> P
  1587 
  1588     for predicates and
  1589 
  1590       (x_1, ..., x_n) : s z_1 ... z_m ==>
  1591         (!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P)
  1592         ==> ... ==> P
  1593 
  1594     for sets rather than
  1595 
  1596       x : s z_1 ... z_m ==>
  1597         (!!a_1_1 ... a_1_{k_1}. x = (t_1_1, ..., t_1_n) ==> ... ==> P)
  1598         ==> ... ==> P
  1599 
  1600     This may require terms in goals to be expanded to n-tuples
  1601     (e.g. using case_tac or simplification with the split_paired_all
  1602     rule) before the above elimination rule is applicable.
  1603 
  1604   - The elimination or case analysis rules for (mutually) inductive
  1605     sets or predicates are now called "p_1.cases" ... "p_k.cases". The
  1606     list of rules "p_1_..._p_k.elims" is no longer available.
  1607 
  1608 * New package "function"/"fun" for general recursive functions,
  1609 supporting mutual and nested recursion, definitions in local contexts,
  1610 more general pattern matching and partiality. See HOL/ex/Fundefs.thy
  1611 for small examples, and the separate tutorial on the function
  1612 package. The old recdef "package" is still available as before, but
  1613 users are encouraged to use the new package.
  1614 
  1615 * Method "lexicographic_order" automatically synthesizes termination
  1616 relations as lexicographic combinations of size measures. 
  1617 
  1618 * Case-expressions allow arbitrary constructor-patterns (including
  1619 "_") and take their order into account, like in functional
  1620 programming.  Internally, this is translated into nested
  1621 case-expressions; missing cases are added and mapped to the predefined
  1622 constant "undefined". In complicated cases printing may no longer show
  1623 the original input but the internal form. Lambda-abstractions allow
  1624 the same form of pattern matching: "% pat1 => e1 | ..." is an
  1625 abbreviation for "%x. case x of pat1 => e1 | ..." where x is a new
  1626 variable.
  1627 
  1628 * IntDef: The constant "int :: nat => int" has been removed; now "int"
  1629 is an abbreviation for "of_nat :: nat => int". The simplification
  1630 rules for "of_nat" have been changed to work like "int" did
  1631 previously.  Potential INCOMPATIBILITY:
  1632   - "of_nat (Suc m)" simplifies to "1 + of_nat m" instead of "of_nat m + 1"
  1633   - of_nat_diff and of_nat_mult are no longer default simp rules
  1634 
  1635 * Method "algebra" solves polynomial equations over (semi)rings using
  1636 Groebner bases. The (semi)ring structure is defined by locales and the
  1637 tool setup depends on that generic context. Installing the method for
  1638 a specific type involves instantiating the locale and possibly adding
  1639 declarations for computation on the coefficients.  The method is
  1640 already instantiated for natural numbers and for the axiomatic class
  1641 of idoms with numerals.  See also the paper by Chaieb and Wenzel at
  1642 CALCULEMUS 2007 for the general principles underlying this
  1643 architecture of context-aware proof-tools.
  1644 
  1645 * Method "ferrack" implements quantifier elimination over
  1646 special-purpose dense linear orders using locales (analogous to
  1647 "algebra"). The method is already installed for class
  1648 {ordered_field,recpower,number_ring} which subsumes real, hyperreal,
  1649 rat, etc.
  1650 
  1651 * Former constant "List.op @" now named "List.append".  Use ML
  1652 antiquotations @{const_name List.append} or @{term " ... @ ... "} to
  1653 circumvent possible incompatibilities when working on ML level.
  1654 
  1655 * primrec: missing cases mapped to "undefined" instead of "arbitrary".
  1656 
  1657 * New function listsum :: 'a list => 'a for arbitrary monoids.
  1658 Special syntax: "SUM x <- xs. f x" (and latex variants)
  1659 
  1660 * New syntax for Haskell-like list comprehension (input only), eg.
  1661 [(x,y). x <- xs, y <- ys, x ~= y], see also src/HOL/List.thy.
  1662 
  1663 * The special syntax for function "filter" has changed from [x :
  1664 xs. P] to [x <- xs. P] to avoid an ambiguity caused by list
  1665 comprehension syntax, and for uniformity.  INCOMPATIBILITY.
  1666 
  1667 * [a..b] is now defined for arbitrary linear orders.  It used to be
  1668 defined on nat only, as an abbreviation for [a..<Suc b]
  1669 INCOMPATIBILITY.
  1670 
  1671 * Renamed lemma "set_take_whileD"  to "set_takeWhileD".
  1672 
  1673 * New functions "sorted" and "sort" in src/HOL/List.thy.
  1674 
  1675 * New lemma collection field_simps (an extension of ring_simps) for
  1676 manipulating (in)equations involving division. Multiplies with all
  1677 denominators that can be proved to be non-zero (in equations) or
  1678 positive/negative (in inequations).
  1679 
  1680 * Lemma collections ring_eq_simps, group_eq_simps and ring_distrib
  1681 have been improved and renamed to ring_simps, group_simps and
  1682 ring_distribs.  Removed lemmas field_xyz in theory Ring_and_Field
  1683 because they were subsumed by lemmas xyz.  INCOMPATIBILITY.
  1684 
  1685 * Theory Library/Commutative_Ring: switched from recdef to function
  1686 package; constants add, mul, pow now curried.  Infix syntax for
  1687 algebraic operations.
  1688 
  1689 * Dropped redundant lemma def_imp_eq in favor of meta_eq_to_obj_eq.
  1690 INCOMPATIBILITY.
  1691 
  1692 * Dropped redundant lemma if_def2 in favor of if_bool_eq_conj.
  1693 INCOMPATIBILITY.
  1694 
  1695 * HOL/records: generalised field-update to take a function on the
  1696 field rather than the new value: r(|A := x|) is translated to A_update
  1697 (K x) r The K-combinator that is internally used is called K_record.
  1698 INCOMPATIBILITY: Usage of the plain update functions has to be
  1699 adapted.
  1700  
  1701 * Class "semiring_0" now contains annihilation axioms x * 0 = 0 and 0
  1702 * x = 0, which are required for a semiring.  Richer structures do not
  1703 inherit from semiring_0 anymore, because this property is a theorem
  1704 there, not an axiom.  INCOMPATIBILITY: In instances of semiring_0,
  1705 there is more to prove, but this is mostly trivial.
  1706 
  1707 * Class "recpower" is generalized to arbitrary monoids, not just
  1708 commutative semirings.  INCOMPATIBILITY: may need to incorporate
  1709 commutativity or semiring properties additionally.
  1710 
  1711 * Constant "List.list_all2" in List.thy now uses authentic syntax.
  1712 INCOMPATIBILITY: translations containing list_all2 may go wrong,
  1713 better use 'abbreviation'.
  1714 
  1715 * Renamed constant "List.op mem" to "List.member".  INCOMPATIBILITY.
  1716 
  1717 * Numeral syntax: type 'bin' which was a mere type copy of 'int' has
  1718 been abandoned in favour of plain 'int'.  INCOMPATIBILITY --
  1719 significant changes for setting up numeral syntax for types:
  1720   - New constants Numeral.pred and Numeral.succ instead
  1721       of former Numeral.bin_pred and Numeral.bin_succ.
  1722   - Use integer operations instead of bin_add, bin_mult and so on.
  1723   - Numeral simplification theorems named Numeral.numeral_simps instead of Bin_simps.
  1724   - ML structure Bin_Simprocs now named Int_Numeral_Base_Simprocs.
  1725 
  1726 See src/HOL/Integ/IntArith.thy for an example setup.
  1727 
  1728 * Command 'normal_form' computes the normal form of a term that may
  1729 contain free variables.  For example ``normal_form "rev [a, b, c]"''
  1730 produces ``[b, c, a]'' (without proof).  This command is suitable for
  1731 heavy-duty computations because the functions are compiled to ML
  1732 first.  Correspondingly, a method "normalization" is provided.  See
  1733 further src/HOL/ex/NormalForm.thy and src/Tools/nbe.ML.
  1734 
  1735 * Alternative iff syntax "A <-> B" for equality on bool (with priority
  1736 25 like -->); output depends on the "iff" print_mode, the default is
  1737 "A = B" (with priority 50).
  1738 
  1739 * Relations less (<) and less_eq (<=) are also available on type bool.
  1740 Modified syntax to disallow nesting without explicit parentheses,
  1741 e.g. "(x < y) < z" or "x < (y < z)", but NOT "x < y < z".  Potential
  1742 INCOMPATIBILITY.
  1743 
  1744 * "LEAST x:A. P" expands to "LEAST x. x:A & P" (input only).
  1745 
  1746 * Relation composition operator "op O" now has precedence 75 and binds
  1747 stronger than union and intersection. INCOMPATIBILITY.
  1748 
  1749 * The old set interval syntax "{m..n(}" (and relatives) has been
  1750 removed.  Use "{m..<n}" (and relatives) instead.
  1751 
  1752 * In the context of the assumption "~(s = t)" the Simplifier rewrites
  1753 "t = s" to False (by simproc "neq").  INCOMPATIBILITY, consider using
  1754 ``declare [[simproc del: neq]]''.
  1755 
  1756 * Simplifier: "m dvd n" where m and n are numbers is evaluated to
  1757 True/False.
  1758 
  1759 * Theorem Cons_eq_map_conv no longer declared as "simp".
  1760 
  1761 * Theorem setsum_mult renamed to setsum_right_distrib.
  1762 
  1763 * Prefer ex1I over ex_ex1I in single-step reasoning, e.g. by the
  1764 ``rule'' method.
  1765 
  1766 * Reimplemented methods "sat" and "satx", with several improvements:
  1767 goals no longer need to be stated as "<prems> ==> False", equivalences
  1768 (i.e. "=" on type bool) are handled, variable names of the form
  1769 "lit_<n>" are no longer reserved, significant speedup.
  1770 
  1771 * Methods "sat" and "satx" can now replay MiniSat proof traces.
  1772 zChaff is still supported as well.
  1773 
  1774 * 'inductive' and 'datatype': provide projections of mutual rules,
  1775 bundled as foo_bar.inducts;
  1776 
  1777 * Library: moved theories Parity, GCD, Binomial, Infinite_Set to
  1778 Library.
  1779 
  1780 * Library: moved theory Accessible_Part to main HOL.
  1781 
  1782 * Library: added theory Coinductive_List of potentially infinite lists
  1783 as greatest fixed-point.
  1784 
  1785 * Library: added theory AssocList which implements (finite) maps as
  1786 association lists.
  1787 
  1788 * Method "evaluation" solves goals (i.e. a boolean expression)
  1789 efficiently by compiling it to ML.  The goal is "proved" (via an
  1790 oracle) if it evaluates to True.
  1791 
  1792 * Linear arithmetic now splits certain operators (e.g. min, max, abs)
  1793 also when invoked by the simplifier.  This results in the Simplifier
  1794 being more powerful on arithmetic goals.  INCOMPATIBILITY.
  1795 Configuration option fast_arith_split_limit=0 recovers the old
  1796 behavior.
  1797 
  1798 * Support for hex (0x20) and binary (0b1001) numerals.
  1799 
  1800 * New method: reify eqs (t), where eqs are equations for an
  1801 interpretation I :: 'a list => 'b => 'c and t::'c is an optional
  1802 parameter, computes a term s::'b and a list xs::'a list and proves the
  1803 theorem I xs s = t. This is also known as reification or quoting. The
  1804 resulting theorem is applied to the subgoal to substitute t with I xs
  1805 s.  If t is omitted, the subgoal itself is reified.
  1806 
  1807 * New method: reflection corr_thm eqs (t). The parameters eqs and (t)
  1808 are as explained above. corr_thm is a theorem for I vs (f t) = I vs t,
  1809 where f is supposed to be a computable function (in the sense of code
  1810 generattion). The method uses reify to compute s and xs as above then
  1811 applies corr_thm and uses normalization by evaluation to "prove" f s =
  1812 r and finally gets the theorem t = r, which is again applied to the
  1813 subgoal. An Example is available in src/HOL/ex/ReflectionEx.thy.
  1814 
  1815 * Reflection: Automatic reification now handels binding, an example is
  1816 available in src/HOL/ex/ReflectionEx.thy
  1817 
  1818 * HOL-Statespace: ``State Spaces: The Locale Way'' introduces a
  1819 command 'statespace' that is similar to 'record', but introduces an
  1820 abstract specification based on the locale infrastructure instead of
  1821 HOL types.  This leads to extra flexibility in composing state spaces,
  1822 in particular multiple inheritance and renaming of components.
  1823 
  1824 
  1825 *** HOL-Complex ***
  1826 
  1827 * Hyperreal: Functions root and sqrt are now defined on negative real
  1828 inputs so that root n (- x) = - root n x and sqrt (- x) = - sqrt x.
  1829 Nonnegativity side conditions have been removed from many lemmas, so
  1830 that more subgoals may now be solved by simplification; potential
  1831 INCOMPATIBILITY.
  1832 
  1833 * Real: new type classes formalize real normed vector spaces and
  1834 algebras, using new overloaded constants scaleR :: real => 'a => 'a
  1835 and norm :: 'a => real.
  1836 
  1837 * Real: constant of_real :: real => 'a::real_algebra_1 injects from
  1838 reals into other types. The overloaded constant Reals :: 'a set is now
  1839 defined as range of_real; potential INCOMPATIBILITY.
  1840 
  1841 * Real: proper support for ML code generation, including 'quickcheck'.
  1842 Reals are implemented as arbitrary precision rationals.
  1843 
  1844 * Hyperreal: Several constants that previously worked only for the
  1845 reals have been generalized, so they now work over arbitrary vector
  1846 spaces. Type annotations may need to be added in some cases; potential
  1847 INCOMPATIBILITY.
  1848 
  1849   Infinitesimal  :: ('a::real_normed_vector) star set
  1850   HFinite        :: ('a::real_normed_vector) star set
  1851   HInfinite      :: ('a::real_normed_vector) star set
  1852   approx         :: ('a::real_normed_vector) star => 'a star => bool
  1853   monad          :: ('a::real_normed_vector) star => 'a star set
  1854   galaxy         :: ('a::real_normed_vector) star => 'a star set
  1855   (NS)LIMSEQ     :: [nat => 'a::real_normed_vector, 'a] => bool
  1856   (NS)convergent :: (nat => 'a::real_normed_vector) => bool
  1857   (NS)Bseq       :: (nat => 'a::real_normed_vector) => bool
  1858   (NS)Cauchy     :: (nat => 'a::real_normed_vector) => bool
  1859   (NS)LIM        :: ['a::real_normed_vector => 'b::real_normed_vector, 'a, 'b] => bool
  1860   is(NS)Cont     :: ['a::real_normed_vector => 'b::real_normed_vector, 'a] => bool
  1861   deriv          :: ['a::real_normed_field => 'a, 'a, 'a] => bool
  1862   sgn            :: 'a::real_normed_vector => 'a
  1863   exp            :: 'a::{recpower,real_normed_field,banach} => 'a
  1864 
  1865 * Complex: Some complex-specific constants are now abbreviations for
  1866 overloaded ones: complex_of_real = of_real, cmod = norm, hcmod =
  1867 hnorm.  Other constants have been entirely removed in favor of the
  1868 polymorphic versions (INCOMPATIBILITY):
  1869 
  1870   approx        <-- capprox
  1871   HFinite       <-- CFinite
  1872   HInfinite     <-- CInfinite
  1873   Infinitesimal <-- CInfinitesimal
  1874   monad         <-- cmonad
  1875   galaxy        <-- cgalaxy
  1876   (NS)LIM       <-- (NS)CLIM, (NS)CRLIM
  1877   is(NS)Cont    <-- is(NS)Contc, is(NS)contCR
  1878   (ns)deriv     <-- (ns)cderiv
  1879 
  1880 
  1881 *** HOL-Algebra ***
  1882 
  1883 * Formalisation of ideals and the quotient construction over rings.
  1884 
  1885 * Order and lattice theory no longer based on records.
  1886 INCOMPATIBILITY.
  1887 
  1888 * Renamed lemmas least_carrier -> least_closed and greatest_carrier ->
  1889 greatest_closed.  INCOMPATIBILITY.
  1890 
  1891 * Method algebra is now set up via an attribute.  For examples see
  1892 Ring.thy.  INCOMPATIBILITY: the method is now weaker on combinations
  1893 of algebraic structures.
  1894 
  1895 * Renamed theory CRing to Ring.
  1896 
  1897 
  1898 *** HOL-Nominal ***
  1899 
  1900 * Substantial, yet incomplete support for nominal datatypes (binding
  1901 structures) based on HOL-Nominal logic.  See src/HOL/Nominal and
  1902 src/HOL/Nominal/Examples.  Prospective users should consult
  1903 http://isabelle.in.tum.de/nominal/
  1904 
  1905 
  1906 *** ML ***
  1907 
  1908 * ML basics: just one true type int, which coincides with IntInf.int
  1909 (even on SML/NJ).
  1910 
  1911 * ML within Isar: antiquotations allow to embed statically-checked
  1912 formal entities in the source, referring to the context available at
  1913 compile-time.  For example:
  1914 
  1915 ML {* @{sort "{zero,one}"} *}
  1916 ML {* @{typ "'a => 'b"} *}
  1917 ML {* @{term "%x. x"} *}
  1918 ML {* @{prop "x == y"} *}
  1919 ML {* @{ctyp "'a => 'b"} *}
  1920 ML {* @{cterm "%x. x"} *}
  1921 ML {* @{cprop "x == y"} *}
  1922 ML {* @{thm asm_rl} *}
  1923 ML {* @{thms asm_rl} *}
  1924 ML {* @{type_name c} *}
  1925 ML {* @{type_syntax c} *}
  1926 ML {* @{const_name c} *}
  1927 ML {* @{const_syntax c} *}
  1928 ML {* @{context} *}
  1929 ML {* @{theory} *}
  1930 ML {* @{theory Pure} *}
  1931 ML {* @{theory_ref} *}
  1932 ML {* @{theory_ref Pure} *}
  1933 ML {* @{simpset} *}
  1934 ML {* @{claset} *}
  1935 ML {* @{clasimpset} *}
  1936 
  1937 The same works for sources being ``used'' within an Isar context.
  1938 
  1939 * ML in Isar: improved error reporting; extra verbosity with
  1940 ML_Context.trace enabled.
  1941 
  1942 * Pure/General/table.ML: the join operations now works via exceptions
  1943 DUP/SAME instead of type option. This is simpler in simple cases, and
  1944 admits slightly more efficient complex applications.
  1945 
  1946 * Pure: 'advanced' translation functions (parse_translation etc.) now
  1947 use Context.generic instead of just theory.
  1948 
  1949 * Pure: datatype Context.generic joins theory/Proof.context and
  1950 provides some facilities for code that works in either kind of
  1951 context, notably GenericDataFun for uniform theory and proof data.
  1952 
  1953 * Pure: simplified internal attribute type, which is now always
  1954 Context.generic * thm -> Context.generic * thm. Global (theory) vs.
  1955 local (Proof.context) attributes have been discontinued, while
  1956 minimizing code duplication. Thm.rule_attribute and
  1957 Thm.declaration_attribute build canonical attributes; see also structure
  1958 Context for further operations on Context.generic, notably
  1959 GenericDataFun. INCOMPATIBILITY, need to adapt attribute type
  1960 declarations and definitions.
  1961 
  1962 * Context data interfaces (Theory/Proof/GenericDataFun): removed
  1963 name/print, uninitialized data defaults to ad-hoc copy of empty value,
  1964 init only required for impure data. INCOMPATIBILITY: empty really need
  1965 to be empty (no dependencies on theory content!)
  1966 
  1967 * Pure/kernel: consts certification ignores sort constraints given in
  1968 signature declarations. (This information is not relevant to the
  1969 logic, but only for type inference.) SIGNIFICANT INTERNAL CHANGE,
  1970 potential INCOMPATIBILITY.
  1971 
  1972 * Pure: axiomatic type classes are now purely definitional, with
  1973 explicit proofs of class axioms and super class relations performed
  1974 internally. See Pure/axclass.ML for the main internal interfaces --
  1975 notably AxClass.define_class supercedes AxClass.add_axclass, and
  1976 AxClass.axiomatize_class/classrel/arity supersede
  1977 Sign.add_classes/classrel/arities.
  1978 
  1979 * Pure/Isar: Args/Attrib parsers operate on Context.generic --
  1980 global/local versions on theory vs. Proof.context have been
  1981 discontinued; Attrib.syntax and Method.syntax have been adapted
  1982 accordingly.  INCOMPATIBILITY, need to adapt parser expressions for
  1983 attributes, methods, etc.
  1984 
  1985 * Pure: several functions of signature "... -> theory -> theory * ..."
  1986 have been reoriented to "... -> theory -> ... * theory" in order to
  1987 allow natural usage in combination with the ||>, ||>>, |-> and
  1988 fold_map combinators.
  1989 
  1990 * Pure: official theorem names (closed derivations) and additional
  1991 comments (tags) are now strictly separate.  Name hints -- which are
  1992 maintained as tags -- may be attached any time without affecting the
  1993 derivation.
  1994 
  1995 * Pure: primitive rule lift_rule now takes goal cterm instead of an
  1996 actual goal state (thm).  Use Thm.lift_rule (Thm.cprem_of st i) to
  1997 achieve the old behaviour.
  1998 
  1999 * Pure: the "Goal" constant is now called "prop", supporting a
  2000 slightly more general idea of ``protecting'' meta-level rule
  2001 statements.
  2002 
  2003 * Pure: Logic.(un)varify only works in a global context, which is now
  2004 enforced instead of silently assumed.  INCOMPATIBILITY, may use
  2005 Logic.legacy_(un)varify as temporary workaround.
  2006 
  2007 * Pure: structure Name provides scalable operations for generating
  2008 internal variable names, notably Name.variants etc.  This replaces
  2009 some popular functions from term.ML:
  2010 
  2011   Term.variant		->  Name.variant
  2012   Term.variantlist	->  Name.variant_list
  2013   Term.invent_names	->  Name.invent_list
  2014 
  2015 Note that low-level renaming rarely occurs in new code -- operations
  2016 from structure Variable are used instead (see below).
  2017 
  2018 * Pure: structure Variable provides fundamental operations for proper
  2019 treatment of fixed/schematic variables in a context.  For example,
  2020 Variable.import introduces fixes for schematics of given facts and
  2021 Variable.export reverses the effect (up to renaming) -- this replaces
  2022 various freeze_thaw operations.
  2023 
  2024 * Pure: structure Goal provides simple interfaces for
  2025 init/conclude/finish and tactical prove operations (replacing former
  2026 Tactic.prove).  Goal.prove is the canonical way to prove results
  2027 within a given context; Goal.prove_global is a degraded version for
  2028 theory level goals, including a global Drule.standard.  Note that
  2029 OldGoals.prove_goalw_cterm has long been obsolete, since it is
  2030 ill-behaved in a local proof context (e.g. with local fixes/assumes or
  2031 in a locale context).
  2032 
  2033 * Pure/Syntax: generic interfaces for parsing (Syntax.parse_term etc.)
  2034 and type checking (Syntax.check_term etc.), with common combinations
  2035 (Syntax.read_term etc.). These supersede former Sign.read_term etc.
  2036 which are considered legacy and await removal.
  2037 
  2038 * Pure/Syntax: generic interfaces for type unchecking
  2039 (Syntax.uncheck_terms etc.) and unparsing (Syntax.unparse_term etc.),
  2040 with common combinations (Syntax.pretty_term, Syntax.string_of_term
  2041 etc.).  Former Sign.pretty_term, Sign.string_of_term etc. are still
  2042 available for convenience, but refer to the very same operations using
  2043 a mere theory instead of a full context.
  2044 
  2045 * Isar: simplified treatment of user-level errors, using exception
  2046 ERROR of string uniformly.  Function error now merely raises ERROR,
  2047 without any side effect on output channels.  The Isar toplevel takes
  2048 care of proper display of ERROR exceptions.  ML code may use plain
  2049 handle/can/try; cat_error may be used to concatenate errors like this:
  2050 
  2051   ... handle ERROR msg => cat_error msg "..."
  2052 
  2053 Toplevel ML code (run directly or through the Isar toplevel) may be
  2054 embedded into the Isar toplevel with exception display/debug like
  2055 this:
  2056 
  2057   Isar.toplevel (fn () => ...)
  2058 
  2059 INCOMPATIBILITY, removed special transform_error facilities, removed
  2060 obsolete variants of user-level exceptions (ERROR_MESSAGE,
  2061 Context.PROOF, ProofContext.CONTEXT, Proof.STATE, ProofHistory.FAIL)
  2062 -- use plain ERROR instead.
  2063 
  2064 * Isar: theory setup now has type (theory -> theory), instead of a
  2065 list.  INCOMPATIBILITY, may use #> to compose setup functions.
  2066 
  2067 * Isar: ML toplevel pretty printer for type Proof.context, subject to
  2068 ProofContext.debug/verbose flags.
  2069 
  2070 * Isar: Toplevel.theory_to_proof admits transactions that modify the
  2071 theory before entering a proof state.  Transactions now always see a
  2072 quasi-functional intermediate checkpoint, both in interactive and
  2073 batch mode.
  2074 
  2075 * Isar: simplified interfaces for outer syntax.  Renamed
  2076 OuterSyntax.add_keywords to OuterSyntax.keywords.  Removed
  2077 OuterSyntax.add_parsers -- this functionality is now included in
  2078 OuterSyntax.command etc.  INCOMPATIBILITY.
  2079 
  2080 * Simplifier: the simpset of a running simplification process now
  2081 contains a proof context (cf. Simplifier.the_context), which is the
  2082 very context that the initial simpset has been retrieved from (by
  2083 simpset_of/local_simpset_of).  Consequently, all plug-in components
  2084 (solver, looper etc.) may depend on arbitrary proof data.
  2085 
  2086 * Simplifier.inherit_context inherits the proof context (plus the
  2087 local bounds) of the current simplification process; any simproc
  2088 etc. that calls the Simplifier recursively should do this!  Removed
  2089 former Simplifier.inherit_bounds, which is already included here --
  2090 INCOMPATIBILITY.  Tools based on low-level rewriting may even have to
  2091 specify an explicit context using Simplifier.context/theory_context.
  2092 
  2093 * Simplifier/Classical Reasoner: more abstract interfaces
  2094 change_simpset/claset for modifying the simpset/claset reference of a
  2095 theory; raw versions simpset/claset_ref etc. have been discontinued --
  2096 INCOMPATIBILITY.
  2097 
  2098 * Provers: more generic wrt. syntax of object-logics, avoid hardwired
  2099 "Trueprop" etc.
  2100 
  2101 
  2102 *** System ***
  2103 
  2104 * settings: the default heap location within ISABELLE_HOME_USER now
  2105 includes ISABELLE_IDENTIFIER.  This simplifies use of multiple
  2106 Isabelle installations.
  2107 
  2108 * isabelle-process: option -S (secure mode) disables some critical
  2109 operations, notably runtime compilation and evaluation of ML source
  2110 code.
  2111 
  2112 * Basic Isabelle mode for jEdit, see Isabelle/lib/jedit/.
  2113 
  2114 * Support for parallel execution, using native multicore support of
  2115 Poly/ML 5.1.  The theory loader exploits parallelism when processing
  2116 independent theories, according to the given theory header
  2117 specifications. The maximum number of worker threads is specified via
  2118 usedir option -M or the "max-threads" setting in Proof General. A
  2119 speedup factor of 1.5--3.5 can be expected on a 4-core machine, and up
  2120 to 6 on a 8-core machine.  User-code needs to observe certain
  2121 guidelines for thread-safe programming, see appendix A in the Isar
  2122 Implementation manual.
  2123 
  2124 
  2125 
  2126 New in Isabelle2005 (October 2005)
  2127 ----------------------------------
  2128 
  2129 *** General ***
  2130 
  2131 * Theory headers: the new header syntax for Isar theories is
  2132 
  2133   theory <name>
  2134   imports <theory1> ... <theoryN>
  2135   uses <file1> ... <fileM>
  2136   begin
  2137 
  2138 where the 'uses' part is optional.  The previous syntax
  2139 
  2140   theory <name> = <theory1> + ... + <theoryN>:
  2141 
  2142 will disappear in the next release.  Use isatool fixheaders to convert
  2143 existing theory files.  Note that there is no change in ancient
  2144 non-Isar theories now, but these will disappear soon.
  2145 
  2146 * Theory loader: parent theories can now also be referred to via
  2147 relative and absolute paths.
  2148 
  2149 * Command 'find_theorems' searches for a list of criteria instead of a
  2150 list of constants. Known criteria are: intro, elim, dest, name:string,
  2151 simp:term, and any term. Criteria can be preceded by '-' to select
  2152 theorems that do not match. Intro, elim, dest select theorems that
  2153 match the current goal, name:s selects theorems whose fully qualified
  2154 name contain s, and simp:term selects all simplification rules whose
  2155 lhs match term.  Any other term is interpreted as pattern and selects
  2156 all theorems matching the pattern. Available in ProofGeneral under
  2157 'ProofGeneral -> Find Theorems' or C-c C-f.  Example:
  2158 
  2159   C-c C-f (100) "(_::nat) + _ + _" intro -name: "HOL."
  2160 
  2161 prints the last 100 theorems matching the pattern "(_::nat) + _ + _",
  2162 matching the current goal as introduction rule and not having "HOL."
  2163 in their name (i.e. not being defined in theory HOL).
  2164 
  2165 * Command 'thms_containing' has been discontinued in favour of
  2166 'find_theorems'; INCOMPATIBILITY.
  2167 
  2168 * Communication with Proof General is now 8bit clean, which means that
  2169 Unicode text in UTF-8 encoding may be used within theory texts (both
  2170 formal and informal parts).  Cf. option -U of the Isabelle Proof
  2171 General interface.  Here are some simple examples (cf. src/HOL/ex):
  2172 
  2173   http://isabelle.in.tum.de/library/HOL/ex/Hebrew.html
  2174   http://isabelle.in.tum.de/library/HOL/ex/Chinese.html
  2175 
  2176 * Improved efficiency of the Simplifier and, to a lesser degree, the
  2177 Classical Reasoner.  Typical big applications run around 2 times
  2178 faster.
  2179 
  2180 
  2181 *** Document preparation ***
  2182 
  2183 * Commands 'display_drafts' and 'print_drafts' perform simple output
  2184 of raw sources.  Only those symbols that do not require additional
  2185 LaTeX packages (depending on comments in isabellesym.sty) are
  2186 displayed properly, everything else is left verbatim.  isatool display
  2187 and isatool print are used as front ends (these are subject to the
  2188 DVI/PDF_VIEWER and PRINT_COMMAND settings, respectively).
  2189 
  2190 * Command tags control specific markup of certain regions of text,
  2191 notably folding and hiding.  Predefined tags include "theory" (for
  2192 theory begin and end), "proof" for proof commands, and "ML" for
  2193 commands involving ML code; the additional tags "visible" and
  2194 "invisible" are unused by default.  Users may give explicit tag
  2195 specifications in the text, e.g. ''by %invisible (auto)''.  The
  2196 interpretation of tags is determined by the LaTeX job during document
  2197 preparation: see option -V of isatool usedir, or options -n and -t of
  2198 isatool document, or even the LaTeX macros \isakeeptag, \isafoldtag,
  2199 \isadroptag.
  2200 
  2201 Several document versions may be produced at the same time via isatool
  2202 usedir (the generated index.html will link all of them).  Typical
  2203 specifications include ''-V document=theory,proof,ML'' to present
  2204 theory/proof/ML parts faithfully, ''-V outline=/proof,/ML'' to fold
  2205 proof and ML commands, and ''-V mutilated=-theory,-proof,-ML'' to omit
  2206 these parts without any formal replacement text.  The Isabelle site
  2207 default settings produce ''document'' and ''outline'' versions as
  2208 specified above.
  2209 
  2210 * Several new antiquotations:
  2211 
  2212   @{term_type term} prints a term with its type annotated;
  2213 
  2214   @{typeof term} prints the type of a term;
  2215 
  2216   @{const const} is the same as @{term const}, but checks that the
  2217   argument is a known logical constant;
  2218 
  2219   @{term_style style term} and @{thm_style style thm} print a term or
  2220   theorem applying a "style" to it
  2221 
  2222   @{ML text}
  2223 
  2224 Predefined styles are 'lhs' and 'rhs' printing the lhs/rhs of
  2225 definitions, equations, inequations etc., 'concl' printing only the
  2226 conclusion of a meta-logical statement theorem, and 'prem1' .. 'prem19'
  2227 to print the specified premise.  TermStyle.add_style provides an ML
  2228 interface for introducing further styles.  See also the "LaTeX Sugar"
  2229 document practical applications.  The ML antiquotation prints
  2230 type-checked ML expressions verbatim.
  2231 
  2232 * Markup commands 'chapter', 'section', 'subsection', 'subsubsection',
  2233 and 'text' support optional locale specification '(in loc)', which
  2234 specifies the default context for interpreting antiquotations.  For
  2235 example: 'text (in lattice) {* @{thm inf_assoc}*}'.
  2236 
  2237 * Option 'locale=NAME' of antiquotations specifies an alternative
  2238 context interpreting the subsequent argument.  For example: @{thm
  2239 [locale=lattice] inf_assoc}.
  2240 
  2241 * Proper output of proof terms (@{prf ...} and @{full_prf ...}) within
  2242 a proof context.
  2243 
  2244 * Proper output of antiquotations for theory commands involving a
  2245 proof context (such as 'locale' or 'theorem (in loc) ...').
  2246 
  2247 * Delimiters of outer tokens (string etc.) now produce separate LaTeX
  2248 macros (\isachardoublequoteopen, isachardoublequoteclose etc.).
  2249 
  2250 * isatool usedir: new option -C (default true) controls whether option
  2251 -D should include a copy of the original document directory; -C false
  2252 prevents unwanted effects such as copying of administrative CVS data.
  2253 
  2254 
  2255 *** Pure ***
  2256 
  2257 * Considerably improved version of 'constdefs' command.  Now performs
  2258 automatic type-inference of declared constants; additional support for
  2259 local structure declarations (cf. locales and HOL records), see also
  2260 isar-ref manual.  Potential INCOMPATIBILITY: need to observe strictly
  2261 sequential dependencies of definitions within a single 'constdefs'
  2262 section; moreover, the declared name needs to be an identifier.  If
  2263 all fails, consider to fall back on 'consts' and 'defs' separately.
  2264 
  2265 * Improved indexed syntax and implicit structures.  First of all,
  2266 indexed syntax provides a notational device for subscripted
  2267 application, using the new syntax \<^bsub>term\<^esub> for arbitrary
  2268 expressions.  Secondly, in a local context with structure
  2269 declarations, number indexes \<^sub>n or the empty index (default
  2270 number 1) refer to a certain fixed variable implicitly; option
  2271 show_structs controls printing of implicit structures.  Typical
  2272 applications of these concepts involve record types and locales.
  2273 
  2274 * New command 'no_syntax' removes grammar declarations (and
  2275 translations) resulting from the given syntax specification, which is
  2276 interpreted in the same manner as for the 'syntax' command.
  2277 
  2278 * 'Advanced' translation functions (parse_translation etc.) may depend
  2279 on the signature of the theory context being presently used for
  2280 parsing/printing, see also isar-ref manual.
  2281 
  2282 * Improved 'oracle' command provides a type-safe interface to turn an
  2283 ML expression of type theory -> T -> term into a primitive rule of
  2284 type theory -> T -> thm (i.e. the functionality of Thm.invoke_oracle
  2285 is already included here); see also FOL/ex/IffExample.thy;
  2286 INCOMPATIBILITY.
  2287 
  2288 * axclass: name space prefix for class "c" is now "c_class" (was "c"
  2289 before); "cI" is no longer bound, use "c.intro" instead.
  2290 INCOMPATIBILITY.  This change avoids clashes of fact bindings for
  2291 axclasses vs. locales.
  2292 
  2293 * Improved internal renaming of symbolic identifiers -- attach primes
  2294 instead of base 26 numbers.
  2295 
  2296 * New flag show_question_marks controls printing of leading question
  2297 marks in schematic variable names.
  2298 
  2299 * In schematic variable names, *any* symbol following \<^isub> or
  2300 \<^isup> is now treated as part of the base name.  For example, the
  2301 following works without printing of awkward ".0" indexes:
  2302 
  2303   lemma "x\<^isub>1 = x\<^isub>2 ==> x\<^isub>2 = x\<^isub>1"
  2304     by simp
  2305 
  2306 * Inner syntax includes (*(*nested*) comments*).
  2307 
  2308 * Pretty printer now supports unbreakable blocks, specified in mixfix
  2309 annotations as "(00...)".
  2310 
  2311 * Clear separation of logical types and nonterminals, where the latter
  2312 may only occur in 'syntax' specifications or type abbreviations.
  2313 Before that distinction was only partially implemented via type class
  2314 "logic" vs. "{}".  Potential INCOMPATIBILITY in rare cases of improper
  2315 use of 'types'/'consts' instead of 'nonterminals'/'syntax'.  Some very
  2316 exotic syntax specifications may require further adaption
  2317 (e.g. Cube/Cube.thy).
  2318 
  2319 * Removed obsolete type class "logic", use the top sort {} instead.
  2320 Note that non-logical types should be declared as 'nonterminals'
  2321 rather than 'types'.  INCOMPATIBILITY for new object-logic
  2322 specifications.
  2323 
  2324 * Attributes 'induct' and 'cases': type or set names may now be
  2325 locally fixed variables as well.
  2326 
  2327 * Simplifier: can now control the depth to which conditional rewriting
  2328 is traced via the PG menu Isabelle -> Settings -> Trace Simp Depth
  2329 Limit.
  2330 
  2331 * Simplifier: simplification procedures may now take the current
  2332 simpset into account (cf. Simplifier.simproc(_i) / mk_simproc
  2333 interface), which is very useful for calling the Simplifier
  2334 recursively.  Minor INCOMPATIBILITY: the 'prems' argument of simprocs
  2335 is gone -- use prems_of_ss on the simpset instead.  Moreover, the
  2336 low-level mk_simproc no longer applies Logic.varify internally, to
  2337 allow for use in a context of fixed variables.
  2338 
  2339 * thin_tac now works even if the assumption being deleted contains !!
  2340 or ==>.  More generally, erule now works even if the major premise of
  2341 the elimination rule contains !! or ==>.
  2342 
  2343 * Method 'rules' has been renamed to 'iprover'. INCOMPATIBILITY.
  2344 
  2345 * Reorganized bootstrapping of the Pure theories; CPure is now derived
  2346 from Pure, which contains all common declarations already.  Both
  2347 theories are defined via plain Isabelle/Isar .thy files.
  2348 INCOMPATIBILITY: elements of CPure (such as the CPure.intro /
  2349 CPure.elim / CPure.dest attributes) now appear in the Pure name space;
  2350 use isatool fixcpure to adapt your theory and ML sources.
  2351 
  2352 * New syntax 'name(i-j, i-, i, ...)' for referring to specific
  2353 selections of theorems in named facts via index ranges.
  2354 
  2355 * 'print_theorems': in theory mode, really print the difference
  2356 wrt. the last state (works for interactive theory development only),
  2357 in proof mode print all local facts (cf. 'print_facts');
  2358 
  2359 * 'hide': option '(open)' hides only base names.
  2360 
  2361 * More efficient treatment of intermediate checkpoints in interactive
  2362 theory development.
  2363 
  2364 * Code generator is now invoked via code_module (incremental code
  2365 generation) and code_library (modular code generation, ML structures
  2366 for each theory).  INCOMPATIBILITY: new keywords 'file' and 'contains'
  2367 must be quoted when used as identifiers.
  2368 
  2369 * New 'value' command for reading, evaluating and printing terms using
  2370 the code generator.  INCOMPATIBILITY: command keyword 'value' must be
  2371 quoted when used as identifier.
  2372 
  2373 
  2374 *** Locales ***
  2375 
  2376 * New commands for the interpretation of locale expressions in
  2377 theories (1), locales (2) and proof contexts (3).  These generate
  2378 proof obligations from the expression specification.  After the
  2379 obligations have been discharged, theorems of the expression are added
  2380 to the theory, target locale or proof context.  The synopsis of the
  2381 commands is a follows:
  2382 
  2383   (1) interpretation expr inst
  2384   (2) interpretation target < expr
  2385   (3) interpret expr inst
  2386 
  2387 Interpretation in theories and proof contexts require a parameter
  2388 instantiation of terms from the current context.  This is applied to
  2389 specifications and theorems of the interpreted expression.
  2390 Interpretation in locales only permits parameter renaming through the
  2391 locale expression.  Interpretation is smart in that interpretations
  2392 that are active already do not occur in proof obligations, neither are
  2393 instantiated theorems stored in duplicate.  Use 'print_interps' to
  2394 inspect active interpretations of a particular locale.  For details,
  2395 see the Isar Reference manual.  Examples can be found in
  2396 HOL/Finite_Set.thy and HOL/Algebra/UnivPoly.thy.
  2397 
  2398 INCOMPATIBILITY: former 'instantiate' has been withdrawn, use
  2399 'interpret' instead.
  2400 
  2401 * New context element 'constrains' for adding type constraints to
  2402 parameters.
  2403 
  2404 * Context expressions: renaming of parameters with syntax
  2405 redeclaration.
  2406 
  2407 * Locale declaration: 'includes' disallowed.
  2408 
  2409 * Proper static binding of attribute syntax -- i.e. types / terms /
  2410 facts mentioned as arguments are always those of the locale definition
  2411 context, independently of the context of later invocations.  Moreover,
  2412 locale operations (renaming and type / term instantiation) are applied
  2413 to attribute arguments as expected.
  2414 
  2415 INCOMPATIBILITY of the ML interface: always pass Attrib.src instead of
  2416 actual attributes; rare situations may require Attrib.attribute to
  2417 embed those attributes into Attrib.src that lack concrete syntax.
  2418 Attribute implementations need to cooperate properly with the static
  2419 binding mechanism.  Basic parsers Args.XXX_typ/term/prop and
  2420 Attrib.XXX_thm etc. already do the right thing without further
  2421 intervention.  Only unusual applications -- such as "where" or "of"
  2422 (cf. src/Pure/Isar/attrib.ML), which process arguments depending both
  2423 on the context and the facts involved -- may have to assign parsed
  2424 values to argument tokens explicitly.
  2425 
  2426 * Changed parameter management in theorem generation for long goal
  2427 statements with 'includes'.  INCOMPATIBILITY: produces a different
  2428 theorem statement in rare situations.
  2429 
  2430 * Locale inspection command 'print_locale' omits notes elements.  Use
  2431 'print_locale!' to have them included in the output.
  2432 
  2433 
  2434 *** Provers ***
  2435 
  2436 * Provers/hypsubst.ML: improved version of the subst method, for
  2437 single-step rewriting: it now works in bound variable contexts. New is
  2438 'subst (asm)', for rewriting an assumption.  INCOMPATIBILITY: may
  2439 rewrite a different subterm than the original subst method, which is
  2440 still available as 'simplesubst'.
  2441 
  2442 * Provers/quasi.ML: new transitivity reasoners for transitivity only
  2443 and quasi orders.
  2444 
  2445 * Provers/trancl.ML: new transitivity reasoner for transitive and
  2446 reflexive-transitive closure of relations.
  2447 
  2448 * Provers/blast.ML: new reference depth_limit to make blast's depth
  2449 limit (previously hard-coded with a value of 20) user-definable.
  2450 
  2451 * Provers/simplifier.ML has been moved to Pure, where Simplifier.setup
  2452 is peformed already.  Object-logics merely need to finish their
  2453 initial simpset configuration as before.  INCOMPATIBILITY.
  2454 
  2455 
  2456 *** HOL ***
  2457 
  2458 * Symbolic syntax of Hilbert Choice Operator is now as follows:
  2459 
  2460   syntax (epsilon)
  2461     "_Eps" :: "[pttrn, bool] => 'a"    ("(3\<some>_./ _)" [0, 10] 10)
  2462 
  2463 The symbol \<some> is displayed as the alternative epsilon of LaTeX
  2464 and x-symbol; use option '-m epsilon' to get it actually printed.
  2465 Moreover, the mathematically important symbolic identifier \<epsilon>
  2466 becomes available as variable, constant etc.  INCOMPATIBILITY,
  2467 
  2468 * "x > y" abbreviates "y < x" and "x >= y" abbreviates "y <= x".
  2469 Similarly for all quantifiers: "ALL x > y" etc.  The x-symbol for >=
  2470 is \<ge>. New transitivity rules have been added to HOL/Orderings.thy to
  2471 support corresponding Isar calculations.
  2472 
  2473 * "{x:A. P}" abbreviates "{x. x:A & P}", and similarly for "\<in>"
  2474 instead of ":".
  2475 
  2476 * theory SetInterval: changed the syntax for open intervals:
  2477 
  2478   Old       New
  2479   {..n(}    {..<n}
  2480   {)n..}    {n<..}
  2481   {m..n(}   {m..<n}
  2482   {)m..n}   {m<..n}
  2483   {)m..n(}  {m<..<n}
  2484 
  2485 The old syntax is still supported but will disappear in the next
  2486 release.  For conversion use the following Emacs search and replace
  2487 patterns (these are not perfect but work quite well):
  2488 
  2489   {)\([^\.]*\)\.\.  ->  {\1<\.\.}
  2490   \.\.\([^(}]*\)(}  ->  \.\.<\1}
  2491 
  2492 * Theory Commutative_Ring (in Library): method comm_ring for proving
  2493 equalities in commutative rings; method 'algebra' provides a generic
  2494 interface.
  2495 
  2496 * Theory Finite_Set: changed the syntax for 'setsum', summation over
  2497 finite sets: "setsum (%x. e) A", which used to be "\<Sum>x:A. e", is
  2498 now either "SUM x:A. e" or "\<Sum>x \<in> A. e". The bound variable can
  2499 be a tuple pattern.
  2500 
  2501 Some new syntax forms are available:
  2502 
  2503   "\<Sum>x | P. e"      for     "setsum (%x. e) {x. P}"
  2504   "\<Sum>x = a..b. e"   for     "setsum (%x. e) {a..b}"
  2505   "\<Sum>x = a..<b. e"  for     "setsum (%x. e) {a..<b}"
  2506   "\<Sum>x < k. e"      for     "setsum (%x. e) {..<k}"
  2507 
  2508 The latter form "\<Sum>x < k. e" used to be based on a separate
  2509 function "Summation", which has been discontinued.
  2510 
  2511 * theory Finite_Set: in structured induction proofs, the insert case
  2512 is now 'case (insert x F)' instead of the old counterintuitive 'case
  2513 (insert F x)'.
  2514 
  2515 * The 'refute' command has been extended to support a much larger
  2516 fragment of HOL, including axiomatic type classes, constdefs and
  2517 typedefs, inductive datatypes and recursion.
  2518 
  2519 * New tactics 'sat' and 'satx' to prove propositional tautologies.
  2520 Requires zChaff with proof generation to be installed.  See
  2521 HOL/ex/SAT_Examples.thy for examples.
  2522 
  2523 * Datatype induction via method 'induct' now preserves the name of the
  2524 induction variable. For example, when proving P(xs::'a list) by
  2525 induction on xs, the induction step is now P(xs) ==> P(a#xs) rather
  2526 than P(list) ==> P(a#list) as previously.  Potential INCOMPATIBILITY
  2527 in unstructured proof scripts.
  2528 
  2529 * Reworked implementation of records.  Improved scalability for
  2530 records with many fields, avoiding performance problems for type
  2531 inference. Records are no longer composed of nested field types, but
  2532 of nested extension types. Therefore the record type only grows linear
  2533 in the number of extensions and not in the number of fields.  The
  2534 top-level (users) view on records is preserved.  Potential
  2535 INCOMPATIBILITY only in strange cases, where the theory depends on the
  2536 old record representation. The type generated for a record is called
  2537 <record_name>_ext_type.
  2538 
  2539 Flag record_quick_and_dirty_sensitive can be enabled to skip the
  2540 proofs triggered by a record definition or a simproc (if
  2541 quick_and_dirty is enabled).  Definitions of large records can take
  2542 quite long.
  2543 
  2544 New simproc record_upd_simproc for simplification of multiple record
  2545 updates enabled by default.  Moreover, trivial updates are also
  2546 removed: r(|x := x r|) = r.  INCOMPATIBILITY: old proofs break
  2547 occasionally, since simplification is more powerful by default.
  2548 
  2549 * typedef: proper support for polymorphic sets, which contain extra
  2550 type-variables in the term.
  2551 
  2552 * Simplifier: automatically reasons about transitivity chains
  2553 involving "trancl" (r^+) and "rtrancl" (r^*) by setting up tactics
  2554 provided by Provers/trancl.ML as additional solvers.  INCOMPATIBILITY:
  2555 old proofs break occasionally as simplification may now solve more
  2556 goals than previously.
  2557 
  2558 * Simplifier: converts x <= y into x = y if assumption y <= x is
  2559 present.  Works for all partial orders (class "order"), in particular
  2560 numbers and sets.  For linear orders (e.g. numbers) it treats ~ x < y
  2561 just like y <= x.
  2562 
  2563 * Simplifier: new simproc for "let x = a in f x".  If a is a free or
  2564 bound variable or a constant then the let is unfolded.  Otherwise
  2565 first a is simplified to b, and then f b is simplified to g. If
  2566 possible we abstract b from g arriving at "let x = b in h x",
  2567 otherwise we unfold the let and arrive at g.  The simproc can be
  2568 enabled/disabled by the reference use_let_simproc.  Potential
  2569 INCOMPATIBILITY since simplification is more powerful by default.
  2570 
  2571 * Classical reasoning: the meson method now accepts theorems as arguments.
  2572 
  2573 * Prover support: pre-release of the Isabelle-ATP linkup, which runs background
  2574 jobs to provide advice on the provability of subgoals.
  2575 
  2576 * Theory OrderedGroup and Ring_and_Field: various additions and
  2577 improvements to faciliate calculations involving equalities and
  2578 inequalities.
  2579 
  2580 The following theorems have been eliminated or modified
  2581 (INCOMPATIBILITY):
  2582 
  2583   abs_eq             now named abs_of_nonneg
  2584   abs_of_ge_0        now named abs_of_nonneg
  2585   abs_minus_eq       now named abs_of_nonpos
  2586   imp_abs_id         now named abs_of_nonneg
  2587   imp_abs_neg_id     now named abs_of_nonpos
  2588   mult_pos           now named mult_pos_pos
  2589   mult_pos_le        now named mult_nonneg_nonneg
  2590   mult_pos_neg_le    now named mult_nonneg_nonpos
  2591   mult_pos_neg2_le   now named mult_nonneg_nonpos2
  2592   mult_neg           now named mult_neg_neg
  2593   mult_neg_le        now named mult_nonpos_nonpos
  2594 
  2595 * The following lemmas in Ring_and_Field have been added to the simplifier:
  2596      
  2597      zero_le_square
  2598      not_square_less_zero 
  2599 
  2600   The following lemmas have been deleted from Real/RealPow:
  2601   
  2602      realpow_zero_zero
  2603      realpow_two
  2604      realpow_less
  2605      zero_le_power
  2606      realpow_two_le
  2607      abs_realpow_two
  2608      realpow_two_abs     
  2609 
  2610 * Theory Parity: added rules for simplifying exponents.
  2611 
  2612 * Theory List:
  2613 
  2614 The following theorems have been eliminated or modified
  2615 (INCOMPATIBILITY):
  2616 
  2617   list_all_Nil       now named list_all.simps(1)
  2618   list_all_Cons      now named list_all.simps(2)
  2619   list_all_conv      now named list_all_iff
  2620   set_mem_eq         now named mem_iff
  2621 
  2622 * Theories SetsAndFunctions and BigO (see HOL/Library) support
  2623 asymptotic "big O" calculations.  See the notes in BigO.thy.
  2624 
  2625 
  2626 *** HOL-Complex ***
  2627 
  2628 * Theory RealDef: better support for embedding natural numbers and
  2629 integers in the reals.
  2630 
  2631 The following theorems have been eliminated or modified
  2632 (INCOMPATIBILITY):
  2633 
  2634   exp_ge_add_one_self  now requires no hypotheses
  2635   real_of_int_add      reversed direction of equality (use [symmetric])
  2636   real_of_int_minus    reversed direction of equality (use [symmetric])
  2637   real_of_int_diff     reversed direction of equality (use [symmetric])
  2638   real_of_int_mult     reversed direction of equality (use [symmetric])
  2639 
  2640 * Theory RComplete: expanded support for floor and ceiling functions.
  2641 
  2642 * Theory Ln is new, with properties of the natural logarithm
  2643 
  2644 * Hyperreal: There is a new type constructor "star" for making
  2645 nonstandard types.  The old type names are now type synonyms:
  2646 
  2647   hypreal = real star
  2648   hypnat = nat star
  2649   hcomplex = complex star
  2650 
  2651 * Hyperreal: Many groups of similarly-defined constants have been
  2652 replaced by polymorphic versions (INCOMPATIBILITY):
  2653 
  2654   star_of <-- hypreal_of_real, hypnat_of_nat, hcomplex_of_complex
  2655 
  2656   starset      <-- starsetNat, starsetC
  2657   *s*          <-- *sNat*, *sc*
  2658   starset_n    <-- starsetNat_n, starsetC_n
  2659   *sn*         <-- *sNatn*, *scn*
  2660   InternalSets <-- InternalNatSets, InternalCSets
  2661 
  2662   starfun      <-- starfun{Nat,Nat2,C,RC,CR}
  2663   *f*          <-- *fNat*, *fNat2*, *fc*, *fRc*, *fcR*
  2664   starfun_n    <-- starfun{Nat,Nat2,C,RC,CR}_n
  2665   *fn*         <-- *fNatn*, *fNat2n*, *fcn*, *fRcn*, *fcRn*
  2666   InternalFuns <-- InternalNatFuns, InternalNatFuns2, Internal{C,RC,CR}Funs
  2667 
  2668 * Hyperreal: Many type-specific theorems have been removed in favor of
  2669 theorems specific to various axiomatic type classes (INCOMPATIBILITY):
  2670 
  2671   add_commute <-- {hypreal,hypnat,hcomplex}_add_commute
  2672   add_assoc   <-- {hypreal,hypnat,hcomplex}_add_assocs
  2673   OrderedGroup.add_0 <-- {hypreal,hypnat,hcomplex}_add_zero_left
  2674   OrderedGroup.add_0_right <-- {hypreal,hcomplex}_add_zero_right
  2675   right_minus <-- hypreal_add_minus
  2676   left_minus <-- {hypreal,hcomplex}_add_minus_left
  2677   mult_commute <-- {hypreal,hypnat,hcomplex}_mult_commute
  2678   mult_assoc <-- {hypreal,hypnat,hcomplex}_mult_assoc
  2679   mult_1_left <-- {hypreal,hypnat}_mult_1, hcomplex_mult_one_left
  2680   mult_1_right <-- hcomplex_mult_one_right
  2681   mult_zero_left <-- hcomplex_mult_zero_left
  2682   left_distrib <-- {hypreal,hypnat,hcomplex}_add_mult_distrib
  2683   right_distrib <-- hypnat_add_mult_distrib2
  2684   zero_neq_one <-- {hypreal,hypnat,hcomplex}_zero_not_eq_one
  2685   right_inverse <-- hypreal_mult_inverse
  2686   left_inverse <-- hypreal_mult_inverse_left, hcomplex_mult_inv_left
  2687   order_refl <-- {hypreal,hypnat}_le_refl
  2688   order_trans <-- {hypreal,hypnat}_le_trans
  2689   order_antisym <-- {hypreal,hypnat}_le_anti_sym
  2690   order_less_le <-- {hypreal,hypnat}_less_le
  2691   linorder_linear <-- {hypreal,hypnat}_le_linear
  2692   add_left_mono <-- {hypreal,hypnat}_add_left_mono
  2693   mult_strict_left_mono <-- {hypreal,hypnat}_mult_less_mono2
  2694   add_nonneg_nonneg <-- hypreal_le_add_order
  2695 
  2696 * Hyperreal: Separate theorems having to do with type-specific
  2697 versions of constants have been merged into theorems that apply to the
  2698 new polymorphic constants (INCOMPATIBILITY):
  2699 
  2700   STAR_UNIV_set <-- {STAR_real,NatStar_real,STARC_complex}_set
  2701   STAR_empty_set <-- {STAR,NatStar,STARC}_empty_set
  2702   STAR_Un <-- {STAR,NatStar,STARC}_Un
  2703   STAR_Int <-- {STAR,NatStar,STARC}_Int
  2704   STAR_Compl <-- {STAR,NatStar,STARC}_Compl
  2705   STAR_subset <-- {STAR,NatStar,STARC}_subset
  2706   STAR_mem <-- {STAR,NatStar,STARC}_mem
  2707   STAR_mem_Compl <-- {STAR,STARC}_mem_Compl
  2708   STAR_diff <-- {STAR,STARC}_diff
  2709   STAR_star_of_image_subset <-- {STAR_hypreal_of_real, NatStar_hypreal_of_real,
  2710     STARC_hcomplex_of_complex}_image_subset
  2711   starset_n_Un <-- starset{Nat,C}_n_Un
  2712   starset_n_Int <-- starset{Nat,C}_n_Int
  2713   starset_n_Compl <-- starset{Nat,C}_n_Compl
  2714   starset_n_diff <-- starset{Nat,C}_n_diff
  2715   InternalSets_Un <-- Internal{Nat,C}Sets_Un
  2716   InternalSets_Int <-- Internal{Nat,C}Sets_Int
  2717   InternalSets_Compl <-- Internal{Nat,C}Sets_Compl
  2718   InternalSets_diff <-- Internal{Nat,C}Sets_diff
  2719   InternalSets_UNIV_diff <-- Internal{Nat,C}Sets_UNIV_diff
  2720   InternalSets_starset_n <-- Internal{Nat,C}Sets_starset{Nat,C}_n
  2721   starset_starset_n_eq <-- starset{Nat,C}_starset{Nat,C}_n_eq
  2722   starset_n_starset <-- starset{Nat,C}_n_starset{Nat,C}
  2723   starfun_n_starfun <-- starfun{Nat,Nat2,C,RC,CR}_n_starfun{Nat,Nat2,C,RC,CR}
  2724   starfun <-- starfun{Nat,Nat2,C,RC,CR}
  2725   starfun_mult <-- starfun{Nat,Nat2,C,RC,CR}_mult
  2726   starfun_add <-- starfun{Nat,Nat2,C,RC,CR}_add
  2727   starfun_minus <-- starfun{Nat,Nat2,C,RC,CR}_minus
  2728   starfun_diff <-- starfun{C,RC,CR}_diff
  2729   starfun_o <-- starfun{NatNat2,Nat2,_stafunNat,C,C_starfunRC,_starfunCR}_o
  2730   starfun_o2 <-- starfun{NatNat2,_stafunNat,C,C_starfunRC,_starfunCR}_o2
  2731   starfun_const_fun <-- starfun{Nat,Nat2,C,RC,CR}_const_fun
  2732   starfun_inverse <-- starfun{Nat,C,RC,CR}_inverse
  2733   starfun_eq <-- starfun{Nat,Nat2,C,RC,CR}_eq
  2734   starfun_eq_iff <-- starfun{C,RC,CR}_eq_iff
  2735   starfun_Id <-- starfunC_Id
  2736   starfun_approx <-- starfun{Nat,CR}_approx
  2737   starfun_capprox <-- starfun{C,RC}_capprox
  2738   starfun_abs <-- starfunNat_rabs
  2739   starfun_lambda_cancel <-- starfun{C,CR,RC}_lambda_cancel
  2740   starfun_lambda_cancel2 <-- starfun{C,CR,RC}_lambda_cancel2
  2741   starfun_mult_HFinite_approx <-- starfunCR_mult_HFinite_capprox
  2742   starfun_mult_CFinite_capprox <-- starfun{C,RC}_mult_CFinite_capprox
  2743   starfun_add_capprox <-- starfun{C,RC}_add_capprox
  2744   starfun_add_approx <-- starfunCR_add_approx
  2745   starfun_inverse_inverse <-- starfunC_inverse_inverse
  2746   starfun_divide <-- starfun{C,CR,RC}_divide
  2747   starfun_n <-- starfun{Nat,C}_n
  2748   starfun_n_mult <-- starfun{Nat,C}_n_mult
  2749   starfun_n_add <-- starfun{Nat,C}_n_add
  2750   starfun_n_add_minus <-- starfunNat_n_add_minus
  2751   starfun_n_const_fun <-- starfun{Nat,C}_n_const_fun
  2752   starfun_n_minus <-- starfun{Nat,C}_n_minus
  2753   starfun_n_eq <-- starfun{Nat,C}_n_eq
  2754 
  2755   star_n_add <-- {hypreal,hypnat,hcomplex}_add
  2756   star_n_minus <-- {hypreal,hcomplex}_minus
  2757   star_n_diff <-- {hypreal,hcomplex}_diff
  2758   star_n_mult <-- {hypreal,hcomplex}_mult
  2759   star_n_inverse <-- {hypreal,hcomplex}_inverse
  2760   star_n_le <-- {hypreal,hypnat}_le
  2761   star_n_less <-- {hypreal,hypnat}_less
  2762   star_n_zero_num <-- {hypreal,hypnat,hcomplex}_zero_num
  2763   star_n_one_num <-- {hypreal,hypnat,hcomplex}_one_num
  2764   star_n_abs <-- hypreal_hrabs
  2765   star_n_divide <-- hcomplex_divide
  2766 
  2767   star_of_add <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_add
  2768   star_of_minus <-- {hypreal_of_real,hcomplex_of_complex}_minus
  2769   star_of_diff <-- hypreal_of_real_diff
  2770   star_of_mult <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_mult
  2771   star_of_one <-- {hypreal_of_real,hcomplex_of_complex}_one
  2772   star_of_zero <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_zero
  2773   star_of_le <-- {hypreal_of_real,hypnat_of_nat}_le_iff
  2774   star_of_less <-- {hypreal_of_real,hypnat_of_nat}_less_iff
  2775   star_of_eq <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_eq_iff
  2776   star_of_inverse <-- {hypreal_of_real,hcomplex_of_complex}_inverse
  2777   star_of_divide <-- {hypreal_of_real,hcomplex_of_complex}_divide
  2778   star_of_of_nat <-- {hypreal_of_real,hcomplex_of_complex}_of_nat
  2779   star_of_of_int <-- {hypreal_of_real,hcomplex_of_complex}_of_int
  2780   star_of_number_of <-- {hypreal,hcomplex}_number_of
  2781   star_of_number_less <-- number_of_less_hypreal_of_real_iff
  2782   star_of_number_le <-- number_of_le_hypreal_of_real_iff
  2783   star_of_eq_number <-- hypreal_of_real_eq_number_of_iff
  2784   star_of_less_number <-- hypreal_of_real_less_number_of_iff
  2785   star_of_le_number <-- hypreal_of_real_le_number_of_iff
  2786   star_of_power <-- hypreal_of_real_power
  2787   star_of_eq_0 <-- hcomplex_of_complex_zero_iff
  2788 
  2789 * Hyperreal: new method "transfer" that implements the transfer
  2790 principle of nonstandard analysis. With a subgoal that mentions
  2791 nonstandard types like "'a star", the command "apply transfer"
  2792 replaces it with an equivalent one that mentions only standard types.
  2793 To be successful, all free variables must have standard types; non-
  2794 standard variables must have explicit universal quantifiers.
  2795 
  2796 * Hyperreal: A theory of Taylor series.
  2797 
  2798 
  2799 *** HOLCF ***
  2800 
  2801 * Discontinued special version of 'constdefs' (which used to support
  2802 continuous functions) in favor of the general Pure one with full
  2803 type-inference.
  2804 
  2805 * New simplification procedure for solving continuity conditions; it
  2806 is much faster on terms with many nested lambda abstractions (cubic
  2807 instead of exponential time).
  2808 
  2809 * New syntax for domain package: selector names are now optional.
  2810 Parentheses should be omitted unless argument is lazy, for example:
  2811 
  2812   domain 'a stream = cons "'a" (lazy "'a stream")
  2813 
  2814 * New command 'fixrec' for defining recursive functions with pattern
  2815 matching; defining multiple functions with mutual recursion is also
  2816 supported.  Patterns may include the constants cpair, spair, up, sinl,
  2817 sinr, or any data constructor defined by the domain package. The given
  2818 equations are proven as rewrite rules. See HOLCF/ex/Fixrec_ex.thy for
  2819 syntax and examples.
  2820 
  2821 * New commands 'cpodef' and 'pcpodef' for defining predicate subtypes
  2822 of cpo and pcpo types. Syntax is exactly like the 'typedef' command,
  2823 but the proof obligation additionally includes an admissibility
  2824 requirement. The packages generate instances of class cpo or pcpo,
  2825 with continuity and strictness theorems for Rep and Abs.
  2826 
  2827 * HOLCF: Many theorems have been renamed according to a more standard naming
  2828 scheme (INCOMPATIBILITY):
  2829 
  2830   foo_inject:  "foo$x = foo$y ==> x = y"
  2831   foo_eq:      "(foo$x = foo$y) = (x = y)"
  2832   foo_less:    "(foo$x << foo$y) = (x << y)"
  2833   foo_strict:  "foo$UU = UU"
  2834   foo_defined: "... ==> foo$x ~= UU"
  2835   foo_defined_iff: "(foo$x = UU) = (x = UU)"
  2836 
  2837 
  2838 *** ZF ***
  2839 
  2840 * ZF/ex: theories Group and Ring provide examples in abstract algebra,
  2841 including the First Isomorphism Theorem (on quotienting by the kernel
  2842 of a homomorphism).
  2843 
  2844 * ZF/Simplifier: install second copy of type solver that actually
  2845 makes use of TC rules declared to Isar proof contexts (or locales);
  2846 the old version is still required for ML proof scripts.
  2847 
  2848 
  2849 *** Cube ***
  2850 
  2851 * Converted to Isar theory format; use locales instead of axiomatic
  2852 theories.
  2853 
  2854 
  2855 *** ML ***
  2856 
  2857 * Pure/library.ML: added ##>, ##>>, #>> -- higher-order counterparts
  2858 for ||>, ||>>, |>>,
  2859 
  2860 * Pure/library.ML no longer defines its own option datatype, but uses
  2861 that of the SML basis, which has constructors NONE and SOME instead of
  2862 None and Some, as well as exception Option.Option instead of OPTION.
  2863 The functions the, if_none, is_some, is_none have been adapted
  2864 accordingly, while Option.map replaces apsome.
  2865 
  2866 * Pure/library.ML: the exception LIST has been given up in favour of
  2867 the standard exceptions Empty and Subscript, as well as
  2868 Library.UnequalLengths.  Function like Library.hd and Library.tl are
  2869 superceded by the standard hd and tl functions etc.
  2870 
  2871 A number of basic list functions are no longer exported to the ML
  2872 toplevel, as they are variants of predefined functions.  The following
  2873 suggests how one can translate existing code:
  2874 
  2875     rev_append xs ys = List.revAppend (xs, ys)
  2876     nth_elem (i, xs) = List.nth (xs, i)
  2877     last_elem xs = List.last xs
  2878     flat xss = List.concat xss
  2879     seq fs = List.app fs
  2880     partition P xs = List.partition P xs
  2881     mapfilter f xs = List.mapPartial f xs
  2882 
  2883 * Pure/library.ML: several combinators for linear functional
  2884 transformations, notably reverse application and composition:
  2885 
  2886   x |> f                f #> g
  2887   (x, y) |-> f          f #-> g
  2888 
  2889 * Pure/library.ML: introduced/changed precedence of infix operators:
  2890 
  2891   infix 1 |> |-> ||> ||>> |>> |>>> #> #->;
  2892   infix 2 ?;
  2893   infix 3 o oo ooo oooo;
  2894   infix 4 ~~ upto downto;
  2895 
  2896 Maybe INCOMPATIBILITY when any of those is used in conjunction with other
  2897 infix operators.
  2898 
  2899 * Pure/library.ML: natural list combinators fold, fold_rev, and
  2900 fold_map support linear functional transformations and nesting.  For
  2901 example:
  2902 
  2903   fold f [x1, ..., xN] y =
  2904     y |> f x1 |> ... |> f xN
  2905 
  2906   (fold o fold) f [xs1, ..., xsN] y =
  2907     y |> fold f xs1 |> ... |> fold f xsN
  2908 
  2909   fold f [x1, ..., xN] =
  2910     f x1 #> ... #> f xN
  2911 
  2912   (fold o fold) f [xs1, ..., xsN] =
  2913     fold f xs1 #> ... #> fold f xsN
  2914 
  2915 * Pure/library.ML: the following selectors on type 'a option are
  2916 available:
  2917 
  2918   the:               'a option -> 'a  (*partial*)
  2919   these:             'a option -> 'a  where 'a = 'b list
  2920   the_default: 'a -> 'a option -> 'a
  2921   the_list:          'a option -> 'a list
  2922 
  2923 * Pure/General: structure AList (cf. Pure/General/alist.ML) provides
  2924 basic operations for association lists, following natural argument
  2925 order; moreover the explicit equality predicate passed here avoids
  2926 potentially expensive polymorphic runtime equality checks.
  2927 The old functions may be expressed as follows:
  2928 
  2929   assoc = uncurry (AList.lookup (op =))
  2930   assocs = these oo AList.lookup (op =)
  2931   overwrite = uncurry (AList.update (op =)) o swap
  2932 
  2933 * Pure/General: structure AList (cf. Pure/General/alist.ML) provides
  2934 
  2935   val make: ('a -> 'b) -> 'a list -> ('a * 'b) list
  2936   val find: ('a * 'b -> bool) -> ('c * 'b) list -> 'a -> 'c list
  2937 
  2938 replacing make_keylist and keyfilter (occassionally used)
  2939 Naive rewrites:
  2940 
  2941   make_keylist = AList.make
  2942   keyfilter = AList.find (op =)
  2943 
  2944 * eq_fst and eq_snd now take explicit equality parameter, thus
  2945   avoiding eqtypes. Naive rewrites:
  2946 
  2947     eq_fst = eq_fst (op =)
  2948     eq_snd = eq_snd (op =)
  2949 
  2950 * Removed deprecated apl and apr (rarely used).
  2951   Naive rewrites:
  2952 
  2953     apl (n, op) =>>= curry op n
  2954     apr (op, m) =>>= fn n => op (n, m)
  2955 
  2956 * Pure/General: structure OrdList (cf. Pure/General/ord_list.ML)
  2957 provides a reasonably efficient light-weight implementation of sets as
  2958 lists.
  2959 
  2960 * Pure/General: generic tables (cf. Pure/General/table.ML) provide a
  2961 few new operations; existing lookup and update are now curried to
  2962 follow natural argument order (for use with fold etc.);
  2963 INCOMPATIBILITY, use (uncurry Symtab.lookup) etc. as last resort.
  2964 
  2965 * Pure/General: output via the Isabelle channels of
  2966 writeln/warning/error etc. is now passed through Output.output, with a
  2967 hook for arbitrary transformations depending on the print_mode
  2968 (cf. Output.add_mode -- the first active mode that provides a output
  2969 function wins).  Already formatted output may be embedded into further
  2970 text via Output.raw; the result of Pretty.string_of/str_of and derived
  2971 functions (string_of_term/cterm/thm etc.) is already marked raw to
  2972 accommodate easy composition of diagnostic messages etc.  Programmers
  2973 rarely need to care about Output.output or Output.raw at all, with
  2974 some notable exceptions: Output.output is required when bypassing the
  2975 standard channels (writeln etc.), or in token translations to produce
  2976 properly formatted results; Output.raw is required when capturing
  2977 already output material that will eventually be presented to the user
  2978 a second time.  For the default print mode, both Output.output and
  2979 Output.raw have no effect.
  2980 
  2981 * Pure/General: Output.time_accumulator NAME creates an operator ('a
  2982 -> 'b) -> 'a -> 'b to measure runtime and count invocations; the
  2983 cumulative results are displayed at the end of a batch session.
  2984 
  2985 * Pure/General: File.sysify_path and File.quote_sysify path have been
  2986 replaced by File.platform_path and File.shell_path (with appropriate
  2987 hooks).  This provides a clean interface for unusual systems where the
  2988 internal and external process view of file names are different.
  2989 
  2990 * Pure: more efficient orders for basic syntactic entities: added
  2991 fast_string_ord, fast_indexname_ord, fast_term_ord; changed sort_ord
  2992 and typ_ord to use fast_string_ord and fast_indexname_ord (term_ord is
  2993 NOT affected); structures Symtab, Vartab, Typtab, Termtab use the fast
  2994 orders now -- potential INCOMPATIBILITY for code that depends on a
  2995 particular order for Symtab.keys, Symtab.dest, etc. (consider using
  2996 Library.sort_strings on result).
  2997 
  2998 * Pure/term.ML: combinators fold_atyps, fold_aterms, fold_term_types,
  2999 fold_types traverse types/terms from left to right, observing natural
  3000 argument order.  Supercedes previous foldl_XXX versions, add_frees,
  3001 add_vars etc. have been adapted as well: INCOMPATIBILITY.
  3002 
  3003 * Pure: name spaces have been refined, with significant changes of the
  3004 internal interfaces -- INCOMPATIBILITY.  Renamed cond_extern(_table)
  3005 to extern(_table).  The plain name entry path is superceded by a
  3006 general 'naming' context, which also includes the 'policy' to produce
  3007 a fully qualified name and external accesses of a fully qualified
  3008 name; NameSpace.extend is superceded by context dependent
  3009 Sign.declare_name.  Several theory and proof context operations modify
  3010 the naming context.  Especially note Theory.restore_naming and
  3011 ProofContext.restore_naming to get back to a sane state; note that
  3012 Theory.add_path is no longer sufficient to recover from
  3013 Theory.absolute_path in particular.
  3014 
  3015 * Pure: new flags short_names (default false) and unique_names
  3016 (default true) for controlling output of qualified names.  If
  3017 short_names is set, names are printed unqualified.  If unique_names is
  3018 reset, the name prefix is reduced to the minimum required to achieve
  3019 the original result when interning again, even if there is an overlap
  3020 with earlier declarations.
  3021 
  3022 * Pure/TheoryDataFun: change of the argument structure; 'prep_ext' is
  3023 now 'extend', and 'merge' gets an additional Pretty.pp argument
  3024 (useful for printing error messages).  INCOMPATIBILITY.
  3025 
  3026 * Pure: major reorganization of the theory context.  Type Sign.sg and
  3027 Theory.theory are now identified, referring to the universal
  3028 Context.theory (see Pure/context.ML).  Actual signature and theory
  3029 content is managed as theory data.  The old code and interfaces were
  3030 spread over many files and structures; the new arrangement introduces
  3031 considerable INCOMPATIBILITY to gain more clarity:
  3032 
  3033   Context -- theory management operations (name, identity, inclusion,
  3034     parents, ancestors, merge, etc.), plus generic theory data;
  3035 
  3036   Sign -- logical signature and syntax operations (declaring consts,
  3037     types, etc.), plus certify/read for common entities;
  3038 
  3039   Theory -- logical theory operations (stating axioms, definitions,
  3040     oracles), plus a copy of logical signature operations (consts,
  3041     types, etc.); also a few basic management operations (Theory.copy,
  3042     Theory.merge, etc.)
  3043 
  3044 The most basic sign_of operations (Theory.sign_of, Thm.sign_of_thm
  3045 etc.) as well as the sign field in Thm.rep_thm etc. have been retained
  3046 for convenience -- they merely return the theory.
  3047 
  3048 * Pure: type Type.tsig is superceded by theory in most interfaces.
  3049 
  3050 * Pure: the Isar proof context type is already defined early in Pure
  3051 as Context.proof (note that ProofContext.context and Proof.context are
  3052 aliases, where the latter is the preferred name).  This enables other
  3053 Isabelle components to refer to that type even before Isar is present.
  3054 
  3055 * Pure/sign/theory: discontinued named name spaces (i.e. classK,
  3056 typeK, constK, axiomK, oracleK), but provide explicit operations for
  3057 any of these kinds.  For example, Sign.intern typeK is now
  3058 Sign.intern_type, Theory.hide_space Sign.typeK is now
  3059 Theory.hide_types.  Also note that former
  3060 Theory.hide_classes/types/consts are now
  3061 Theory.hide_classes_i/types_i/consts_i, while the non '_i' versions
  3062 internalize their arguments!  INCOMPATIBILITY.
  3063 
  3064 * Pure: get_thm interface (of PureThy and ProofContext) expects
  3065 datatype thmref (with constructors Name and NameSelection) instead of
  3066 plain string -- INCOMPATIBILITY;
  3067 
  3068 * Pure: cases produced by proof methods specify options, where NONE
  3069 means to remove case bindings -- INCOMPATIBILITY in
  3070 (RAW_)METHOD_CASES.
  3071 
  3072 * Pure: the following operations retrieve axioms or theorems from a
  3073 theory node or theory hierarchy, respectively:
  3074 
  3075   Theory.axioms_of: theory -> (string * term) list
  3076   Theory.all_axioms_of: theory -> (string * term) list
  3077   PureThy.thms_of: theory -> (string * thm) list
  3078   PureThy.all_thms_of: theory -> (string * thm) list
  3079 
  3080 * Pure: print_tac now outputs the goal through the trace channel.
  3081 
  3082 * Isar toplevel: improved diagnostics, mostly for Poly/ML only.
  3083 Reference Toplevel.debug (default false) controls detailed printing
  3084 and tracing of low-level exceptions; Toplevel.profiling (default 0)
  3085 controls execution profiling -- set to 1 for time and 2 for space
  3086 (both increase the runtime).
  3087 
  3088 * Isar session: The initial use of ROOT.ML is now always timed,
  3089 i.e. the log will show the actual process times, in contrast to the
  3090 elapsed wall-clock time that the outer shell wrapper produces.
  3091 
  3092 * Simplifier: improved handling of bound variables (nameless
  3093 representation, avoid allocating new strings).  Simprocs that invoke
  3094 the Simplifier recursively should use Simplifier.inherit_bounds to
  3095 avoid local name clashes.  Failure to do so produces warnings
  3096 "Simplifier: renamed bound variable ..."; set Simplifier.debug_bounds
  3097 for further details.
  3098 
  3099 * ML functions legacy_bindings and use_legacy_bindings produce ML fact
  3100 bindings for all theorems stored within a given theory; this may help
  3101 in porting non-Isar theories to Isar ones, while keeping ML proof
  3102 scripts for the time being.
  3103 
  3104 * ML operator HTML.with_charset specifies the charset begin used for
  3105 generated HTML files.  For example:
  3106 
  3107   HTML.with_charset "utf-8" use_thy "Hebrew";
  3108   HTML.with_charset "utf-8" use_thy "Chinese";
  3109 
  3110 
  3111 *** System ***
  3112 
  3113 * Allow symlinks to all proper Isabelle executables (Isabelle,
  3114 isabelle, isatool etc.).
  3115 
  3116 * ISABELLE_DOC_FORMAT setting specifies preferred document format (for
  3117 isatool doc, isatool mkdir, display_drafts etc.).
  3118 
  3119 * isatool usedir: option -f allows specification of the ML file to be
  3120 used by Isabelle; default is ROOT.ML.
  3121 
  3122 * New isatool version outputs the version identifier of the Isabelle
  3123 distribution being used.
  3124 
  3125 * HOL: new isatool dimacs2hol converts files in DIMACS CNF format
  3126 (containing Boolean satisfiability problems) into Isabelle/HOL
  3127 theories.
  3128 
  3129 
  3130 
  3131 New in Isabelle2004 (April 2004)
  3132 --------------------------------
  3133 
  3134 *** General ***
  3135 
  3136 * Provers/order.ML:  new efficient reasoner for partial and linear orders.
  3137   Replaces linorder.ML.
  3138 
  3139 * Pure: Greek letters (except small lambda, \<lambda>), as well as Gothic
  3140   (\<aa>...\<zz>\<AA>...\<ZZ>), calligraphic (\<A>...\<Z>), and Euler
  3141   (\<a>...\<z>), are now considered normal letters, and can therefore
  3142   be used anywhere where an ASCII letter (a...zA...Z) has until
  3143   now. COMPATIBILITY: This obviously changes the parsing of some
  3144   terms, especially where a symbol has been used as a binder, say
  3145   '\<Pi>x. ...', which is now a type error since \<Pi>x will be parsed
  3146   as an identifier.  Fix it by inserting a space around former
  3147   symbols.  Call 'isatool fixgreek' to try to fix parsing errors in
  3148   existing theory and ML files.
  3149 
  3150 * Pure: Macintosh and Windows line-breaks are now allowed in theory files.
  3151 
  3152 * Pure: single letter sub/superscripts (\<^isub> and \<^isup>) are now
  3153   allowed in identifiers. Similar to Greek letters \<^isub> is now considered
  3154   a normal (but invisible) letter. For multiple letter subscripts repeat
  3155   \<^isub> like this: x\<^isub>1\<^isub>2.
  3156 
  3157 * Pure: There are now sub-/superscripts that can span more than one
  3158   character. Text between \<^bsub> and \<^esub> is set in subscript in
  3159   ProofGeneral and LaTeX, text between \<^bsup> and \<^esup> in
  3160   superscript. The new control characters are not identifier parts.
  3161 
  3162 * Pure: Control-symbols of the form \<^raw:...> will literally print the
  3163   content of "..." to the latex file instead of \isacntrl... . The "..."
  3164   may consist of any printable characters excluding the end bracket >.
  3165 
  3166 * Pure: Using new Isar command "finalconsts" (or the ML functions
  3167   Theory.add_finals or Theory.add_finals_i) it is now possible to
  3168   declare constants "final", which prevents their being given a definition
  3169   later.  It is useful for constants whose behaviour is fixed axiomatically
  3170   rather than definitionally, such as the meta-logic connectives.
  3171 
  3172 * Pure: 'instance' now handles general arities with general sorts
  3173   (i.e. intersections of classes),
  3174 
  3175 * Presentation: generated HTML now uses a CSS style sheet to make layout
  3176   (somewhat) independent of content. It is copied from lib/html/isabelle.css.
  3177   It can be changed to alter the colors/layout of generated pages.
  3178 
  3179 
  3180 *** Isar ***
  3181 
  3182 * Tactic emulation methods rule_tac, erule_tac, drule_tac, frule_tac,
  3183   cut_tac, subgoal_tac and thin_tac:
  3184   - Now understand static (Isar) contexts.  As a consequence, users of Isar
  3185     locales are no longer forced to write Isar proof scripts.
  3186     For details see Isar Reference Manual, paragraph 4.3.2: Further tactic
  3187     emulations.
  3188   - INCOMPATIBILITY: names of variables to be instantiated may no
  3189     longer be enclosed in quotes.  Instead, precede variable name with `?'.
  3190     This is consistent with the instantiation attribute "where".
  3191 
  3192 * Attributes "where" and "of":
  3193   - Now take type variables of instantiated theorem into account when reading
  3194     the instantiation string.  This fixes a bug that caused instantiated
  3195     theorems to have too special types in some circumstances.
  3196   - "where" permits explicit instantiations of type variables.
  3197 
  3198 * Calculation commands "moreover" and "also" no longer interfere with
  3199   current facts ("this"), admitting arbitrary combinations with "then"
  3200   and derived forms.
  3201 
  3202 * Locales:
  3203   - Goal statements involving the context element "includes" no longer
  3204     generate theorems with internal delta predicates (those ending on
  3205     "_axioms") in the premise.
  3206     Resolve particular premise with <locale>.intro to obtain old form.
  3207   - Fixed bug in type inference ("unify_frozen") that prevented mix of target
  3208     specification and "includes" elements in goal statement.
  3209   - Rule sets <locale>.intro and <locale>.axioms no longer declared as
  3210     [intro?] and [elim?] (respectively) by default.
  3211   - Experimental command for instantiation of locales in proof contexts:
  3212         instantiate <label>[<attrs>]: <loc>
  3213     Instantiates locale <loc> and adds all its theorems to the current context
  3214     taking into account their attributes.  Label and attrs are optional
  3215     modifiers, like in theorem declarations.  If present, names of
  3216     instantiated theorems are qualified with <label>, and the attributes
  3217     <attrs> are applied after any attributes these theorems might have already.
  3218       If the locale has assumptions, a chained fact of the form
  3219     "<loc> t1 ... tn" is expected from which instantiations of the parameters
  3220     are derived.  The command does not support old-style locales declared
  3221     with "locale (open)".
  3222       A few (very simple) examples can be found in FOL/ex/LocaleInst.thy.
  3223 
  3224 * HOL: Tactic emulation methods induct_tac and case_tac understand static
  3225   (Isar) contexts.
  3226 
  3227 
  3228 *** HOL ***
  3229 
  3230 * Proof import: new image HOL4 contains the imported library from
  3231   the HOL4 system with about 2500 theorems. It is imported by
  3232   replaying proof terms produced by HOL4 in Isabelle. The HOL4 image
  3233   can be used like any other Isabelle image.  See
  3234   HOL/Import/HOL/README for more information.
  3235 
  3236 * Simplifier:
  3237   - Much improved handling of linear and partial orders.
  3238     Reasoners for linear and partial orders are set up for type classes
  3239     "linorder" and "order" respectively, and are added to the default simpset
  3240     as solvers.  This means that the simplifier can build transitivity chains
  3241     to solve goals from the assumptions.
  3242   - INCOMPATIBILITY: old proofs break occasionally.  Typically, applications
  3243     of blast or auto after simplification become unnecessary because the goal
  3244     is solved by simplification already.
  3245 
  3246 * Numerics: new theory Ring_and_Field contains over 250 basic numerical laws,
  3247     all proved in axiomatic type classes for semirings, rings and fields.
  3248 
  3249 * Numerics:
  3250   - Numeric types (nat, int, and in HOL-Complex rat, real, complex, etc.) are
  3251     now formalized using the Ring_and_Field theory mentioned above.
  3252   - INCOMPATIBILITY: simplification and arithmetic behaves somewhat differently
  3253     than before, because now they are set up once in a generic manner.
  3254   - INCOMPATIBILITY: many type-specific arithmetic laws have gone.
  3255     Look for the general versions in Ring_and_Field (and Power if they concern
  3256     exponentiation).
  3257 
  3258 * Type "rat" of the rational numbers is now available in HOL-Complex.
  3259 
  3260 * Records:
  3261   - Record types are now by default printed with their type abbreviation
  3262     instead of the list of all field types. This can be configured via
  3263     the reference "print_record_type_abbr".
  3264   - Simproc "record_upd_simproc" for simplification of multiple updates added
  3265     (not enabled by default).
  3266   - Simproc "record_ex_sel_eq_simproc" to simplify EX x. sel r = x resp.
  3267     EX x. x = sel r to True (not enabled by default).
  3268   - Tactic "record_split_simp_tac" to split and simplify records added.
  3269 
  3270 * 'specification' command added, allowing for definition by
  3271   specification.  There is also an 'ax_specification' command that
  3272   introduces the new constants axiomatically.
  3273 
  3274 * arith(_tac) is now able to generate counterexamples for reals as well.
  3275 
  3276 * HOL-Algebra: new locale "ring" for non-commutative rings.
  3277 
  3278 * HOL-ex: InductiveInvariant_examples illustrates advanced recursive function
  3279   definitions, thanks to Sava Krsti\'{c} and John Matthews.
  3280 
  3281 * HOL-Matrix: a first theory for matrices in HOL with an application of
  3282   matrix theory to linear programming.
  3283 
  3284 * Unions and Intersections:
  3285   The latex output syntax of UN and INT has been changed
  3286   from "\Union x \in A. B" to "\Union_{x \in A} B"
  3287   i.e. the index formulae has become a subscript.
  3288   Similarly for "\Union x. B", and for \Inter instead of \Union.
  3289 
  3290 * Unions and Intersections over Intervals:
  3291   There is new short syntax "UN i<=n. A" for "UN i:{0..n}. A". There is
  3292   also an x-symbol version with subscripts "\<Union>\<^bsub>i <= n\<^esub>. A"
  3293   like in normal math, and corresponding versions for < and for intersection.
  3294 
  3295 * HOL/List: Ordering "lexico" is renamed "lenlex" and the standard
  3296   lexicographic dictonary ordering has been added as "lexord".
  3297 
  3298 * ML: the legacy theory structures Int and List have been removed. They had
  3299   conflicted with ML Basis Library structures having the same names.
  3300 
  3301 * 'refute' command added to search for (finite) countermodels.  Only works
  3302   for a fragment of HOL.  The installation of an external SAT solver is
  3303   highly recommended.  See "HOL/Refute.thy" for details.
  3304 
  3305 * 'quickcheck' command: Allows to find counterexamples by evaluating
  3306   formulae under an assignment of free variables to random values.
  3307   In contrast to 'refute', it can deal with inductive datatypes,
  3308   but cannot handle quantifiers. See "HOL/ex/Quickcheck_Examples.thy"
  3309   for examples.
  3310 
  3311 
  3312 *** HOLCF ***
  3313 
  3314 * Streams now come with concatenation and are part of the HOLCF image
  3315 
  3316 
  3317 
  3318 New in Isabelle2003 (May 2003)
  3319 ------------------------------
  3320 
  3321 *** General ***
  3322 
  3323 * Provers/simplifier:
  3324 
  3325   - Completely reimplemented method simp (ML: Asm_full_simp_tac):
  3326     Assumptions are now subject to complete mutual simplification,
  3327     not just from left to right. The simplifier now preserves
  3328     the order of assumptions.
  3329 
  3330     Potential INCOMPATIBILITY:
  3331 
  3332     -- simp sometimes diverges where the old version did
  3333        not, e.g. invoking simp on the goal
  3334 
  3335         [| P (f x); y = x; f x = f y |] ==> Q
  3336 
  3337        now gives rise to the infinite reduction sequence
  3338 
  3339         P(f x) --(f x = f y)--> P(f y) --(y = x)--> P(f x) --(f x = f y)--> ...
  3340 
  3341        Using "simp (asm_lr)" (ML: Asm_lr_simp_tac) instead often solves this
  3342        kind of problem.
  3343 
  3344     -- Tactics combining classical reasoner and simplification (such as auto)
  3345        are also affected by this change, because many of them rely on
  3346        simp. They may sometimes diverge as well or yield a different numbers
  3347        of subgoals. Try to use e.g. force, fastsimp, or safe instead of auto
  3348        in case of problems. Sometimes subsequent calls to the classical
  3349        reasoner will fail because a preceeding call to the simplifier too
  3350        eagerly simplified the goal, e.g. deleted redundant premises.
  3351 
  3352   - The simplifier trace now shows the names of the applied rewrite rules
  3353 
  3354   - You can limit the number of recursive invocations of the simplifier
  3355     during conditional rewriting (where the simplifie tries to solve the
  3356     conditions before applying the rewrite rule):
  3357     ML "simp_depth_limit := n"
  3358     where n is an integer. Thus you can force termination where previously
  3359     the simplifier would diverge.
  3360 
  3361   - Accepts free variables as head terms in congruence rules.  Useful in Isar.
  3362 
  3363   - No longer aborts on failed congruence proof.  Instead, the
  3364     congruence is ignored.
  3365 
  3366 * Pure: New generic framework for extracting programs from constructive
  3367   proofs. See HOL/Extraction.thy for an example instantiation, as well
  3368   as HOL/Extraction for some case studies.
  3369 
  3370 * Pure: The main goal of the proof state is no longer shown by default, only
  3371 the subgoals. This behaviour is controlled by a new flag.
  3372    PG menu: Isabelle/Isar -> Settings -> Show Main Goal
  3373 (ML: Proof.show_main_goal).
  3374 
  3375 * Pure: You can find all matching introduction rules for subgoal 1, i.e. all
  3376 rules whose conclusion matches subgoal 1:
  3377       PG menu: Isabelle/Isar -> Show me -> matching rules
  3378 The rules are ordered by how closely they match the subgoal.
  3379 In particular, rules that solve a subgoal outright are displayed first
  3380 (or rather last, the way they are printed).
  3381 (ML: ProofGeneral.print_intros())
  3382 
  3383 * Pure: New flag trace_unify_fail causes unification to print
  3384 diagnostic information (PG: in trace buffer) when it fails. This is
  3385 useful for figuring out why single step proofs like rule, erule or
  3386 assumption failed.
  3387 
  3388 * Pure: Locale specifications now produce predicate definitions
  3389 according to the body of text (covering assumptions modulo local
  3390 definitions); predicate "loc_axioms" covers newly introduced text,
  3391 while "loc" is cumulative wrt. all included locale expressions; the
  3392 latter view is presented only on export into the global theory
  3393 context; potential INCOMPATIBILITY, use "(open)" option to fall back
  3394 on the old view without predicates;
  3395 
  3396 * Pure: predefined locales "var" and "struct" are useful for sharing
  3397 parameters (as in CASL, for example); just specify something like
  3398 ``var x + var y + struct M'' as import;
  3399 
  3400 * Pure: improved thms_containing: proper indexing of facts instead of
  3401 raw theorems; check validity of results wrt. current name space;
  3402 include local facts of proof configuration (also covers active
  3403 locales), cover fixed variables in index; may use "_" in term
  3404 specification; an optional limit for the number of printed facts may
  3405 be given (the default is 40);
  3406 
  3407 * Pure: disallow duplicate fact bindings within new-style theory files
  3408 (batch-mode only);
  3409 
  3410 * Provers: improved induct method: assumptions introduced by case
  3411 "foo" are split into "foo.hyps" (from the rule) and "foo.prems" (from
  3412 the goal statement); "foo" still refers to all facts collectively;
  3413 
  3414 * Provers: the function blast.overloaded has been removed: all constants
  3415 are regarded as potentially overloaded, which improves robustness in exchange
  3416 for slight decrease in efficiency;
  3417 
  3418 * Provers/linorder: New generic prover for transitivity reasoning over
  3419 linear orders.  Note: this prover is not efficient!
  3420 
  3421 * Isar: preview of problems to finish 'show' now produce an error
  3422 rather than just a warning (in interactive mode);
  3423 
  3424 
  3425 *** HOL ***
  3426 
  3427 * arith(_tac)
  3428 
  3429  - Produces a counter example if it cannot prove a goal.
  3430    Note that the counter example may be spurious if the goal is not a formula
  3431    of quantifier-free linear arithmetic.
  3432    In ProofGeneral the counter example appears in the trace buffer.
  3433 
  3434  - Knows about div k and mod k where k is a numeral of type nat or int.
  3435 
  3436  - Calls full Presburger arithmetic (by Amine Chaieb) if quantifier-free
  3437    linear arithmetic fails. This takes account of quantifiers and divisibility.
  3438    Presburger arithmetic can also be called explicitly via presburger(_tac).
  3439 
  3440 * simp's arithmetic capabilities have been enhanced a bit: it now
  3441 takes ~= in premises into account (by performing a case split);
  3442 
  3443 * simp reduces "m*(n div m) + n mod m" to n, even if the two summands
  3444 are distributed over a sum of terms;
  3445 
  3446 * New tactic "trans_tac" and method "trans" instantiate
  3447 Provers/linorder.ML for axclasses "order" and "linorder" (predicates
  3448 "<=", "<" and "=").
  3449 
  3450 * function INCOMPATIBILITIES: Pi-sets have been redefined and moved from main
  3451 HOL to Library/FuncSet; constant "Fun.op o" is now called "Fun.comp";
  3452 
  3453 * 'typedef' command has new option "open" to suppress the set
  3454 definition;
  3455 
  3456 * functions Min and Max on finite sets have been introduced (theory
  3457 Finite_Set);
  3458 
  3459 * attribute [symmetric] now works for relations as well; it turns
  3460 (x,y) : R^-1 into (y,x) : R, and vice versa;
  3461 
  3462 * induct over a !!-quantified statement (say !!x1..xn):
  3463   each "case" automatically performs "fix x1 .. xn" with exactly those names.
  3464 
  3465 * Map: `empty' is no longer a constant but a syntactic abbreviation for
  3466 %x. None. Warning: empty_def now refers to the previously hidden definition
  3467 of the empty set.
  3468 
  3469 * Algebra: formalization of classical algebra.  Intended as base for
  3470 any algebraic development in Isabelle.  Currently covers group theory
  3471 (up to Sylow's theorem) and ring theory (Universal Property of
  3472 Univariate Polynomials).  Contributions welcome;
  3473 
  3474 * GroupTheory: deleted, since its material has been moved to Algebra;
  3475 
  3476 * Complex: new directory of the complex numbers with numeric constants,
  3477 nonstandard complex numbers, and some complex analysis, standard and
  3478 nonstandard (Jacques Fleuriot);
  3479 
  3480 * HOL-Complex: new image for analysis, replacing HOL-Real and HOL-Hyperreal;
  3481 
  3482 * Hyperreal: introduced Gauge integration and hyperreal logarithms (Jacques
  3483 Fleuriot);
  3484 
  3485 * Real/HahnBanach: updated and adapted to locales;
  3486 
  3487 * NumberTheory: added Gauss's law of quadratic reciprocity (by Avigad,
  3488 Gray and Kramer);
  3489 
  3490 * UNITY: added the Meier-Sanders theory of progress sets;
  3491 
  3492 * MicroJava: bytecode verifier and lightweight bytecode verifier
  3493 as abstract algorithms, instantiated to the JVM;
  3494 
  3495 * Bali: Java source language formalization. Type system, operational
  3496 semantics, axiomatic semantics. Supported language features:
  3497 classes, interfaces, objects,virtual methods, static methods,
  3498 static/instance fields, arrays, access modifiers, definite
  3499 assignment, exceptions.
  3500 
  3501 
  3502 *** ZF ***
  3503 
  3504 * ZF/Constructible: consistency proof for AC (Gdel's constructible
  3505 universe, etc.);
  3506 
  3507 * Main ZF: virtually all theories converted to new-style format;
  3508 
  3509 
  3510 *** ML ***
  3511 
  3512 * Pure: Tactic.prove provides sane interface for internal proofs;
  3513 omits the infamous "standard" operation, so this is more appropriate
  3514 than prove_goalw_cterm in many situations (e.g. in simprocs);
  3515 
  3516 * Pure: improved error reporting of simprocs;
  3517 
  3518 * Provers: Simplifier.simproc(_i) provides sane interface for setting
  3519 up simprocs;
  3520 
  3521 
  3522 *** Document preparation ***
  3523 
  3524 * uses \par instead of \\ for line breaks in theory text. This may
  3525 shift some page breaks in large documents. To get the old behaviour
  3526 use \renewcommand{\isanewline}{\mbox{}\\\mbox{}} in root.tex.
  3527 
  3528 * minimized dependencies of isabelle.sty and isabellesym.sty on
  3529 other packages
  3530 
  3531 * \<euro> now needs package babel/greek instead of marvosym (which
  3532 broke \Rightarrow)
  3533 
  3534 * normal size for \<zero>...\<nine> (uses \mathbf instead of
  3535 textcomp package)
  3536 
  3537 
  3538 
  3539 New in Isabelle2002 (March 2002)
  3540 --------------------------------
  3541 
  3542 *** Document preparation ***
  3543 
  3544 * greatly simplified document preparation setup, including more
  3545 graceful interpretation of isatool usedir -i/-d/-D options, and more
  3546 instructive isatool mkdir; users should basically be able to get
  3547 started with "isatool mkdir HOL Test && isatool make"; alternatively,
  3548 users may run a separate document processing stage manually like this:
  3549 "isatool usedir -D output HOL Test && isatool document Test/output";
  3550 
  3551 * theory dependency graph may now be incorporated into documents;
  3552 isatool usedir -g true will produce session_graph.eps/.pdf for use
  3553 with \includegraphics of LaTeX;
  3554 
  3555 * proper spacing of consecutive markup elements, especially text
  3556 blocks after section headings;
  3557 
  3558 * support bold style (for single symbols only), input syntax is like
  3559 this: "\<^bold>\<alpha>" or "\<^bold>A";
  3560 
  3561 * \<bullet> is now output as bold \cdot by default, which looks much
  3562 better in printed text;
  3563 
  3564 * added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
  3565 note that these symbols are currently unavailable in Proof General /
  3566 X-Symbol; new symbols \<zero>, \<one>, ..., \<nine>, and \<euro>;
  3567 
  3568 * isatool latex no longer depends on changed TEXINPUTS, instead
  3569 isatool document copies the Isabelle style files to the target
  3570 location;
  3571 
  3572 
  3573 *** Isar ***
  3574 
  3575 * Pure/Provers: improved proof by cases and induction;
  3576   - 'case' command admits impromptu naming of parameters (such as
  3577     "case (Suc n)");
  3578   - 'induct' method divinates rule instantiation from the inductive
  3579     claim; no longer requires excessive ?P bindings for proper
  3580     instantiation of cases;
  3581   - 'induct' method properly enumerates all possibilities of set/type
  3582     rules; as a consequence facts may be also passed through *type*
  3583     rules without further ado;
  3584   - 'induct' method now derives symbolic cases from the *rulified*
  3585     rule (before it used to rulify cases stemming from the internal
  3586     atomized version); this means that the context of a non-atomic
  3587     statement becomes is included in the hypothesis, avoiding the
  3588     slightly cumbersome show "PROP ?case" form;
  3589   - 'induct' may now use elim-style induction rules without chaining
  3590     facts, using ``missing'' premises from the goal state; this allows
  3591     rules stemming from inductive sets to be applied in unstructured
  3592     scripts, while still benefitting from proper handling of non-atomic
  3593     statements; NB: major inductive premises need to be put first, all
  3594     the rest of the goal is passed through the induction;
  3595   - 'induct' proper support for mutual induction involving non-atomic
  3596     rule statements (uses the new concept of simultaneous goals, see
  3597     below);
  3598   - append all possible rule selections, but only use the first
  3599     success (no backtracking);
  3600   - removed obsolete "(simplified)" and "(stripped)" options of methods;
  3601   - undeclared rule case names default to numbers 1, 2, 3, ...;
  3602   - added 'print_induct_rules' (covered by help item in recent Proof
  3603     General versions);
  3604   - moved induct/cases attributes to Pure, methods to Provers;
  3605   - generic method setup instantiated for FOL and HOL;
  3606 
  3607 * Pure: support multiple simultaneous goal statements, for example
  3608 "have a: A and b: B" (same for 'theorem' etc.); being a pure
  3609 meta-level mechanism, this acts as if several individual goals had
  3610 been stated separately; in particular common proof methods need to be
  3611 repeated in order to cover all claims; note that a single elimination
  3612 step is *not* sufficient to establish the two conjunctions, so this
  3613 fails:
  3614 
  3615   assume "A & B" then have A and B ..   (*".." fails*)
  3616 
  3617 better use "obtain" in situations as above; alternative refer to
  3618 multi-step methods like 'auto', 'simp_all', 'blast+' etc.;
  3619 
  3620 * Pure: proper integration with ``locales''; unlike the original
  3621 version by Florian Kammller, Isar locales package high-level proof
  3622 contexts rather than raw logical ones (e.g. we admit to include
  3623 attributes everywhere); operations on locales include merge and
  3624 rename; support for implicit arguments (``structures''); simultaneous
  3625 type-inference over imports and text; see also HOL/ex/Locales.thy for
  3626 some examples;
  3627 
  3628 * Pure: the following commands have been ``localized'', supporting a
  3629 target locale specification "(in name)": 'lemma', 'theorem',
  3630 'corollary', 'lemmas', 'theorems', 'declare'; the results will be
  3631 stored both within the locale and at the theory level (exported and
  3632 qualified by the locale name);
  3633 
  3634 * Pure: theory goals may now be specified in ``long'' form, with
  3635 ad-hoc contexts consisting of arbitrary locale elements. for example
  3636 ``lemma foo: fixes x assumes "A x" shows "B x"'' (local syntax and
  3637 definitions may be given, too); the result is a meta-level rule with
  3638 the context elements being discharged in the obvious way;
  3639 
  3640 * Pure: new proof command 'using' allows to augment currently used
  3641 facts after a goal statement ('using' is syntactically analogous to
  3642 'apply', but acts on the goal's facts only); this allows chained facts
  3643 to be separated into parts given before and after a claim, as in
  3644 ``from a and b have C using d and e <proof>'';
  3645 
  3646 * Pure: renamed "antecedent" case to "rule_context";
  3647 
  3648 * Pure: new 'judgment' command records explicit information about the
  3649 object-logic embedding (used by several tools internally); no longer
  3650 use hard-wired "Trueprop";
  3651 
  3652 * Pure: added 'corollary' command;
  3653 
  3654 * Pure: fixed 'token_translation' command;
  3655 
  3656 * Pure: removed obsolete 'exported' attribute;
  3657 
  3658 * Pure: dummy pattern "_" in is/let is now automatically lifted over
  3659 bound variables: "ALL x. P x --> Q x" (is "ALL x. _ --> ?C x")
  3660 supersedes more cumbersome ... (is "ALL x. _ x --> ?C x");
  3661 
  3662 * Pure: method 'atomize' presents local goal premises as object-level
  3663 statements (atomic meta-level propositions); setup controlled via
  3664 rewrite rules declarations of 'atomize' attribute; example
  3665 application: 'induct' method with proper rule statements in improper
  3666 proof *scripts*;
  3667 
  3668 * Pure: emulation of instantiation tactics (rule_tac, cut_tac, etc.)
  3669 now consider the syntactic context of assumptions, giving a better
  3670 chance to get type-inference of the arguments right (this is
  3671 especially important for locales);
  3672 
  3673 * Pure: "sorry" no longer requires quick_and_dirty in interactive
  3674 mode;
  3675 
  3676 * Pure/obtain: the formal conclusion "thesis", being marked as
  3677 ``internal'', may no longer be reference directly in the text;
  3678 potential INCOMPATIBILITY, may need to use "?thesis" in rare
  3679 situations;
  3680 
  3681 * Pure: generic 'sym' attribute which declares a rule both as pure
  3682 'elim?' and for the 'symmetric' operation;
  3683 
  3684 * Pure: marginal comments ``--'' may now occur just anywhere in the
  3685 text; the fixed correlation with particular command syntax has been
  3686 discontinued;
  3687 
  3688 * Pure: new method 'rules' is particularly well-suited for proof
  3689 search in intuitionistic logic; a bit slower than 'blast' or 'fast',
  3690 but often produces more compact proof terms with less detours;
  3691 
  3692 * Pure/Provers/classical: simplified integration with pure rule
  3693 attributes and methods; the classical "intro?/elim?/dest?"
  3694 declarations coincide with the pure ones; the "rule" method no longer
  3695 includes classically swapped intros; "intro" and "elim" methods no
  3696 longer pick rules from the context; also got rid of ML declarations
  3697 AddXIs/AddXEs/AddXDs; all of this has some potential for
  3698 INCOMPATIBILITY;
  3699 
  3700 * Provers/classical: attribute 'swapped' produces classical inversions
  3701 of introduction rules;
  3702 
  3703 * Provers/simplifier: 'simplified' attribute may refer to explicit
  3704 rules instead of full simplifier context; 'iff' attribute handles
  3705 conditional rules;
  3706 
  3707 * HOL: 'typedef' now allows alternative names for Rep/Abs morphisms;
  3708 
  3709 * HOL: 'recdef' now fails on unfinished automated proofs, use
  3710 "(permissive)" option to recover old behavior;
  3711 
  3712 * HOL: 'inductive' no longer features separate (collective) attributes
  3713 for 'intros' (was found too confusing);
  3714 
  3715 * HOL: properly declared induction rules less_induct and
  3716 wf_induct_rule;
  3717 
  3718 
  3719 *** HOL ***
  3720 
  3721 * HOL: moved over to sane numeral syntax; the new policy is as
  3722 follows:
  3723 
  3724   - 0 and 1 are polymorphic constants, which are defined on any
  3725   numeric type (nat, int, real etc.);
  3726 
  3727   - 2, 3, 4, ... and -1, -2, -3, ... are polymorphic numerals, based
  3728   binary representation internally;
  3729 
  3730   - type nat has special constructor Suc, and generally prefers Suc 0
  3731   over 1::nat and Suc (Suc 0) over 2::nat;
  3732 
  3733 This change may cause significant problems of INCOMPATIBILITY; here
  3734 are some hints on converting existing sources:
  3735 
  3736   - due to the new "num" token, "-0" and "-1" etc. are now atomic
  3737   entities, so expressions involving "-" (unary or binary minus) need
  3738   to be spaced properly;
  3739 
  3740   - existing occurrences of "1" may need to be constraint "1::nat" or
  3741   even replaced by Suc 0; similar for old "2";
  3742 
  3743   - replace "#nnn" by "nnn", and "#-nnn" by "-nnn";
  3744 
  3745   - remove all special provisions on numerals in proofs;
  3746 
  3747 * HOL: simp rules nat_number expand numerals on nat to Suc/0
  3748 representation (depends on bin_arith_simps in the default context);
  3749 
  3750 * HOL: symbolic syntax for x^2 (numeral 2);
  3751 
  3752 * HOL: the class of all HOL types is now called "type" rather than
  3753 "term"; INCOMPATIBILITY, need to adapt references to this type class
  3754 in axclass/classes, instance/arities, and (usually rare) occurrences
  3755 in typings (of consts etc.); internally the class is called
  3756 "HOL.type", ML programs should refer to HOLogic.typeS;
  3757 
  3758 * HOL/record package improvements:
  3759   - new derived operations "fields" to build a partial record section,
  3760     "extend" to promote a fixed record to a record scheme, and
  3761     "truncate" for the reverse; cf. theorems "xxx.defs", which are *not*
  3762     declared as simp by default;
  3763   - shared operations ("more", "fields", etc.) now need to be always
  3764     qualified) --- potential INCOMPATIBILITY;
  3765   - removed "make_scheme" operations (use "make" with "extend") --
  3766     INCOMPATIBILITY;
  3767   - removed "more" class (simply use "term") -- INCOMPATIBILITY;
  3768   - provides cases/induct rules for use with corresponding Isar
  3769     methods (for concrete records, record schemes, concrete more
  3770     parts, and schematic more parts -- in that order);
  3771   - internal definitions directly based on a light-weight abstract
  3772     theory of product types over typedef rather than datatype;
  3773 
  3774 * HOL: generic code generator for generating executable ML code from
  3775 specifications; specific support for HOL constructs such as inductive
  3776 datatypes and sets, as well as recursive functions; can be invoked
  3777 via 'generate_code' theory section;
  3778 
  3779 * HOL: canonical cases/induct rules for n-tuples (n = 3..7);
  3780 
  3781 * HOL: consolidated and renamed several theories.  In particular:
  3782         Ord.thy has been absorbed into HOL.thy
  3783         String.thy has been absorbed into List.thy
  3784 
  3785 * HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
  3786 (beware of argument permutation!);
  3787 
  3788 * HOL: linorder_less_split superseded by linorder_cases;
  3789 
  3790 * HOL/List: "nodups" renamed to "distinct";
  3791 
  3792 * HOL: added "The" definite description operator; move Hilbert's "Eps"
  3793 to peripheral theory "Hilbert_Choice"; some INCOMPATIBILITIES:
  3794   - Ex_def has changed, now need to use some_eq_ex
  3795 
  3796 * HOL: made split_all_tac safe; EXISTING PROOFS MAY FAIL OR LOOP, so
  3797 in this (rare) case use:
  3798 
  3799   delSWrapper "split_all_tac"
  3800   addSbefore ("unsafe_split_all_tac", unsafe_split_all_tac)
  3801 
  3802 * HOL: added safe wrapper "split_conv_tac" to claset; EXISTING PROOFS
  3803 MAY FAIL;
  3804 
  3805 * HOL: introduced f^n = f o ... o f; warning: due to the limits of
  3806 Isabelle's type classes, ^ on functions and relations has too general
  3807 a domain, namely ('a * 'b) set and 'a => 'b; this means that it may be
  3808 necessary to attach explicit type constraints;
  3809 
  3810 * HOL/Relation: the prefix name of the infix "O" has been changed from
  3811 "comp" to "rel_comp"; INCOMPATIBILITY: a few theorems have been
  3812 renamed accordingly (eg "compI" -> "rel_compI").
  3813 
  3814 * HOL: syntax translations now work properly with numerals and records
  3815 expressions;
  3816 
  3817 * HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead
  3818 of "lam" -- INCOMPATIBILITY;
  3819 
  3820 * HOL: got rid of some global declarations (potential INCOMPATIBILITY
  3821 for ML tools): const "()" renamed "Product_Type.Unity", type "unit"
  3822 renamed "Product_Type.unit";
  3823 
  3824 * HOL: renamed rtrancl_into_rtrancl2 to converse_rtrancl_into_rtrancl
  3825 
  3826 * HOL: removed obsolete theorem "optionE" (use "option.exhaust", or
  3827 the "cases" method);
  3828 
  3829 * HOL/GroupTheory: group theory examples including Sylow's theorem (by
  3830 Florian Kammller);
  3831 
  3832 * HOL/IMP: updated and converted to new-style theory format; several
  3833 parts turned into readable document, with proper Isar proof texts and
  3834 some explanations (by Gerwin Klein);
  3835 
  3836 * HOL-Real: added Complex_Numbers (by Gertrud Bauer);
  3837 
  3838 * HOL-Hyperreal is now a logic image;
  3839 
  3840 
  3841 *** HOLCF ***
  3842 
  3843 * Isar: consts/constdefs supports mixfix syntax for continuous
  3844 operations;
  3845 
  3846 * Isar: domain package adapted to new-style theory format, e.g. see
  3847 HOLCF/ex/Dnat.thy;
  3848 
  3849 * theory Lift: proper use of rep_datatype lift instead of ML hacks --
  3850 potential INCOMPATIBILITY; now use plain induct_tac instead of former
  3851 lift.induct_tac, always use UU instead of Undef;
  3852 
  3853 * HOLCF/IMP: updated and converted to new-style theory;
  3854 
  3855 
  3856 *** ZF ***
  3857 
  3858 * Isar: proper integration of logic-specific tools and packages,
  3859 including theory commands '(co)inductive', '(co)datatype',
  3860 'rep_datatype', 'inductive_cases', as well as methods 'ind_cases',
  3861 'induct_tac', 'case_tac', and 'typecheck' (with attribute 'TC');
  3862 
  3863 * theory Main no longer includes AC; for the Axiom of Choice, base
  3864 your theory on Main_ZFC;
  3865 
  3866 * the integer library now covers quotients and remainders, with many
  3867 laws relating division to addition, multiplication, etc.;
  3868 
  3869 * ZF/UNITY: Chandy and Misra's UNITY is now available in ZF, giving a
  3870 typeless version of the formalism;
  3871 
  3872 * ZF/AC, Coind, IMP, Resid: updated and converted to new-style theory
  3873 format;
  3874 
  3875 * ZF/Induct: new directory for examples of inductive definitions,
  3876 including theory Multiset for multiset orderings; converted to
  3877 new-style theory format;
  3878 
  3879 * ZF: many new theorems about lists, ordinals, etc.;
  3880 
  3881 
  3882 *** General ***
  3883 
  3884 * Pure/kernel: meta-level proof terms (by Stefan Berghofer); reference
  3885 variable proof controls level of detail: 0 = no proofs (only oracle
  3886 dependencies), 1 = lemma dependencies, 2 = compact proof terms; see
  3887 also ref manual for further ML interfaces;
  3888 
  3889 * Pure/axclass: removed obsolete ML interface
  3890 goal_subclass/goal_arity;
  3891 
  3892 * Pure/syntax: new token syntax "num" for plain numerals (without "#"
  3893 of "xnum"); potential INCOMPATIBILITY, since -0, -1 etc. are now
  3894 separate tokens, so expressions involving minus need to be spaced
  3895 properly;
  3896 
  3897 * Pure/syntax: support non-oriented infixes, using keyword "infix"
  3898 rather than "infixl" or "infixr";
  3899 
  3900 * Pure/syntax: concrete syntax for dummy type variables admits genuine
  3901 sort constraint specifications in type inference; e.g. "x::_::foo"
  3902 ensures that the type of "x" is of sort "foo" (but not necessarily a
  3903 type variable);
  3904 
  3905 * Pure/syntax: print modes "type_brackets" and "no_type_brackets"
  3906 control output of nested => (types); the default behavior is
  3907 "type_brackets";
  3908 
  3909 * Pure/syntax: builtin parse translation for "_constify" turns valued
  3910 tokens into AST constants;
  3911 
  3912 * Pure/syntax: prefer later declarations of translations and print
  3913 translation functions; potential INCOMPATIBILITY: need to reverse
  3914 multiple declarations for same syntax element constant;
  3915 
  3916 * Pure/show_hyps reset by default (in accordance to existing Isar
  3917 practice);
  3918 
  3919 * Provers/classical: renamed addaltern to addafter, addSaltern to
  3920 addSafter;
  3921 
  3922 * Provers/clasimp: ``iff'' declarations now handle conditional rules
  3923 as well;
  3924 
  3925 * system: tested support for MacOS X; should be able to get Isabelle +
  3926 Proof General to work in a plain Terminal after installing Poly/ML
  3927 (e.g. from the Isabelle distribution area) and GNU bash alone
  3928 (e.g. from http://www.apple.com); full X11, XEmacs and X-Symbol
  3929 support requires further installations, e.g. from
  3930 http://fink.sourceforge.net/);
  3931 
  3932 * system: support Poly/ML 4.1.1 (able to manage larger heaps);
  3933 
  3934 * system: reduced base memory usage by Poly/ML (approx. 20 MB instead
  3935 of 40 MB), cf. ML_OPTIONS;
  3936 
  3937 * system: Proof General keywords specification is now part of the
  3938 Isabelle distribution (see etc/isar-keywords.el);
  3939 
  3940 * system: support for persistent Proof General sessions (refrain from
  3941 outdating all loaded theories on startup); user may create writable
  3942 logic images like this: ``isabelle -q HOL Test'';
  3943 
  3944 * system: smart selection of Isabelle process versus Isabelle
  3945 interface, accommodates case-insensitive file systems (e.g. HFS+); may
  3946 run both "isabelle" and "Isabelle" even if file names are badly
  3947 damaged (executable inspects the case of the first letter of its own
  3948 name); added separate "isabelle-process" and "isabelle-interface";
  3949 
  3950 * system: refrain from any attempt at filtering input streams; no
  3951 longer support ``8bit'' encoding of old isabelle font, instead proper
  3952 iso-latin characters may now be used; the related isatools
  3953 "symbolinput" and "nonascii" have disappeared as well;
  3954 
  3955 * system: removed old "xterm" interface (the print modes "xterm" and
  3956 "xterm_color" are still available for direct use in a suitable
  3957 terminal);
  3958 
  3959 
  3960 
  3961 New in Isabelle99-2 (February 2001)
  3962 -----------------------------------
  3963 
  3964 *** Overview of INCOMPATIBILITIES ***
  3965 
  3966 * HOL: please note that theories in the Library and elsewhere often use the
  3967 new-style (Isar) format; to refer to their theorems in an ML script you must
  3968 bind them to ML identifers by e.g.      val thm_name = thm "thm_name";
  3969 
  3970 * HOL: inductive package no longer splits induction rule aggressively,
  3971 but only as far as specified by the introductions given; the old
  3972 format may be recovered via ML function complete_split_rule or attribute
  3973 'split_rule (complete)';
  3974 
  3975 * HOL: induct renamed to lfp_induct, lfp_Tarski to lfp_unfold,
  3976 gfp_Tarski to gfp_unfold;
  3977 
  3978 * HOL: contrapos, contrapos2 renamed to contrapos_nn, contrapos_pp;
  3979 
  3980 * HOL: infix "dvd" now has priority 50 rather than 70 (because it is a
  3981 relation); infix "^^" has been renamed "``"; infix "``" has been
  3982 renamed "`"; "univalent" has been renamed "single_valued";
  3983 
  3984 * HOL/Real: "rinv" and "hrinv" replaced by overloaded "inverse"
  3985 operation;
  3986 
  3987 * HOLCF: infix "`" has been renamed "$"; the symbol syntax is \<cdot>;
  3988 
  3989 * Isar: 'obtain' no longer declares "that" fact as simp/intro;
  3990 
  3991 * Isar/HOL: method 'induct' now handles non-atomic goals; as a
  3992 consequence, it is no longer monotonic wrt. the local goal context
  3993 (which is now passed through the inductive cases);
  3994 
  3995 * Document preparation: renamed standard symbols \<ll> to \<lless> and
  3996 \<gg> to \<ggreater>;
  3997 
  3998 
  3999 *** Document preparation ***
  4000 
  4001 * \isabellestyle{NAME} selects version of Isabelle output (currently
  4002 available: are "it" for near math-mode best-style output, "sl" for
  4003 slanted text style, and "tt" for plain type-writer; if no
  4004 \isabellestyle command is given, output is according to slanted
  4005 type-writer);
  4006 
  4007 * support sub/super scripts (for single symbols only), input syntax is
  4008 like this: "A\<^sup>*" or "A\<^sup>\<star>";
  4009 
  4010 * some more standard symbols; see Appendix A of the system manual for
  4011 the complete list of symbols defined in isabellesym.sty;
  4012 
  4013 * improved isabelle style files; more abstract symbol implementation
  4014 (should now use \isamath{...} and \isatext{...} in custom symbol
  4015 definitions);
  4016 
  4017 * antiquotation @{goals} and @{subgoals} for output of *dynamic* goals
  4018 state; Note that presentation of goal states does not conform to
  4019 actual human-readable proof documents.  Please do not include goal
  4020 states into document output unless you really know what you are doing!
  4021 
  4022 * proper indentation of antiquoted output with proportional LaTeX
  4023 fonts;
  4024 
  4025 * no_document ML operator temporarily disables LaTeX document
  4026 generation;
  4027 
  4028 * isatool unsymbolize tunes sources for plain ASCII communication;
  4029 
  4030 
  4031 *** Isar ***
  4032 
  4033 * Pure: Isar now suffers initial goal statements to contain unbound
  4034 schematic variables (this does not conform to actual readable proof
  4035 documents, due to unpredictable outcome and non-compositional proof
  4036 checking); users who know what they are doing may use schematic goals
  4037 for Prolog-style synthesis of proven results;
  4038 
  4039 * Pure: assumption method (an implicit finishing) now handles actual
  4040 rules as well;
  4041 
  4042 * Pure: improved 'obtain' --- moved to Pure, insert "that" into
  4043 initial goal, declare "that" only as Pure intro (only for single
  4044 steps); the "that" rule assumption may now be involved in implicit
  4045 finishing, thus ".." becomes a feasible for trivial obtains;
  4046 
  4047 * Pure: default proof step now includes 'intro_classes'; thus trivial
  4048 instance proofs may be performed by "..";
  4049 
  4050 * Pure: ?thesis / ?this / "..." now work for pure meta-level
  4051 statements as well;
  4052 
  4053 * Pure: more robust selection of calculational rules;
  4054 
  4055 * Pure: the builtin notion of 'finished' goal now includes the ==-refl
  4056 rule (as well as the assumption rule);
  4057 
  4058 * Pure: 'thm_deps' command visualizes dependencies of theorems and
  4059 lemmas, using the graph browser tool;
  4060 
  4061 * Pure: predict failure of "show" in interactive mode;
  4062 
  4063 * Pure: 'thms_containing' now takes actual terms as arguments;
  4064 
  4065 * HOL: improved method 'induct' --- now handles non-atomic goals
  4066 (potential INCOMPATIBILITY); tuned error handling;
  4067 
  4068 * HOL: cases and induct rules now provide explicit hints about the
  4069 number of facts to be consumed (0 for "type" and 1 for "set" rules);
  4070 any remaining facts are inserted into the goal verbatim;
  4071 
  4072 * HOL: local contexts (aka cases) may now contain term bindings as
  4073 well; the 'cases' and 'induct' methods new provide a ?case binding for
  4074 the result to be shown in each case;
  4075 
  4076 * HOL: added 'recdef_tc' command;
  4077 
  4078 * isatool convert assists in eliminating legacy ML scripts;
  4079 
  4080 
  4081 *** HOL ***
  4082 
  4083 * HOL/Library: a collection of generic theories to be used together
  4084 with main HOL; the theory loader path already includes this directory
  4085 by default; the following existing theories have been moved here:
  4086 HOL/Induct/Multiset, HOL/Induct/Acc (as Accessible_Part), HOL/While
  4087 (as While_Combinator), HOL/Lex/Prefix (as List_Prefix);
  4088 
  4089 * HOL/Unix: "Some aspects of Unix file-system security", a typical
  4090 modelling and verification task performed in Isabelle/HOL +
  4091 Isabelle/Isar + Isabelle document preparation (by Markus Wenzel).
  4092 
  4093 * HOL/Algebra: special summation operator SUM no longer exists, it has
  4094 been replaced by setsum; infix 'assoc' now has priority 50 (like
  4095 'dvd'); axiom 'one_not_zero' has been moved from axclass 'ring' to
  4096 'domain', this makes the theory consistent with mathematical
  4097 literature;
  4098 
  4099 * HOL basics: added overloaded operations "inverse" and "divide"
  4100 (infix "/"), syntax for generic "abs" operation, generic summation
  4101 operator \<Sum>;
  4102 
  4103 * HOL/typedef: simplified package, provide more useful rules (see also
  4104 HOL/subset.thy);
  4105 
  4106 * HOL/datatype: induction rule for arbitrarily branching datatypes is
  4107 now expressed as a proper nested rule (old-style tactic scripts may
  4108 require atomize_strip_tac to cope with non-atomic premises);
  4109 
  4110 * HOL: renamed theory "Prod" to "Product_Type", renamed "split" rule
  4111 to "split_conv" (old name still available for compatibility);
  4112 
  4113 * HOL: improved concrete syntax for strings (e.g. allows translation
  4114 rules with string literals);
  4115 
  4116 * HOL-Real-Hyperreal: this extends HOL-Real with the hyperreals
  4117  and Fleuriot's mechanization of analysis, including the transcendental
  4118  functions for the reals;
  4119 
  4120 * HOL/Real, HOL/Hyperreal: improved arithmetic simplification;
  4121 
  4122 
  4123 *** CTT ***
  4124 
  4125 * CTT: x-symbol support for Pi, Sigma, -->, : (membership); note that
  4126 "lam" is displayed as TWO lambda-symbols
  4127 
  4128 * CTT: theory Main now available, containing everything (that is, Bool
  4129 and Arith);
  4130 
  4131 
  4132 *** General ***
  4133 
  4134 * Pure: the Simplifier has been implemented properly as a derived rule
  4135 outside of the actual kernel (at last!); the overall performance
  4136 penalty in practical applications is about 50%, while reliability of
  4137 the Isabelle inference kernel has been greatly improved;
  4138 
  4139 * print modes "brackets" and "no_brackets" control output of nested =>
  4140 (types) and ==> (props); the default behaviour is "brackets";
  4141 
  4142 * Provers: fast_tac (and friends) now handle actual object-logic rules
  4143 as assumptions as well;
  4144 
  4145 * system: support Poly/ML 4.0;
  4146 
  4147 * system: isatool install handles KDE version 1 or 2;
  4148 
  4149 
  4150 
  4151 New in Isabelle99-1 (October 2000)
  4152 ----------------------------------
  4153 
  4154 *** Overview of INCOMPATIBILITIES ***
  4155 
  4156 * HOL: simplification of natural numbers is much changed; to partly
  4157 recover the old behaviour (e.g. to prevent n+n rewriting to #2*n)
  4158 issue the following ML commands:
  4159 
  4160   Delsimprocs Nat_Numeral_Simprocs.cancel_numerals;
  4161   Delsimprocs [Nat_Numeral_Simprocs.combine_numerals];
  4162 
  4163 * HOL: simplification no longer dives into case-expressions; this is
  4164 controlled by "t.weak_case_cong" for each datatype t;
  4165 
  4166 * HOL: nat_less_induct renamed to less_induct;
  4167 
  4168 * HOL: systematic renaming of the SOME (Eps) rules, may use isatool
  4169 fixsome to patch .thy and .ML sources automatically;
  4170 
  4171   select_equality  -> some_equality
  4172   select_eq_Ex     -> some_eq_ex
  4173   selectI2EX       -> someI2_ex
  4174   selectI2         -> someI2
  4175   selectI          -> someI
  4176   select1_equality -> some1_equality
  4177   Eps_sym_eq       -> some_sym_eq_trivial
  4178   Eps_eq           -> some_eq_trivial
  4179 
  4180 * HOL: exhaust_tac on datatypes superceded by new generic case_tac;
  4181 
  4182 * HOL: removed obsolete theorem binding expand_if (refer to split_if
  4183 instead);
  4184 
  4185 * HOL: the recursion equations generated by 'recdef' are now called
  4186 f.simps instead of f.rules;
  4187 
  4188 * HOL: qed_spec_mp now also handles bounded ALL as well;
  4189 
  4190 * HOL: 0 is now overloaded, so the type constraint ":: nat" may
  4191 sometimes be needed;
  4192 
  4193 * HOL: the constant for "f``x" is now "image" rather than "op ``";
  4194 
  4195 * HOL: the constant for "f-``x" is now "vimage" rather than "op -``";
  4196 
  4197 * HOL: the disjoint sum is now "<+>" instead of "Plus"; the cartesian
  4198 product is now "<*>" instead of "Times"; the lexicographic product is
  4199 now "<*lex*>" instead of "**";
  4200 
  4201 * HOL: theory Sexp is now in HOL/Induct examples (it used to be part
  4202 of main HOL, but was unused); better use HOL's datatype package;
  4203 
  4204 * HOL: removed "symbols" syntax for constant "override" of theory Map;
  4205 the old syntax may be recovered as follows:
  4206 
  4207   syntax (symbols)
  4208     override  :: "('a ~=> 'b) => ('a ~=> 'b) => ('a ~=> 'b)"
  4209       (infixl "\\<oplus>" 100)
  4210 
  4211 * HOL/Real: "rabs" replaced by overloaded "abs" function;
  4212 
  4213 * HOL/ML: even fewer consts are declared as global (see theories Ord,
  4214 Lfp, Gfp, WF); this only affects ML packages that refer to const names
  4215 internally;
  4216 
  4217 * HOL and ZF: syntax for quotienting wrt an equivalence relation
  4218 changed from A/r to A//r;
  4219 
  4220 * ZF: new treatment of arithmetic (nat & int) may break some old
  4221 proofs;
  4222 
  4223 * Isar: renamed some attributes (RS -> THEN, simplify -> simplified,
  4224 rulify -> rule_format, elimify -> elim_format, ...);
  4225 
  4226 * Isar/Provers: intro/elim/dest attributes changed; renamed
  4227 intro/intro!/intro!! flags to intro!/intro/intro? (in most cases, one
  4228 should have to change intro!! to intro? only); replaced "delrule" by
  4229 "rule del";
  4230 
  4231 * Isar/HOL: renamed "intrs" to "intros" in inductive definitions;
  4232 
  4233 * Provers: strengthened force_tac by using new first_best_tac;
  4234 
  4235 * LaTeX document preparation: several changes of isabelle.sty (see
  4236 lib/texinputs);
  4237 
  4238 
  4239 *** Document preparation ***
  4240 
  4241 * formal comments (text blocks etc.) in new-style theories may now
  4242 contain antiquotations of thm/prop/term/typ/text to be presented
  4243 according to latex print mode; concrete syntax is like this:
  4244 @{term[show_types] "f(x) = a + x"};
  4245 
  4246 * isatool mkdir provides easy setup of Isabelle session directories,
  4247 including proper document sources;
  4248 
  4249 * generated LaTeX sources are now deleted after successful run
  4250 (isatool document -c); may retain a copy somewhere else via -D option
  4251 of isatool usedir;
  4252 
  4253 * isatool usedir -D now lets isatool latex -o sty update the Isabelle
  4254 style files, achieving self-contained LaTeX sources and simplifying
  4255 LaTeX debugging;
  4256 
  4257 * old-style theories now produce (crude) LaTeX output as well;
  4258 
  4259 * browser info session directories are now self-contained (may be put
  4260 on WWW server seperately); improved graphs of nested sessions; removed
  4261 graph for 'all sessions';
  4262 
  4263 * several improvements in isabelle style files; \isabellestyle{it}
  4264 produces fake math mode output; \isamarkupheader is now \section by
  4265 default; see lib/texinputs/isabelle.sty etc.;
  4266 
  4267 
  4268 *** Isar ***
  4269 
  4270 * Isar/Pure: local results and corresponding term bindings are now
  4271 subject to Hindley-Milner polymorphism (similar to ML); this
  4272 accommodates incremental type-inference very nicely;
  4273 
  4274 * Isar/Pure: new derived language element 'obtain' supports
  4275 generalized existence reasoning;
  4276 
  4277 * Isar/Pure: new calculational elements 'moreover' and 'ultimately'
  4278 support accumulation of results, without applying any rules yet;
  4279 useful to collect intermediate results without explicit name
  4280 references, and for use with transitivity rules with more than 2
  4281 premises;
  4282 
  4283 * Isar/Pure: scalable support for case-analysis type proofs: new
  4284 'case' language element refers to local contexts symbolically, as
  4285 produced by certain proof methods; internally, case names are attached
  4286 to theorems as "tags";
  4287 
  4288 * Isar/Pure: theory command 'hide' removes declarations from
  4289 class/type/const name spaces;
  4290 
  4291 * Isar/Pure: theory command 'defs' supports option "(overloaded)" to
  4292 indicate potential overloading;
  4293 
  4294 * Isar/Pure: changed syntax of local blocks from {{ }} to { };
  4295 
  4296 * Isar/Pure: syntax of sorts made 'inner', i.e. have to write
  4297 "{a,b,c}" instead of {a,b,c};
  4298 
  4299 * Isar/Pure now provides its own version of intro/elim/dest
  4300 attributes; useful for building new logics, but beware of confusion
  4301 with the version in Provers/classical;
  4302 
  4303 * Isar/Pure: the local context of (non-atomic) goals is provided via
  4304 case name 'antecedent';
  4305 
  4306 * Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms
  4307 to the current context is now done automatically);
  4308 
  4309 * Isar/Pure: theory command 'method_setup' provides a simple interface
  4310 for definining proof methods in ML;
  4311 
  4312 * Isar/Provers: intro/elim/dest attributes changed; renamed
  4313 intro/intro!/intro!! flags to intro!/intro/intro? (INCOMPATIBILITY, in
  4314 most cases, one should have to change intro!! to intro? only);
  4315 replaced "delrule" by "rule del";
  4316 
  4317 * Isar/Provers: new 'hypsubst' method, plain 'subst' method and
  4318 'symmetric' attribute (the latter supercedes [RS sym]);
  4319 
  4320 * Isar/Provers: splitter support (via 'split' attribute and 'simp'
  4321 method modifier); 'simp' method: 'only:' modifier removes loopers as
  4322 well (including splits);
  4323 
  4324 * Isar/Provers: Simplifier and Classical methods now support all kind
  4325 of modifiers used in the past, including 'cong', 'iff', etc.
  4326 
  4327 * Isar/Provers: added 'fastsimp' and 'clarsimp' methods (combination
  4328 of Simplifier and Classical reasoner);
  4329 
  4330 * Isar/HOL: new proof method 'cases' and improved version of 'induct'
  4331 now support named cases; major packages (inductive, datatype, primrec,
  4332 recdef) support case names and properly name parameters;
  4333 
  4334 * Isar/HOL: new transitivity rules for substitution in inequalities --
  4335 monotonicity conditions are extracted to be proven at end of
  4336 calculations;
  4337 
  4338 * Isar/HOL: removed 'case_split' thm binding, should use 'cases' proof
  4339 method anyway;
  4340 
  4341 * Isar/HOL: removed old expand_if = split_if; theorems if_splits =
  4342 split_if split_if_asm; datatype package provides theorems foo.splits =
  4343 foo.split foo.split_asm for each datatype;
  4344 
  4345 * Isar/HOL: tuned inductive package, rename "intrs" to "intros"
  4346 (potential INCOMPATIBILITY), emulation of mk_cases feature for proof
  4347 scripts: new 'inductive_cases' command and 'ind_cases' method; (Note:
  4348 use "(cases (simplified))" method in proper proof texts);
  4349 
  4350 * Isar/HOL: added global 'arith_split' attribute for 'arith' method;
  4351 
  4352 * Isar: names of theorems etc. may be natural numbers as well;
  4353 
  4354 * Isar: 'pr' command: optional arguments for goals_limit and
  4355 ProofContext.prems_limit; no longer prints theory contexts, but only
  4356 proof states;
  4357 
  4358 * Isar: diagnostic commands 'pr', 'thm', 'prop', 'term', 'typ' admit
  4359 additional print modes to be specified; e.g. "pr(latex)" will print
  4360 proof state according to the Isabelle LaTeX style;
  4361 
  4362 * Isar: improved support for emulating tactic scripts, including proof
  4363 methods 'rule_tac' etc., 'cut_tac', 'thin_tac', 'subgoal_tac',
  4364 'rename_tac', 'rotate_tac', 'tactic', and 'case_tac' / 'induct_tac'
  4365 (for HOL datatypes);
  4366 
  4367 * Isar: simplified (more robust) goal selection of proof methods: 1st
  4368 goal, all goals, or explicit goal specifier (tactic emulation); thus
  4369 'proof method scripts' have to be in depth-first order;
  4370 
  4371 * Isar: tuned 'let' syntax: replaced 'as' keyword by 'and';
  4372 
  4373 * Isar: removed 'help' command, which hasn't been too helpful anyway;
  4374 should instead use individual commands for printing items
  4375 (print_commands, print_methods etc.);
  4376 
  4377 * Isar: added 'nothing' --- the empty list of theorems;
  4378 
  4379 
  4380 *** HOL ***
  4381 
  4382 * HOL/MicroJava: formalization of a fragment of Java, together with a
  4383 corresponding virtual machine and a specification of its bytecode
  4384 verifier and a lightweight bytecode verifier, including proofs of
  4385 type-safety; by Gerwin Klein, Tobias Nipkow, David von Oheimb, and
  4386 Cornelia Pusch (see also the homepage of project Bali at
  4387 http://isabelle.in.tum.de/Bali/);
  4388 
  4389 * HOL/Algebra: new theory of rings and univariate polynomials, by
  4390 Clemens Ballarin;
  4391 
  4392 * HOL/NumberTheory: fundamental Theorem of Arithmetic, Chinese
  4393 Remainder Theorem, Fermat/Euler Theorem, Wilson's Theorem, by Thomas M
  4394 Rasmussen;
  4395 
  4396 * HOL/Lattice: fundamental concepts of lattice theory and order
  4397 structures, including duals, properties of bounds versus algebraic
  4398 laws, lattice operations versus set-theoretic ones, the Knaster-Tarski
  4399 Theorem for complete lattices etc.; may also serve as a demonstration
  4400 for abstract algebraic reasoning using axiomatic type classes, and
  4401 mathematics-style proof in Isabelle/Isar; by Markus Wenzel;
  4402 
  4403 * HOL/Prolog: a (bare-bones) implementation of Lambda-Prolog, by David
  4404 von Oheimb;
  4405 
  4406 * HOL/IMPP: extension of IMP with local variables and mutually
  4407 recursive procedures, by David von Oheimb;
  4408 
  4409 * HOL/Lambda: converted into new-style theory and document;
  4410 
  4411 * HOL/ex/Multiquote: example of multiple nested quotations and
  4412 anti-quotations -- basically a generalized version of de-Bruijn
  4413 representation; very useful in avoiding lifting of operations;
  4414 
  4415 * HOL/record: added general record equality rule to simpset; fixed
  4416 select-update simplification procedure to handle extended records as
  4417 well; admit "r" as field name;
  4418 
  4419 * HOL: 0 is now overloaded over the new sort "zero", allowing its use with
  4420 other numeric types and also as the identity of groups, rings, etc.;
  4421 
  4422 * HOL: new axclass plus_ac0 for addition with the AC-laws and 0 as identity.
  4423 Types nat and int belong to this axclass;
  4424 
  4425 * HOL: greatly improved simplification involving numerals of type nat, int, real:
  4426    (i + #8 + j) = Suc k simplifies to  #7 + (i + j) = k
  4427    i*j + k + j*#3*i     simplifies to  #4*(i*j) + k
  4428   two terms #m*u and #n*u are replaced by #(m+n)*u
  4429     (where #m, #n and u can implicitly be 1; this is simproc combine_numerals)
  4430   and the term/formula #m*u+x ~~ #n*u+y simplifies simplifies to #(m-n)+x ~~ y
  4431     or x ~~ #(n-m)+y, where ~~ is one of = < <= or - (simproc cancel_numerals);
  4432 
  4433 * HOL: meson_tac is available (previously in ex/meson.ML); it is a
  4434 powerful prover for predicate logic but knows nothing of clasets; see
  4435 ex/mesontest.ML and ex/mesontest2.ML for example applications;
  4436 
  4437 * HOL: new version of "case_tac" subsumes both boolean case split and
  4438 "exhaust_tac" on datatypes; INCOMPATIBILITY: exhaust_tac no longer
  4439 exists, may define val exhaust_tac = case_tac for ad-hoc portability;
  4440 
  4441 * HOL: simplification no longer dives into case-expressions: only the
  4442 selector expression is simplified, but not the remaining arms; to
  4443 enable full simplification of case-expressions for datatype t, you may
  4444 remove t.weak_case_cong from the simpset, either globally (Delcongs
  4445 [thm"t.weak_case_cong"];) or locally (delcongs [...]).
  4446 
  4447 * HOL/recdef: the recursion equations generated by 'recdef' for
  4448 function 'f' are now called f.simps instead of f.rules; if all
  4449 termination conditions are proved automatically, these simplification
  4450 rules are added to the simpset, as in primrec; rules may be named
  4451 individually as well, resulting in a separate list of theorems for
  4452 each equation;
  4453 
  4454 * HOL/While is a new theory that provides a while-combinator. It
  4455 permits the definition of tail-recursive functions without the
  4456 provision of a termination measure. The latter is necessary once the
  4457 invariant proof rule for while is applied.
  4458 
  4459 * HOL: new (overloaded) notation for the set of elements below/above
  4460 some element: {..u}, {..u(}, {l..}, {)l..}. See theory SetInterval.
  4461 
  4462 * HOL: theorems impI, allI, ballI bound as "strip";
  4463 
  4464 * HOL: new tactic induct_thm_tac: thm -> string -> int -> tactic
  4465 induct_tac th "x1 ... xn" expects th to have a conclusion of the form
  4466 P v1 ... vn and abbreviates res_inst_tac [("v1","x1"),...,("vn","xn")] th;
  4467 
  4468 * HOL/Real: "rabs" replaced by overloaded "abs" function;
  4469 
  4470 * HOL: theory Sexp now in HOL/Induct examples (it used to be part of
  4471 main HOL, but was unused);
  4472 
  4473 * HOL: fewer consts declared as global (e.g. have to refer to
  4474 "Lfp.lfp" instead of "lfp" internally; affects ML packages only);
  4475 
  4476 * HOL: tuned AST representation of nested pairs, avoiding bogus output
  4477 in case of overlap with user translations (e.g. judgements over
  4478 tuples); (note that the underlying logical represenation is still
  4479 bogus);
  4480 
  4481 
  4482 *** ZF ***
  4483 
  4484 * ZF: simplification automatically cancels common terms in arithmetic
  4485 expressions over nat and int;
  4486 
  4487 * ZF: new treatment of nat to minimize type-checking: all operators
  4488 coerce their operands to a natural number using the function natify,
  4489 making the algebraic laws unconditional;
  4490 
  4491 * ZF: as above, for int: operators coerce their operands to an integer
  4492 using the function intify;
  4493 
  4494 * ZF: the integer library now contains many of the usual laws for the
  4495 orderings, including $<=, and monotonicity laws for $+ and $*;
  4496 
  4497 * ZF: new example ZF/ex/NatSum to demonstrate integer arithmetic
  4498 simplification;
  4499 
  4500 * FOL and ZF: AddIffs now available, giving theorems of the form P<->Q
  4501 to the simplifier and classical reasoner simultaneously;
  4502 
  4503 
  4504 *** General ***
  4505 
  4506 * Provers: blast_tac now handles actual object-logic rules as
  4507 assumptions; note that auto_tac uses blast_tac internally as well;
  4508 
  4509 * Provers: new functions rulify/rulify_no_asm: thm -> thm for turning
  4510 outer -->/All/Ball into ==>/!!; qed_spec_mp now uses rulify_no_asm;
  4511 
  4512 * Provers: delrules now handles destruct rules as well (no longer need
  4513 explicit make_elim);
  4514 
  4515 * Provers: Blast_tac now warns of and ignores "weak elimination rules" e.g.
  4516   [| inj ?f;          ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W
  4517 use instead the strong form,
  4518   [| inj ?f; ~ ?W ==> ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W
  4519 in HOL, FOL and ZF the function cla_make_elim will create such rules
  4520 from destruct-rules;
  4521 
  4522 * Provers: Simplifier.easy_setup provides a fast path to basic
  4523 Simplifier setup for new object-logics;
  4524 
  4525 * Pure: AST translation rules no longer require constant head on LHS;
  4526 
  4527 * Pure: improved name spaces: ambiguous output is qualified; support
  4528 for hiding of names;
  4529 
  4530 * system: smart setup of canonical ML_HOME, ISABELLE_INTERFACE, and
  4531 XSYMBOL_HOME; no longer need to do manual configuration in most
  4532 situations;
  4533 
  4534 * system: compression of ML heaps images may now be controlled via -c
  4535 option of isabelle and isatool usedir (currently only observed by
  4536 Poly/ML);
  4537 
  4538 * system: isatool installfonts may handle X-Symbol fonts as well (very
  4539 useful for remote X11);
  4540 
  4541 * system: provide TAGS file for Isabelle sources;
  4542 
  4543 * ML: infix 'OF' is a version of 'MRS' with more appropriate argument
  4544 order;
  4545 
  4546 * ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
  4547 timing flag supersedes proof_timing and Toplevel.trace;
  4548 
  4549 * ML: new combinators |>> and |>>> for incremental transformations
  4550 with secondary results (e.g. certain theory extensions):
  4551 
  4552 * ML: PureThy.add_defs gets additional argument to indicate potential
  4553 overloading (usually false);
  4554 
  4555 * ML: PureThy.add_thms/add_axioms/add_defs now return theorems as
  4556 results;
  4557 
  4558 
  4559 
  4560 New in Isabelle99 (October 1999)
  4561 --------------------------------
  4562 
  4563 *** Overview of INCOMPATIBILITIES (see below for more details) ***
  4564 
  4565 * HOL: The THEN and ELSE parts of conditional expressions (if P then x else y)
  4566 are no longer simplified.  (This allows the simplifier to unfold recursive
  4567 functional programs.)  To restore the old behaviour, declare
  4568 
  4569     Delcongs [if_weak_cong];
  4570 
  4571 * HOL: Removed the obsolete syntax "Compl A"; use -A for set
  4572 complement;
  4573 
  4574 * HOL: the predicate "inj" is now defined by translation to "inj_on";
  4575 
  4576 * HOL/datatype: mutual_induct_tac no longer exists --
  4577   use induct_tac "x_1 ... x_n" instead of mutual_induct_tac ["x_1", ..., "x_n"]
  4578 
  4579 * HOL/typedef: fixed type inference for representing set; type
  4580 arguments now have to occur explicitly on the rhs as type constraints;
  4581 
  4582 * ZF: The con_defs part of an inductive definition may no longer refer
  4583 to constants declared in the same theory;
  4584 
  4585 * HOL, ZF: the function mk_cases, generated by the inductive
  4586 definition package, has lost an argument.  To simplify its result, it
  4587 uses the default simpset instead of a supplied list of theorems.
  4588 
  4589 * HOL/List: the constructors of type list are now Nil and Cons;
  4590 
  4591 * Simplifier: the type of the infix ML functions
  4592         setSSolver addSSolver setSolver addSolver
  4593 is now  simpset * solver -> simpset  where `solver' is a new abstract type
  4594 for packaging solvers. A solver is created via
  4595         mk_solver: string -> (thm list -> int -> tactic) -> solver
  4596 where the string argument is only a comment.
  4597 
  4598 
  4599 *** Proof tools ***
  4600 
  4601 * Provers/Arith/fast_lin_arith.ML contains a functor for creating a
  4602 decision procedure for linear arithmetic. Currently it is used for
  4603 types `nat', `int', and `real' in HOL (see below); it can, should and
  4604 will be instantiated for other types and logics as well.
  4605 
  4606 * The simplifier now accepts rewrite rules with flexible heads, eg
  4607      hom ?f ==> ?f(?x+?y) = ?f ?x + ?f ?y
  4608   They are applied like any rule with a non-pattern lhs, i.e. by first-order
  4609   matching.
  4610 
  4611 
  4612 *** General ***
  4613 
  4614 * New Isabelle/Isar subsystem provides an alternative to traditional
  4615 tactical theorem proving; together with the ProofGeneral/isar user
  4616 interface it offers an interactive environment for developing human
  4617 readable proof documents (Isar == Intelligible semi-automated
  4618 reasoning); for further information see isatool doc isar-ref,
  4619 src/HOL/Isar_examples and http://isabelle.in.tum.de/Isar/
  4620 
  4621 * improved and simplified presentation of theories: better HTML markup
  4622 (including colors), graph views in several sizes; isatool usedir now
  4623 provides a proper interface for user theories (via -P option); actual
  4624 document preparation based on (PDF)LaTeX is available as well (for
  4625 new-style theories only); see isatool doc system for more information;
  4626 
  4627 * native support for Proof General, both for classic Isabelle and
  4628 Isabelle/Isar;
  4629 
  4630 * ML function thm_deps visualizes dependencies of theorems and lemmas,
  4631 using the graph browser tool;
  4632 
  4633 * Isabelle manuals now also available as PDF;
  4634 
  4635 * theory loader rewritten from scratch (may not be fully
  4636 bug-compatible); old loadpath variable has been replaced by show_path,
  4637 add_path, del_path, reset_path functions; new operations such as
  4638 update_thy, touch_thy, remove_thy, use/update_thy_only (see also
  4639 isatool doc ref);
  4640 
  4641 * improved isatool install: option -k creates KDE application icon,
  4642 option -p DIR installs standalone binaries;
  4643 
  4644 * added ML_PLATFORM setting (useful for cross-platform installations);
  4645 more robust handling of platform specific ML images for SML/NJ;
  4646 
  4647 * the settings environment is now statically scoped, i.e. it is never
  4648 created again in sub-processes invoked from isabelle, isatool, or
  4649 Isabelle;
  4650 
  4651 * path element specification '~~' refers to '$ISABELLE_HOME';
  4652 
  4653 * in locales, the "assumes" and "defines" parts may be omitted if
  4654 empty;
  4655 
  4656 * new print_mode "xsymbols" for extended symbol support (e.g. genuine
  4657 long arrows);
  4658 
  4659 * new print_mode "HTML";
  4660 
  4661 * new flag show_tags controls display of tags of theorems (which are
  4662 basically just comments that may be attached by some tools);
  4663 
  4664 * Isamode 2.6 requires patch to accomodate change of Isabelle font
  4665 mode and goal output format:
  4666 
  4667 diff -r Isamode-2.6/elisp/isa-load.el Isamode/elisp/isa-load.el
  4668 244c244
  4669 <       (list (isa-getenv "ISABELLE") "-msymbols" logic-name)
  4670 ---
  4671 >       (list (isa-getenv "ISABELLE") "-misabelle_font" "-msymbols" logic-name)
  4672 diff -r Isabelle-2.6/elisp/isa-proofstate.el Isamode/elisp/isa-proofstate.el
  4673 181c181
  4674 < (defconst proofstate-proofstart-regexp "^Level [0-9]+$"
  4675 ---
  4676 > (defconst proofstate-proofstart-regexp "^Level [0-9]+"
  4677 
  4678 * function bind_thms stores lists of theorems (cf. bind_thm);
  4679 
  4680 * new shorthand tactics ftac, eatac, datac, fatac;
  4681 
  4682 * qed (and friends) now accept "" as result name; in that case the
  4683 theorem is not stored, but proper checks and presentation of the
  4684 result still apply;
  4685 
  4686 * theorem database now also indexes constants "Trueprop", "all",
  4687 "==>", "=="; thus thms_containing, findI etc. may retrieve more rules;
  4688 
  4689 
  4690 *** HOL ***
  4691 
  4692 ** HOL arithmetic **
  4693 
  4694 * There are now decision procedures for linear arithmetic over nat and
  4695 int:
  4696 
  4697 1. arith_tac copes with arbitrary formulae involving `=', `<', `<=',
  4698 `+', `-', `Suc', `min', `max' and numerical constants; other subterms
  4699 are treated as atomic; subformulae not involving type `nat' or `int'
  4700 are ignored; quantified subformulae are ignored unless they are
  4701 positive universal or negative existential. The tactic has to be
  4702 invoked by hand and can be a little bit slow. In particular, the
  4703 running time is exponential in the number of occurrences of `min' and
  4704 `max', and `-' on `nat'.
  4705 
  4706 2. fast_arith_tac is a cut-down version of arith_tac: it only takes
  4707 (negated) (in)equalities among the premises and the conclusion into
  4708 account (i.e. no compound formulae) and does not know about `min' and
  4709 `max', and `-' on `nat'. It is fast and is used automatically by the
  4710 simplifier.
  4711 
  4712 NB: At the moment, these decision procedures do not cope with mixed
  4713 nat/int formulae where the two parts interact, such as `m < n ==>
  4714 int(m) < int(n)'.
  4715 
  4716 * HOL/Numeral provides a generic theory of numerals (encoded
  4717 efficiently as bit strings); setup for types nat/int/real is in place;
  4718 INCOMPATIBILITY: since numeral syntax is now polymorphic, rather than
  4719 int, existing theories and proof scripts may require a few additional
  4720 type constraints;
  4721 
  4722 * integer division and remainder can now be performed on constant
  4723 arguments;
  4724 
  4725 * many properties of integer multiplication, division and remainder
  4726 are now available;
  4727 
  4728 * An interface to the Stanford Validity Checker (SVC) is available through the
  4729 tactic svc_tac.  Propositional tautologies and theorems of linear arithmetic
  4730 are proved automatically.  SVC must be installed separately, and its results
  4731 must be TAKEN ON TRUST (Isabelle does not check the proofs, but tags any
  4732 invocation of the underlying oracle).  For SVC see
  4733   http://verify.stanford.edu/SVC
  4734 
  4735 * IsaMakefile: the HOL-Real target now builds an actual image;
  4736 
  4737 
  4738 ** HOL misc **
  4739 
  4740 * HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces
  4741 (in Isabelle/Isar) -- by Gertrud Bauer;
  4742 
  4743 * HOL/BCV: generic model of bytecode verification, i.e. data-flow
  4744 analysis for assembly languages with subtypes;
  4745 
  4746 * HOL/TLA (Lamport's Temporal Logic of Actions): major reorganization
  4747 -- avoids syntactic ambiguities and treats state, transition, and
  4748 temporal levels more uniformly; introduces INCOMPATIBILITIES due to
  4749 changed syntax and (many) tactics;
  4750 
  4751 * HOL/inductive: Now also handles more general introduction rules such
  4752   as "ALL y. (y, x) : r --> y : acc r ==> x : acc r"; monotonicity
  4753   theorems are now maintained within the theory (maintained via the
  4754   "mono" attribute);
  4755 
  4756 * HOL/datatype: Now also handles arbitrarily branching datatypes
  4757   (using function types) such as
  4758 
  4759   datatype 'a tree = Atom 'a | Branch "nat => 'a tree"
  4760 
  4761 * HOL/record: record_simproc (part of the default simpset) takes care
  4762 of selectors applied to updated records; record_split_tac is no longer
  4763 part of the default claset; update_defs may now be removed from the
  4764 simpset in many cases; COMPATIBILITY: old behavior achieved by
  4765 
  4766   claset_ref () := claset() addSWrapper record_split_wrapper;
  4767   Delsimprocs [record_simproc]
  4768 
  4769 * HOL/typedef: fixed type inference for representing set; type
  4770 arguments now have to occur explicitly on the rhs as type constraints;
  4771 
  4772 * HOL/recdef (TFL): 'congs' syntax now expects comma separated list of theorem
  4773 names rather than an ML expression;
  4774 
  4775 * HOL/defer_recdef (TFL): like recdef but the well-founded relation can be
  4776 supplied later.  Program schemes can be defined, such as
  4777     "While B C s = (if B s then While B C (C s) else s)"
  4778 where the well-founded relation can be chosen after B and C have been given.
  4779 
  4780 * HOL/List: the constructors of type list are now Nil and Cons;
  4781 INCOMPATIBILITY: while [] and infix # syntax is still there, of
  4782 course, ML tools referring to List.list.op # etc. have to be adapted;
  4783 
  4784 * HOL_quantifiers flag superseded by "HOL" print mode, which is
  4785 disabled by default; run isabelle with option -m HOL to get back to
  4786 the original Gordon/HOL-style output;
  4787 
  4788 * HOL/Ord.thy: new bounded quantifier syntax (input only): ALL x<y. P,
  4789 ALL x<=y. P, EX x<y. P, EX x<=y. P;
  4790 
  4791 * HOL basic syntax simplified (more orthogonal): all variants of
  4792 All/Ex now support plain / symbolic / HOL notation; plain syntax for
  4793 Eps operator is provided as well: "SOME x. P[x]";
  4794 
  4795 * HOL/Sum.thy: sum_case has been moved to HOL/Datatype;
  4796 
  4797 * HOL/Univ.thy: infix syntax <*>, <+>, <**>, <+> eliminated and made
  4798 thus available for user theories;
  4799 
  4800 * HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with
  4801 HOL/List; hardly an INCOMPATIBILITY since '>>' syntax is used all the
  4802 time;
  4803 
  4804 * HOL: new tactic smp_tac: int -> int -> tactic, which applies spec
  4805 several times and then mp;
  4806 
  4807 
  4808 *** LK ***
  4809 
  4810 * the notation <<...>> is now available as a notation for sequences of
  4811 formulas;
  4812 
  4813 * the simplifier is now installed
  4814 
  4815 * the axiom system has been generalized (thanks to Soren Heilmann)
  4816 
  4817 * the classical reasoner now has a default rule database
  4818 
  4819 
  4820 *** ZF ***
  4821 
  4822 * new primrec section allows primitive recursive functions to be given
  4823 directly (as in HOL) over datatypes and the natural numbers;
  4824 
  4825 * new tactics induct_tac and exhaust_tac for induction (or case
  4826 analysis) over datatypes and the natural numbers;
  4827 
  4828 * the datatype declaration of type T now defines the recursor T_rec;
  4829 
  4830 * simplification automatically does freeness reasoning for datatype
  4831 constructors;
  4832 
  4833 * automatic type-inference, with AddTCs command to insert new
  4834 type-checking rules;
  4835 
  4836 * datatype introduction rules are now added as Safe Introduction rules
  4837 to the claset;
  4838 
  4839 * the syntax "if P then x else y" is now available in addition to
  4840 if(P,x,y);
  4841 
  4842 
  4843 *** Internal programming interfaces ***
  4844 
  4845 * tuned simplifier trace output; new flag debug_simp;
  4846 
  4847 * structures Vartab / Termtab (instances of TableFun) offer efficient
  4848 tables indexed by indexname_ord / term_ord (compatible with aconv);
  4849 
  4850 * AxClass.axclass_tac lost the theory argument;
  4851 
  4852 * tuned current_goals_markers semantics: begin / end goal avoids
  4853 printing empty lines;
  4854 
  4855 * removed prs and prs_fn hook, which was broken because it did not
  4856 include \n in its semantics, forcing writeln to add one
  4857 uncoditionally; replaced prs_fn by writeln_fn; consider std_output:
  4858 string -> unit if you really want to output text without newline;
  4859 
  4860 * Symbol.output subject to print mode; INCOMPATIBILITY: defaults to
  4861 plain output, interface builders may have to enable 'isabelle_font'
  4862 mode to get Isabelle font glyphs as before;
  4863 
  4864 * refined token_translation interface; INCOMPATIBILITY: output length
  4865 now of type real instead of int;
  4866 
  4867 * theory loader actions may be traced via new ThyInfo.add_hook
  4868 interface (see src/Pure/Thy/thy_info.ML); example application: keep
  4869 your own database of information attached to *whole* theories -- as
  4870 opposed to intra-theory data slots offered via TheoryDataFun;
  4871 
  4872 * proper handling of dangling sort hypotheses (at last!);
  4873 Thm.strip_shyps and Drule.strip_shyps_warning take care of removing
  4874 extra sort hypotheses that can be witnessed from the type signature;
  4875 the force_strip_shyps flag is gone, any remaining shyps are simply
  4876 left in the theorem (with a warning issued by strip_shyps_warning);
  4877 
  4878 
  4879 
  4880 New in Isabelle98-1 (October 1998)
  4881 ----------------------------------
  4882 
  4883 *** Overview of INCOMPATIBILITIES (see below for more details) ***
  4884 
  4885 * several changes of automated proof tools;
  4886 
  4887 * HOL: major changes to the inductive and datatype packages, including
  4888 some minor incompatibilities of theory syntax;
  4889 
  4890 * HOL: renamed r^-1 to 'converse' from 'inverse'; 'inj_onto' is now
  4891 called `inj_on';
  4892 
  4893 * HOL: removed duplicate thms in Arith:
  4894   less_imp_add_less  should be replaced by  trans_less_add1
  4895   le_imp_add_le      should be replaced by  trans_le_add1
  4896 
  4897 * HOL: unary minus is now overloaded (new type constraints may be
  4898 required);
  4899 
  4900 * HOL and ZF: unary minus for integers is now #- instead of #~.  In
  4901 ZF, expressions such as n#-1 must be changed to n#- 1, since #-1 is
  4902 now taken as an integer constant.
  4903 
  4904 * Pure: ML function 'theory_of' renamed to 'theory';
  4905 
  4906 
  4907 *** Proof tools ***
  4908 
  4909 * Simplifier:
  4910   1. Asm_full_simp_tac is now more aggressive.
  4911      1. It will sometimes reorient premises if that increases their power to
  4912         simplify.
  4913      2. It does no longer proceed strictly from left to right but may also
  4914         rotate premises to achieve further simplification.
  4915      For compatibility reasons there is now Asm_lr_simp_tac which is like the
  4916      old Asm_full_simp_tac in that it does not rotate premises.
  4917   2. The simplifier now knows a little bit about nat-arithmetic.
  4918 
  4919 * Classical reasoner: wrapper mechanism for the classical reasoner now
  4920 allows for selected deletion of wrappers, by introduction of names for
  4921 wrapper functionals.  This implies that addbefore, addSbefore,
  4922 addaltern, and addSaltern now take a pair (name, tactic) as argument,
  4923 and that adding two tactics with the same name overwrites the first
  4924 one (emitting a warning).
  4925   type wrapper = (int -> tactic) -> (int -> tactic)
  4926   setWrapper, setSWrapper, compWrapper and compSWrapper are replaced by
  4927   addWrapper, addSWrapper: claset * (string * wrapper) -> claset
  4928   delWrapper, delSWrapper: claset *  string            -> claset
  4929   getWrapper is renamed to appWrappers, getSWrapper to appSWrappers;
  4930 
  4931 * Classical reasoner: addbefore/addSbefore now have APPEND/ORELSE
  4932 semantics; addbefore now affects only the unsafe part of step_tac
  4933 etc.; this affects addss/auto_tac/force_tac, so EXISTING PROOFS MAY
  4934 FAIL, but proofs should be fixable easily, e.g. by replacing Auto_tac
  4935 by Force_tac;
  4936 
  4937 * Classical reasoner: setwrapper to setWrapper and compwrapper to
  4938 compWrapper; added safe wrapper (and access functions for it);
  4939 
  4940 * HOL/split_all_tac is now much faster and fails if there is nothing
  4941 to split.  Some EXISTING PROOFS MAY REQUIRE ADAPTION because the order
  4942 and the names of the automatically generated variables have changed.
  4943 split_all_tac has moved within claset() from unsafe wrappers to safe
  4944 wrappers, which means that !!-bound variables are split much more
  4945 aggressively, and safe_tac and clarify_tac now split such variables.
  4946 If this splitting is not appropriate, use delSWrapper "split_all_tac".
  4947 Note: the same holds for record_split_tac, which does the job of
  4948 split_all_tac for record fields.
  4949 
  4950 * HOL/Simplifier: Rewrite rules for case distinctions can now be added
  4951 permanently to the default simpset using Addsplits just like
  4952 Addsimps. They can be removed via Delsplits just like
  4953 Delsimps. Lower-case versions are also available.
  4954 
  4955 * HOL/Simplifier: The rule split_if is now part of the default
  4956 simpset. This means that the simplifier will eliminate all occurrences
  4957 of if-then-else in the conclusion of a goal. To prevent this, you can
  4958 either remove split_if completely from the default simpset by
  4959 `Delsplits [split_if]' or remove it in a specific call of the
  4960 simplifier using `... delsplits [split_if]'.  You can also add/delete
  4961 other case splitting rules to/from the default simpset: every datatype
  4962 generates suitable rules `split_t_case' and `split_t_case_asm' (where
  4963 t is the name of the datatype).
  4964 
  4965 * Classical reasoner / Simplifier combination: new force_tac (and
  4966 derivatives Force_tac, force) combines rewriting and classical
  4967 reasoning (and whatever other tools) similarly to auto_tac, but is
  4968 aimed to solve the given subgoal completely.
  4969 
  4970 
  4971 *** General ***
  4972 
  4973 * new top-level commands `Goal' and `Goalw' that improve upon `goal'
  4974 and `goalw': the theory is no longer needed as an explicit argument -
  4975 the current theory context is used; assumptions are no longer returned
  4976 at the ML-level unless one of them starts with ==> or !!; it is
  4977 recommended to convert to these new commands using isatool fixgoal
  4978 (backup your sources first!);
  4979 
  4980 * new top-level commands 'thm' and 'thms' for retrieving theorems from
  4981 the current theory context, and 'theory' to lookup stored theories;
  4982 
  4983 * new theory section 'locale' for declaring constants, assumptions and
  4984 definitions that have local scope;
  4985 
  4986 * new theory section 'nonterminals' for purely syntactic types;
  4987 
  4988 * new theory section 'setup' for generic ML setup functions
  4989 (e.g. package initialization);
  4990 
  4991 * the distribution now includes Isabelle icons: see
  4992 lib/logo/isabelle-{small,tiny}.xpm;
  4993 
  4994 * isatool install - install binaries with absolute references to
  4995 ISABELLE_HOME/bin;
  4996 
  4997 * isatool logo -- create instances of the Isabelle logo (as EPS);
  4998 
  4999 * print mode 'emacs' reserved for Isamode;
  5000 
  5001 * support multiple print (ast) translations per constant name;
  5002 
  5003 * theorems involving oracles are now printed with a suffixed [!];
  5004 
  5005 
  5006 *** HOL ***
  5007 
  5008 * there is now a tutorial on Isabelle/HOL (do 'isatool doc tutorial');
  5009 
  5010 * HOL/inductive package reorganized and improved: now supports mutual
  5011 definitions such as
  5012 
  5013   inductive EVEN ODD
  5014     intrs
  5015       null "0 : EVEN"
  5016       oddI "n : EVEN ==> Suc n : ODD"
  5017       evenI "n : ODD ==> Suc n : EVEN"
  5018 
  5019 new theorem list "elims" contains an elimination rule for each of the
  5020 recursive sets; inductive definitions now handle disjunctive premises
  5021 correctly (also ZF);
  5022 
  5023 INCOMPATIBILITIES: requires Inductive as an ancestor; component
  5024 "mutual_induct" no longer exists - the induction rule is always
  5025 contained in "induct";
  5026 
  5027 
  5028 * HOL/datatype package re-implemented and greatly improved: now
  5029 supports mutually recursive datatypes such as
  5030 
  5031   datatype
  5032     'a aexp = IF_THEN_ELSE ('a bexp) ('a aexp) ('a aexp)
  5033             | SUM ('a aexp) ('a aexp)
  5034             | DIFF ('a aexp) ('a aexp)
  5035             | NUM 'a
  5036   and
  5037     'a bexp = LESS ('a aexp) ('a aexp)
  5038             | AND ('a bexp) ('a bexp)
  5039             | OR ('a bexp) ('a bexp)
  5040 
  5041 as well as indirectly recursive datatypes such as
  5042 
  5043   datatype
  5044     ('a, 'b) term = Var 'a
  5045                   | App 'b ((('a, 'b) term) list)
  5046 
  5047 The new tactic  mutual_induct_tac [<var_1>, ..., <var_n>] i  performs
  5048 induction on mutually / indirectly recursive datatypes.
  5049 
  5050 Primrec equations are now stored in theory and can be accessed via
  5051 <function_name>.simps.
  5052 
  5053 INCOMPATIBILITIES:
  5054 
  5055   - Theories using datatypes must now have theory Datatype as an
  5056     ancestor.
  5057   - The specific <typename>.induct_tac no longer exists - use the
  5058     generic induct_tac instead.
  5059   - natE has been renamed to nat.exhaust - use exhaust_tac
  5060     instead of res_inst_tac ... natE. Note that the variable
  5061     names in nat.exhaust differ from the names in natE, this
  5062     may cause some "fragile" proofs to fail.
  5063   - The theorems split_<typename>_case and split_<typename>_case_asm
  5064     have been renamed to <typename>.split and <typename>.split_asm.
  5065   - Since default sorts of type variables are now handled correctly,
  5066     some datatype definitions may have to be annotated with explicit
  5067     sort constraints.
  5068   - Primrec definitions no longer require function name and type
  5069     of recursive argument.
  5070 
  5071 Consider using isatool fixdatatype to adapt your theories and proof
  5072 scripts to the new package (backup your sources first!).
  5073 
  5074 
  5075 * HOL/record package: considerably improved implementation; now
  5076 includes concrete syntax for record types, terms, updates; theorems
  5077 for surjective pairing and splitting !!-bound record variables; proof
  5078 support is as follows:
  5079 
  5080   1) standard conversions (selectors or updates applied to record
  5081 constructor terms) are part of the standard simpset;
  5082 
  5083   2) inject equations of the form ((x, y) = (x', y')) == x=x' & y=y' are
  5084 made part of standard simpset and claset via addIffs;
  5085 
  5086   3) a tactic for record field splitting (record_split_tac) is part of
  5087 the standard claset (addSWrapper);
  5088 
  5089 To get a better idea about these rules you may retrieve them via
  5090 something like 'thms "foo.simps"' or 'thms "foo.iffs"', where "foo" is
  5091 the name of your record type.
  5092 
  5093 The split tactic 3) conceptually simplifies by the following rule:
  5094 
  5095   "(!!x. PROP ?P x) == (!!a b. PROP ?P (a, b))"
  5096 
  5097 Thus any record variable that is bound by meta-all will automatically
  5098 blow up into some record constructor term, consequently the
  5099 simplifications of 1), 2) apply.  Thus force_tac, auto_tac etc. shall
  5100 solve record problems automatically.
  5101 
  5102 
  5103 * reorganized the main HOL image: HOL/Integ and String loaded by
  5104 default; theory Main includes everything;
  5105 
  5106 * automatic simplification of integer sums and comparisons, using cancellation;
  5107 
  5108 * added option_map_eq_Some and not_Some_eq to the default simpset and claset;
  5109 
  5110 * added disj_not1 = "(~P | Q) = (P --> Q)" to the default simpset;
  5111 
  5112 * many new identities for unions, intersections, set difference, etc.;
  5113 
  5114 * expand_if, expand_split, expand_sum_case and expand_nat_case are now
  5115 called split_if, split_split, split_sum_case and split_nat_case (to go
  5116 with add/delsplits);
  5117 
  5118 * HOL/Prod introduces simplification procedure unit_eq_proc rewriting
  5119 (?x::unit) = (); this is made part of the default simpset, which COULD
  5120 MAKE EXISTING PROOFS FAIL under rare circumstances (consider
  5121 'Delsimprocs [unit_eq_proc];' as last resort); also note that
  5122 unit_abs_eta_conv is added in order to counter the effect of
  5123 unit_eq_proc on (%u::unit. f u), replacing it by f rather than by
  5124 %u.f();
  5125 
  5126 * HOL/Fun INCOMPATIBILITY: `inj_onto' is now called `inj_on' (which
  5127 makes more sense);
  5128 
  5129 * HOL/Set INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule;
  5130   It and 'sym RS equals0D' are now in the default  claset, giving automatic
  5131   disjointness reasoning but breaking a few old proofs.
  5132 
  5133 * HOL/Relation INCOMPATIBILITY: renamed the relational operator r^-1
  5134 to 'converse' from 'inverse' (for compatibility with ZF and some
  5135 literature);
  5136 
  5137 * HOL/recdef can now declare non-recursive functions, with {} supplied as
  5138 the well-founded relation;
  5139 
  5140 * HOL/Set INCOMPATIBILITY: the complement of set A is now written -A instead of
  5141     Compl A.  The "Compl" syntax remains available as input syntax for this
  5142     release ONLY.
  5143 
  5144 * HOL/Update: new theory of function updates:
  5145     f(a:=b) == %x. if x=a then b else f x
  5146 may also be iterated as in f(a:=b,c:=d,...);
  5147 
  5148 * HOL/Vimage: new theory for inverse image of a function, syntax f-``B;
  5149 
  5150 * HOL/List:
  5151   - new function list_update written xs[i:=v] that updates the i-th
  5152     list position. May also be iterated as in xs[i:=a,j:=b,...].
  5153   - new function `upt' written [i..j(] which generates the list
  5154     [i,i+1,...,j-1], i.e. the upper bound is excluded. To include the upper
  5155     bound write [i..j], which is a shorthand for [i..j+1(].
  5156   - new lexicographic orderings and corresponding wellfoundedness theorems.
  5157 
  5158 * HOL/Arith:
  5159   - removed 'pred' (predecessor) function;
  5160   - generalized some theorems about n-1;
  5161   - many new laws about "div" and "mod";
  5162   - new laws about greatest common divisors (see theory ex/Primes);
  5163 
  5164 * HOL/Relation: renamed the relational operator r^-1 "converse"
  5165 instead of "inverse";
  5166 
  5167 * HOL/Induct/Multiset: a theory of multisets, including the wellfoundedness
  5168   of the multiset ordering;
  5169 
  5170 * directory HOL/Real: a construction of the reals using Dedekind cuts
  5171   (not included by default);
  5172 
  5173 * directory HOL/UNITY: Chandy and Misra's UNITY formalism;
  5174 
  5175 * directory HOL/Hoare: a new version of Hoare logic which permits many-sorted
  5176   programs, i.e. different program variables may have different types.
  5177 
  5178 * calling (stac rew i) now fails if "rew" has no effect on the goal
  5179   [previously, this check worked only if the rewrite rule was unconditional]
  5180   Now rew can involve either definitions or equalities (either == or =).
  5181 
  5182 
  5183 *** ZF ***
  5184 
  5185 * theory Main includes everything; INCOMPATIBILITY: theory ZF.thy contains
  5186   only the theorems proved on ZF.ML;
  5187 
  5188 * ZF INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule;
  5189   It and 'sym RS equals0D' are now in the default  claset, giving automatic
  5190   disjointness reasoning but breaking a few old proofs.
  5191 
  5192 * ZF/Update: new theory of function updates
  5193     with default rewrite rule  f(x:=y) ` z = if(z=x, y, f`z)
  5194   may also be iterated as in f(a:=b,c:=d,...);
  5195 
  5196 * in  let x=t in u(x), neither t nor u(x) has to be an FOL term.
  5197 
  5198 * calling (stac rew i) now fails if "rew" has no effect on the goal
  5199   [previously, this check worked only if the rewrite rule was unconditional]
  5200   Now rew can involve either definitions or equalities (either == or =).
  5201 
  5202 * case_tac provided for compatibility with HOL
  5203     (like the old excluded_middle_tac, but with subgoals swapped)
  5204 
  5205 
  5206 *** Internal programming interfaces ***
  5207 
  5208 * Pure: several new basic modules made available for general use, see
  5209 also src/Pure/README;
  5210 
  5211 * improved the theory data mechanism to support encapsulation (data
  5212 kind name replaced by private Object.kind, acting as authorization
  5213 key); new type-safe user interface via functor TheoryDataFun; generic
  5214 print_data function becomes basically useless;
  5215 
  5216 * removed global_names compatibility flag -- all theory declarations
  5217 are qualified by default;
  5218 
  5219 * module Pure/Syntax now offers quote / antiquote translation
  5220 functions (useful for Hoare logic etc. with implicit dependencies);
  5221 see HOL/ex/Antiquote for an example use;
  5222 
  5223 * Simplifier now offers conversions (asm_)(full_)rewrite: simpset ->
  5224 cterm -> thm;
  5225 
  5226 * new tactical CHANGED_GOAL for checking that a tactic modifies a
  5227 subgoal;
  5228 
  5229 * Display.print_goals function moved to Locale.print_goals;
  5230 
  5231 * standard print function for goals supports current_goals_markers
  5232 variable for marking begin of proof, end of proof, start of goal; the
  5233 default is ("", "", ""); setting current_goals_markers := ("<proof>",
  5234 "</proof>", "<goal>") causes SGML like tagged proof state printing,
  5235 for example;
  5236 
  5237 
  5238 
  5239 New in Isabelle98 (January 1998)
  5240 --------------------------------
  5241 
  5242 *** Overview of INCOMPATIBILITIES (see below for more details) ***
  5243 
  5244 * changed lexical syntax of terms / types: dots made part of long
  5245 identifiers, e.g. "%x.x" no longer possible, should be "%x. x";
  5246 
  5247 * simpset (and claset) reference variable replaced by functions
  5248 simpset / simpset_ref;
  5249 
  5250 * no longer supports theory aliases (via merge) and non-trivial
  5251 implicit merge of thms' signatures;
  5252 
  5253 * most internal names of constants changed due to qualified names;
  5254 
  5255 * changed Pure/Sequence interface (see Pure/seq.ML);
  5256 
  5257 
  5258 *** General Changes ***
  5259 
  5260 * hierachically structured name spaces (for consts, types, axms, thms
  5261 etc.); new lexical class 'longid' (e.g. Foo.bar.x) may render much of
  5262 old input syntactically incorrect (e.g. "%x.x"); COMPATIBILITY:
  5263 isatool fixdots ensures space after dots (e.g. "%x. x"); set
  5264 long_names for fully qualified output names; NOTE: ML programs
  5265 (special tactics, packages etc.) referring to internal names may have
  5266 to be adapted to cope with fully qualified names; in case of severe
  5267 backward campatibility problems try setting 'global_names' at compile
  5268 time to have enrything declared within a flat name space; one may also
  5269 fine tune name declarations in theories via the 'global' and 'local'
  5270 section;
  5271 
  5272 * reimplemented the implicit simpset and claset using the new anytype
  5273 data filed in signatures; references simpset:simpset ref etc. are
  5274 replaced by functions simpset:unit->simpset and
  5275 simpset_ref:unit->simpset ref; COMPATIBILITY: use isatool fixclasimp
  5276 to patch your ML files accordingly;
  5277 
  5278 * HTML output now includes theory graph data for display with Java
  5279 applet or isatool browser; data generated automatically via isatool
  5280 usedir (see -i option, ISABELLE_USEDIR_OPTIONS);
  5281 
  5282 * defs may now be conditional; improved rewrite_goals_tac to handle
  5283 conditional equations;
  5284 
  5285 * defs now admits additional type arguments, using TYPE('a) syntax;
  5286 
  5287 * theory aliases via merge (e.g. M=A+B+C) no longer supported, always
  5288 creates a new theory node; implicit merge of thms' signatures is
  5289 restricted to 'trivial' ones; COMPATIBILITY: one may have to use
  5290 transfer:theory->thm->thm in (rare) cases;
  5291 
  5292 * improved handling of draft signatures / theories; draft thms (and
  5293 ctyps, cterms) are automatically promoted to real ones;
  5294 
  5295 * slightly changed interfaces for oracles: admit many per theory, named
  5296 (e.g. oracle foo = mlfun), additional name argument for invoke_oracle;
  5297 
  5298 * print_goals: optional output of const types (set show_consts and
  5299 show_types);
  5300 
  5301 * improved output of warnings (###) and errors (***);
  5302 
  5303 * subgoal_tac displays a warning if the new subgoal has type variables;
  5304 
  5305 * removed old README and Makefiles;
  5306 
  5307 * replaced print_goals_ref hook by print_current_goals_fn and result_error_fn;
  5308 
  5309 * removed obsolete init_pps and init_database;
  5310 
  5311 * deleted the obsolete tactical STATE, which was declared by
  5312     fun STATE tacfun st = tacfun st st;
  5313 
  5314 * cd and use now support path variables, e.g. $ISABELLE_HOME, or ~
  5315 (which abbreviates $HOME);
  5316 
  5317 * changed Pure/Sequence interface (see Pure/seq.ML); COMPATIBILITY:
  5318 use isatool fixseq to adapt your ML programs (this works for fully
  5319 qualified references to the Sequence structure only!);
  5320 
  5321 * use_thy no longer requires writable current directory; it always
  5322 reloads .ML *and* .thy file, if either one is out of date;
  5323 
  5324 
  5325 *** Classical Reasoner ***
  5326 
  5327 * Clarify_tac, clarify_tac, clarify_step_tac, Clarify_step_tac: new
  5328 tactics that use classical reasoning to simplify a subgoal without
  5329 splitting it into several subgoals;
  5330 
  5331 * Safe_tac: like safe_tac but uses the default claset;
  5332 
  5333 
  5334 *** Simplifier ***
  5335 
  5336 * added simplification meta rules:
  5337     (asm_)(full_)simplify: simpset -> thm -> thm;
  5338 
  5339 * simplifier.ML no longer part of Pure -- has to be loaded by object
  5340 logics (again);
  5341 
  5342 * added prems argument to simplification procedures;
  5343 
  5344 * HOL, FOL, ZF: added infix function `addsplits':
  5345   instead of `<simpset> setloop (split_tac <thms>)'
  5346   you can simply write `<simpset> addsplits <thms>'
  5347 
  5348 
  5349 *** Syntax ***
  5350 
  5351 * TYPE('a) syntax for type reflection terms;
  5352 
  5353 * no longer handles consts with name "" -- declare as 'syntax' instead;
  5354 
  5355 * pretty printer: changed order of mixfix annotation preference (again!);
  5356 
  5357 * Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
  5358 
  5359 
  5360 *** HOL ***
  5361 
  5362 * HOL: there is a new splitter `split_asm_tac' that can be used e.g.
  5363   with `addloop' of the simplifier to faciliate case splitting in premises.
  5364 
  5365 * HOL/TLA: Stephan Merz's formalization of Lamport's Temporal Logic of Actions;
  5366 
  5367 * HOL/Auth: new protocol proofs including some for the Internet
  5368   protocol TLS;
  5369 
  5370 * HOL/Map: new theory of `maps' a la VDM;
  5371 
  5372 * HOL/simplifier: simplification procedures nat_cancel_sums for
  5373 cancelling out common nat summands from =, <, <= (in)equalities, or
  5374 differences; simplification procedures nat_cancel_factor for
  5375 cancelling common factor from =, <, <= (in)equalities over natural
  5376 sums; nat_cancel contains both kinds of procedures, it is installed by
  5377 default in Arith.thy -- this COULD MAKE EXISTING PROOFS FAIL;
  5378 
  5379 * HOL/simplifier: terms of the form
  5380   `? x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x)'  (or t=x)
  5381   are rewritten to
  5382   `P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t)',
  5383   and those of the form
  5384   `! x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x) --> R(x)'  (or t=x)
  5385   are rewritten to
  5386   `P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t) --> R(t)',
  5387 
  5388 * HOL/datatype
  5389   Each datatype `t' now comes with a theorem `split_t_case' of the form
  5390 
  5391   P(t_case f1 ... fn x) =
  5392      ( (!y1 ... ym1. x = C1 y1 ... ym1 --> P(f1 y1 ... ym1)) &
  5393         ...
  5394        (!y1 ... ymn. x = Cn y1 ... ymn --> P(f1 y1 ... ymn))
  5395      )
  5396 
  5397   and a theorem `split_t_case_asm' of the form
  5398 
  5399   P(t_case f1 ... fn x) =
  5400     ~( (? y1 ... ym1. x = C1 y1 ... ym1 & ~P(f1 y1 ... ym1)) |
  5401         ...
  5402        (? y1 ... ymn. x = Cn y1 ... ymn & ~P(f1 y1 ... ymn))
  5403      )
  5404   which can be added to a simpset via `addsplits'. The existing theorems
  5405   expand_list_case and expand_option_case have been renamed to
  5406   split_list_case and split_option_case.
  5407 
  5408 * HOL/Arithmetic:
  5409   - `pred n' is automatically converted to `n-1'.
  5410     Users are strongly encouraged not to use `pred' any longer,
  5411     because it will disappear altogether at some point.
  5412   - Users are strongly encouraged to write "0 < n" rather than
  5413     "n ~= 0". Theorems and proof tools have been modified towards this
  5414     `standard'.
  5415 
  5416 * HOL/Lists:
  5417   the function "set_of_list" has been renamed "set" (and its theorems too);
  5418   the function "nth" now takes its arguments in the reverse order and
  5419   has acquired the infix notation "!" as in "xs!n".
  5420 
  5421 * HOL/Set: UNIV is now a constant and is no longer translated to Compl{};
  5422 
  5423 * HOL/Set: The operator (UN x.B x) now abbreviates (UN x:UNIV. B x) and its
  5424   specialist theorems (like UN1_I) are gone.  Similarly for (INT x.B x);
  5425 
  5426 * HOL/record: extensible records with schematic structural subtyping
  5427 (single inheritance); EXPERIMENTAL version demonstrating the encoding,
  5428 still lacks various theorems and concrete record syntax;
  5429 
  5430 
  5431 *** HOLCF ***
  5432 
  5433 * removed "axioms" and "generated by" sections;
  5434 
  5435 * replaced "ops" section by extended "consts" section, which is capable of
  5436   handling the continuous function space "->" directly;
  5437 
  5438 * domain package:
  5439   . proves theorems immediately and stores them in the theory,
  5440   . creates hierachical name space,
  5441   . now uses normal mixfix annotations (instead of cinfix...),
  5442   . minor changes to some names and values (for consistency),
  5443   . e.g. cases -> casedist, dists_eq -> dist_eqs, [take_lemma] -> take_lemmas,
  5444   . separator between mutual domain defs: changed "," to "and",
  5445   . improved handling of sort constraints;  now they have to
  5446     appear on the left-hand side of the equations only;
  5447 
  5448 * fixed LAM <x,y,zs>.b syntax;
  5449 
  5450 * added extended adm_tac to simplifier in HOLCF -- can now discharge
  5451 adm (%x. P (t x)), where P is chainfinite and t continuous;
  5452 
  5453 
  5454 *** FOL and ZF ***
  5455 
  5456 * FOL: there is a new splitter `split_asm_tac' that can be used e.g.
  5457   with `addloop' of the simplifier to faciliate case splitting in premises.
  5458 
  5459 * qed_spec_mp, qed_goal_spec_mp, qed_goalw_spec_mp are available, as
  5460 in HOL, they strip ALL and --> from proved theorems;
  5461 
  5462 
  5463 
  5464 New in Isabelle94-8 (May 1997)
  5465 ------------------------------
  5466 
  5467 *** General Changes ***
  5468 
  5469 * new utilities to build / run / maintain Isabelle etc. (in parts
  5470 still somewhat experimental); old Makefiles etc. still functional;
  5471 
  5472 * new 'Isabelle System Manual';
  5473 
  5474 * INSTALL text, together with ./configure and ./build scripts;
  5475 
  5476 * reimplemented type inference for greater efficiency, better error
  5477 messages and clean internal interface;
  5478 
  5479 * prlim command for dealing with lots of subgoals (an easier way of
  5480 setting goals_limit);
  5481 
  5482 
  5483 *** Syntax ***
  5484 
  5485 * supports alternative (named) syntax tables (parser and pretty
  5486 printer); internal interface is provided by add_modesyntax(_i);
  5487 
  5488 * Pure, FOL, ZF, HOL, HOLCF now support symbolic input and output; to
  5489 be used in conjunction with the Isabelle symbol font; uses the
  5490 "symbols" syntax table;
  5491 
  5492 * added token_translation interface (may translate name tokens in
  5493 arbitrary ways, dependent on their type (free, bound, tfree, ...) and
  5494 the current print_mode); IMPORTANT: user print translation functions
  5495 are responsible for marking newly introduced bounds
  5496 (Syntax.mark_boundT);
  5497 
  5498 * token translations for modes "xterm" and "xterm_color" that display
  5499 names in bold, underline etc. or colors (which requires a color
  5500 version of xterm);
  5501 
  5502 * infixes may now be declared with names independent of their syntax;
  5503 
  5504 * added typed_print_translation (like print_translation, but may
  5505 access type of constant);
  5506 
  5507 
  5508 *** Classical Reasoner ***
  5509 
  5510 Blast_tac: a new tactic!  It is often more powerful than fast_tac, but has
  5511 some limitations.  Blast_tac...
  5512   + ignores addss, addbefore, addafter; this restriction is intrinsic
  5513   + ignores elimination rules that don't have the correct format
  5514         (the conclusion MUST be a formula variable)
  5515   + ignores types, which can make HOL proofs fail
  5516   + rules must not require higher-order unification, e.g. apply_type in ZF
  5517     [message "Function Var's argument not a bound variable" relates to this]
  5518   + its proof strategy is more general but can actually be slower
  5519 
  5520 * substitution with equality assumptions no longer permutes other
  5521 assumptions;
  5522 
  5523 * minor changes in semantics of addafter (now called addaltern); renamed
  5524 setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper
  5525 (and access functions for it);
  5526 
  5527 * improved combination of classical reasoner and simplifier:
  5528   + functions for handling clasimpsets
  5529   + improvement of addss: now the simplifier is called _after_ the
  5530     safe steps.
  5531   + safe variant of addss called addSss: uses safe simplifications
  5532     _during_ the safe steps. It is more complete as it allows multiple
  5533     instantiations of unknowns (e.g. with slow_tac).
  5534 
  5535 *** Simplifier ***
  5536 
  5537 * added interface for simplification procedures (functions that
  5538 produce *proven* rewrite rules on the fly, depending on current
  5539 redex);
  5540 
  5541 * ordering on terms as parameter (used for ordered rewriting);
  5542 
  5543 * new functions delcongs, deleqcongs, and Delcongs. richer rep_ss;
  5544 
  5545 * the solver is now split into a safe and an unsafe part.
  5546 This should be invisible for the normal user, except that the
  5547 functions setsolver and addsolver have been renamed to setSolver and
  5548 addSolver; added safe_asm_full_simp_tac;
  5549 
  5550 
  5551 *** HOL ***
  5552 
  5553 * a generic induction tactic `induct_tac' which works for all datatypes and
  5554 also for type `nat';
  5555 
  5556 * a generic case distinction tactic `exhaust_tac' which works for all
  5557 datatypes and also for type `nat';
  5558 
  5559 * each datatype comes with a function `size';
  5560 
  5561 * patterns in case expressions allow tuple patterns as arguments to
  5562 constructors, for example `case x of [] => ... | (x,y,z)#ps => ...';
  5563 
  5564 * primrec now also works with type nat;
  5565 
  5566 * recdef: a new declaration form, allows general recursive functions to be
  5567 defined in theory files.  See HOL/ex/Fib, HOL/ex/Primes, HOL/Subst/Unify.
  5568 
  5569 * the constant for negation has been renamed from "not" to "Not" to
  5570 harmonize with FOL, ZF, LK, etc.;
  5571 
  5572 * HOL/ex/LFilter theory of a corecursive "filter" functional for
  5573 infinite lists;
  5574 
  5575 * HOL/Modelcheck demonstrates invocation of model checker oracle;
  5576 
  5577 * HOL/ex/Ring.thy declares cring_simp, which solves equational
  5578 problems in commutative rings, using axiomatic type classes for + and *;
  5579 
  5580 * more examples in HOL/MiniML and HOL/Auth;
  5581 
  5582 * more default rewrite rules for quantifiers, union/intersection;
  5583 
  5584 * a new constant `arbitrary == @x.False';
  5585 
  5586 * HOLCF/IOA replaces old HOL/IOA;
  5587 
  5588 * HOLCF changes: derived all rules and arities
  5589   + axiomatic type classes instead of classes
  5590   + typedef instead of faking type definitions
  5591   + eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc.
  5592   + new axclasses cpo, chfin, flat with flat < chfin < pcpo < cpo < po
  5593   + eliminated the types void, one, tr
  5594   + use unit lift and bool lift (with translations) instead of one and tr
  5595   + eliminated blift from Lift3.thy (use Def instead of blift)
  5596   all eliminated rules are derived as theorems --> no visible changes ;
  5597 
  5598 
  5599 *** ZF ***
  5600 
  5601 * ZF now has Fast_tac, Simp_tac and Auto_tac.  Union_iff is a now a default
  5602 rewrite rule; this may affect some proofs.  eq_cs is gone but can be put back
  5603 as ZF_cs addSIs [equalityI];
  5604 
  5605 
  5606 
  5607 New in Isabelle94-7 (November 96)
  5608 ---------------------------------
  5609 
  5610 * allowing negative levels (as offsets) in prlev and choplev;
  5611 
  5612 * super-linear speedup for large simplifications;
  5613 
  5614 * FOL, ZF and HOL now use miniscoping: rewriting pushes
  5615 quantifications in as far as possible (COULD MAKE EXISTING PROOFS
  5616 FAIL); can suppress it using the command Delsimps (ex_simps @
  5617 all_simps); De Morgan laws are also now included, by default;
  5618 
  5619 * improved printing of ==>  :  ~:
  5620 
  5621 * new object-logic "Sequents" adds linear logic, while replacing LK
  5622 and Modal (thanks to Sara Kalvala);
  5623 
  5624 * HOL/Auth: correctness proofs for authentication protocols;
  5625 
  5626 * HOL: new auto_tac combines rewriting and classical reasoning (many
  5627 examples on HOL/Auth);
  5628 
  5629 * HOL: new command AddIffs for declaring theorems of the form P=Q to
  5630 the rewriter and classical reasoner simultaneously;
  5631 
  5632 * function uresult no longer returns theorems in "standard" format;
  5633 regain previous version by: val uresult = standard o uresult;
  5634 
  5635 
  5636 
  5637 New in Isabelle94-6
  5638 -------------------
  5639 
  5640 * oracles -- these establish an interface between Isabelle and trusted
  5641 external reasoners, which may deliver results as theorems;
  5642 
  5643 * proof objects (in particular record all uses of oracles);
  5644 
  5645 * Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset;
  5646 
  5647 * "constdefs" section in theory files;
  5648 
  5649 * "primrec" section (HOL) no longer requires names;
  5650 
  5651 * internal type "tactic" now simply "thm -> thm Sequence.seq";
  5652 
  5653 
  5654 
  5655 New in Isabelle94-5
  5656 -------------------
  5657 
  5658 * reduced space requirements;
  5659 
  5660 * automatic HTML generation from theories;
  5661 
  5662 * theory files no longer require "..." (quotes) around most types;
  5663 
  5664 * new examples, including two proofs of the Church-Rosser theorem;
  5665 
  5666 * non-curried (1994) version of HOL is no longer distributed;
  5667 
  5668 
  5669 
  5670 New in Isabelle94-4
  5671 -------------------
  5672 
  5673 * greatly reduced space requirements;
  5674 
  5675 * theory files (.thy) no longer require \...\ escapes at line breaks;
  5676 
  5677 * searchable theorem database (see the section "Retrieving theorems" on
  5678 page 8 of the Reference Manual);
  5679 
  5680 * new examples, including Grabczewski's monumental case study of the
  5681 Axiom of Choice;
  5682 
  5683 * The previous version of HOL renamed to Old_HOL;
  5684 
  5685 * The new version of HOL (previously called CHOL) uses a curried syntax
  5686 for functions.  Application looks like f a b instead of f(a,b);
  5687 
  5688 * Mutually recursive inductive definitions finally work in HOL;
  5689 
  5690 * In ZF, pattern-matching on tuples is now available in all abstractions and
  5691 translates to the operator "split";
  5692 
  5693 
  5694 
  5695 New in Isabelle94-3
  5696 -------------------
  5697 
  5698 * new infix operator, addss, allowing the classical reasoner to
  5699 perform simplification at each step of its search.  Example:
  5700         fast_tac (cs addss ss)
  5701 
  5702 * a new logic, CHOL, the same as HOL, but with a curried syntax
  5703 for functions.  Application looks like f a b instead of f(a,b).  Also pairs
  5704 look like (a,b) instead of <a,b>;
  5705 
  5706 * PLEASE NOTE: CHOL will eventually replace HOL!
  5707 
  5708 * In CHOL, pattern-matching on tuples is now available in all abstractions.
  5709 It translates to the operator "split".  A new theory of integers is available;
  5710 
  5711 * In ZF, integer numerals now denote two's-complement binary integers.
  5712 Arithmetic operations can be performed by rewriting.  See ZF/ex/Bin.ML;
  5713 
  5714 * Many new examples: I/O automata, Church-Rosser theorem, equivalents
  5715 of the Axiom of Choice;
  5716 
  5717 
  5718 
  5719 New in Isabelle94-2
  5720 -------------------
  5721 
  5722 * Significantly faster resolution;
  5723 
  5724 * the different sections in a .thy file can now be mixed and repeated
  5725 freely;
  5726 
  5727 * Database of theorems for FOL, HOL and ZF.  New
  5728 commands including qed, qed_goal and bind_thm store theorems in the database.
  5729 
  5730 * Simple database queries: return a named theorem (get_thm) or all theorems of
  5731 a given theory (thms_of), or find out what theory a theorem was proved in
  5732 (theory_of_thm);
  5733 
  5734 * Bugs fixed in the inductive definition and datatype packages;
  5735 
  5736 * The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs
  5737 and HOL_dup_cs obsolete;
  5738 
  5739 * Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1
  5740 have been removed;
  5741 
  5742 * Simpler definition of function space in ZF;
  5743 
  5744 * new results about cardinal and ordinal arithmetic in ZF;
  5745 
  5746 * 'subtype' facility in HOL for introducing new types as subsets of existing
  5747 types;
  5748 
  5749 :mode=text:wrap=hard:maxLineLen=72:
  5750 
  5751 
  5752 $Id$