| author | huffman | 
| Mon, 10 Oct 2005 05:46:17 +0200 | |
| changeset 17817 | 405fb812e738 | 
| parent 17809 | 195045659c06 | 
| child 17865 | 5b0c3dcfbad2 | 
| permissions | -rw-r--r-- | 
| 5363 | 1 | Isabelle NEWS -- history user-relevant changes | 
| 2 | ============================================== | |
| 2553 | 3 | |
| 17754 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 4 | New in this Isabelle release | 
| 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 5 | ---------------------------- | 
| 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 6 | |
| 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 7 | *** General *** | 
| 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 8 | |
| 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 9 | * Command 'find_theorems': support "*" wildcard in "name:" criterion. | 
| 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 10 | |
| 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 11 | |
| 17779 | 12 | *** Pure *** | 
| 13 | ||
| 14 | * Input syntax now supports dummy variable binding "%_. b", where the | |
| 15 | body does not mention the bound variable. Note that dummy patterns | |
| 16 | implicitly depend on their context of bounds, which makes "{_. _}"
 | |
| 17780 | 17 | match any set comprehension as expected. Potential INCOMPATIBILITY -- | 
| 18 | parse translations need to cope with syntactic constant "_idtdummy" in | |
| 19 | the binding position. | |
| 20 | ||
| 21 | * Removed obsolete syntactic constant "_K" and its associated parse | |
| 22 | translation. INCOMPATIBILITY -- use dummy abstraction instead, for | |
| 17779 | 23 | example "A -> B" => "Pi A (%_. B)". | 
| 24 | ||
| 17806 | 25 | *** HOL *** | 
| 26 | ||
| 27 | * In the context of the assumption "~(s = t)" the simplifier rewrites | |
| 28 | "t = s" to False (by simproc "neq_simproc"). For backward compatibility | |
| 29 | this can be disabled by ML"reset use_neq_simproc". | |
| 17779 | 30 | |
| 17809 
195045659c06
Tactics sat and satx reimplemented, several improvements
 webertj parents: 
17806diff
changeset | 31 | * Tactics 'sat' and 'satx' reimplemented, several improvements: goals | 
| 
195045659c06
Tactics sat and satx reimplemented, several improvements
 webertj parents: 
17806diff
changeset | 32 | no longer need to be stated as "<prems> ==> False", equivalences (i.e. | 
| 
195045659c06
Tactics sat and satx reimplemented, several improvements
 webertj parents: 
17806diff
changeset | 33 | "=" on type bool) are handled, variable names of the form "lit_<n>" are | 
| 
195045659c06
Tactics sat and satx reimplemented, several improvements
 webertj parents: 
17806diff
changeset | 34 | no longer reserved, significant speedup. | 
| 
195045659c06
Tactics sat and satx reimplemented, several improvements
 webertj parents: 
17806diff
changeset | 35 | |
| 17754 
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
 wenzelm parents: 
17725diff
changeset | 36 | |
| 17720 | 37 | New in Isabelle2005 (October 2005) | 
| 38 | ---------------------------------- | |
| 14655 
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
 wenzelm parents: 
14624diff
changeset | 39 | |
| 
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
 wenzelm parents: 
14624diff
changeset | 40 | *** General *** | 
| 
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
 wenzelm parents: 
14624diff
changeset | 41 | |
| 15130 | 42 | * Theory headers: the new header syntax for Isar theories is | 
| 43 | ||
| 44 | theory <name> | |
| 16234 | 45 | imports <theory1> ... <theoryN> | 
| 46 | uses <file1> ... <fileM> | |
| 15130 | 47 | begin | 
| 48 | ||
| 16234 | 49 | where the 'uses' part is optional. The previous syntax | 
| 50 | ||
| 51 | theory <name> = <theory1> + ... + <theoryN>: | |
| 52 | ||
| 16717 | 53 | will disappear in the next release. Use isatool fixheaders to convert | 
| 54 | existing theory files. Note that there is no change in ancient | |
| 17371 | 55 | non-Isar theories now, but these will disappear soon. | 
| 15130 | 56 | |
| 15475 
fdf9434b04ea
- Proofs are now hidden by default when generating documents
 berghofe parents: 
15454diff
changeset | 57 | * Theory loader: parent theories can now also be referred to via | 
| 16234 | 58 | relative and absolute paths. | 
| 59 | ||
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 60 | * Command 'find_theorems' searches for a list of criteria instead of a | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 61 | list of constants. Known criteria are: intro, elim, dest, name:string, | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 62 | simp:term, and any term. Criteria can be preceded by '-' to select | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 63 | theorems that do not match. Intro, elim, dest select theorems that | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 64 | match the current goal, name:s selects theorems whose fully qualified | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 65 | name contain s, and simp:term selects all simplification rules whose | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 66 | lhs match term. Any other term is interpreted as pattern and selects | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 67 | all theorems matching the pattern. Available in ProofGeneral under | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 68 | 'ProofGeneral -> Find Theorems' or C-c C-f. Example: | 
| 16234 | 69 | |
| 17275 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 70 | C-c C-f (100) "(_::nat) + _ + _" intro -name: "HOL." | 
| 16234 | 71 | |
| 72 | prints the last 100 theorems matching the pattern "(_::nat) + _ + _", | |
| 73 | matching the current goal as introduction rule and not having "HOL." | |
| 74 | in their name (i.e. not being defined in theory HOL). | |
| 16013 
3010430d894d
removed find_rewrites (superceded by improved thms_containing);
 wenzelm parents: 
16000diff
changeset | 75 | |
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 76 | * Command 'thms_containing' has been discontinued in favour of | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 77 | 'find_theorems'; INCOMPATIBILITY. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 78 | |
| 17385 | 79 | * Communication with Proof General is now 8bit clean, which means that | 
| 80 | Unicode text in UTF-8 encoding may be used within theory texts (both | |
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 81 | formal and informal parts). Cf. option -U of the Isabelle Proof | 
| 17538 | 82 | General interface. Here are some simple examples (cf. src/HOL/ex): | 
| 83 | ||
| 84 | http://isabelle.in.tum.de/library/HOL/ex/Hebrew.html | |
| 85 | http://isabelle.in.tum.de/library/HOL/ex/Chinese.html | |
| 17385 | 86 | |
| 17425 | 87 | * Improved efficiency of the Simplifier and, to a lesser degree, the | 
| 88 | Classical Reasoner. Typical big applications run around 2 times | |
| 89 | faster. | |
| 90 | ||
| 15703 | 91 | |
| 92 | *** Document preparation *** | |
| 93 | ||
| 16234 | 94 | * Commands 'display_drafts' and 'print_drafts' perform simple output | 
| 95 | of raw sources. Only those symbols that do not require additional | |
| 96 | LaTeX packages (depending on comments in isabellesym.sty) are | |
| 97 | displayed properly, everything else is left verbatim. isatool display | |
| 98 | and isatool print are used as front ends (these are subject to the | |
| 99 | DVI/PDF_VIEWER and PRINT_COMMAND settings, respectively). | |
| 100 | ||
| 17047 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 101 | * Command tags control specific markup of certain regions of text, | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 102 | notably folding and hiding. Predefined tags include "theory" (for | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 103 | theory begin and end), "proof" for proof commands, and "ML" for | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 104 | commands involving ML code; the additional tags "visible" and | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 105 | "invisible" are unused by default. Users may give explicit tag | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 106 | specifications in the text, e.g. ''by %invisible (auto)''. The | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 107 | interpretation of tags is determined by the LaTeX job during document | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 108 | preparation: see option -V of isatool usedir, or options -n and -t of | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 109 | isatool document, or even the LaTeX macros \isakeeptag, \isafoldtag, | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 110 | \isadroptag. | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 111 | |
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 112 | Several document versions may be produced at the same time via isatool | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 113 | usedir (the generated index.html will link all of them). Typical | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 114 | specifications include ''-V document=theory,proof,ML'' to present | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 115 | theory/proof/ML parts faithfully, ''-V outline=/proof,/ML'' to fold | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 116 | proof and ML commands, and ''-V mutilated=-theory,-proof,-ML'' to omit | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 117 | these parts without any formal replacement text. The Isabelle site | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 118 | default settings produce ''document'' and ''outline'' versions as | 
| 
e2e2d75bb37b
* Command tags control specific markup of certain regions of text (replaces usedir -H);
 wenzelm parents: 
17016diff
changeset | 119 | specified above. | 
| 16234 | 120 | |
| 17402 | 121 | * Several new antiquotations: | 
| 15979 | 122 | |
| 123 |   @{term_type term} prints a term with its type annotated;
 | |
| 124 | ||
| 125 |   @{typeof term} prints the type of a term;
 | |
| 126 | ||
| 16234 | 127 |   @{const const} is the same as @{term const}, but checks that the
 | 
| 128 | argument is a known logical constant; | |
| 15979 | 129 | |
| 130 |   @{term_style style term} and @{thm_style style thm} print a term or
 | |
| 16234 | 131 | theorem applying a "style" to it | 
| 132 | ||
| 17117 
e2bed9e82454
* The ML antiquotation prints type-checked ML expressions verbatim.
 wenzelm parents: 
17097diff
changeset | 133 |   @{ML text}
 | 
| 
e2bed9e82454
* The ML antiquotation prints type-checked ML expressions verbatim.
 wenzelm parents: 
17097diff
changeset | 134 | |
| 16234 | 135 | Predefined styles are 'lhs' and 'rhs' printing the lhs/rhs of | 
| 136 | definitions, equations, inequations etc., 'concl' printing only the | |
| 17393 | 137 | conclusion of a meta-logical statement theorem, and 'prem1' .. 'prem19' | 
| 16234 | 138 | to print the specified premise. TermStyle.add_style provides an ML | 
| 139 | interface for introducing further styles. See also the "LaTeX Sugar" | |
| 17117 
e2bed9e82454
* The ML antiquotation prints type-checked ML expressions verbatim.
 wenzelm parents: 
17097diff
changeset | 140 | document practical applications. The ML antiquotation prints | 
| 
e2bed9e82454
* The ML antiquotation prints type-checked ML expressions verbatim.
 wenzelm parents: 
17097diff
changeset | 141 | type-checked ML expressions verbatim. | 
| 16234 | 142 | |
| 17259 
dda237f1d299
Markup commands 'chapter' .. 'text' support optional locale specification;
 wenzelm parents: 
17228diff
changeset | 143 | * Markup commands 'chapter', 'section', 'subsection', 'subsubsection', | 
| 
dda237f1d299
Markup commands 'chapter' .. 'text' support optional locale specification;
 wenzelm parents: 
17228diff
changeset | 144 | and 'text' support optional locale specification '(in loc)', which | 
| 17269 | 145 | specifies the default context for interpreting antiquotations. For | 
| 146 | example: 'text (in lattice) {* @{thm inf_assoc}*}'.
 | |
| 17259 
dda237f1d299
Markup commands 'chapter' .. 'text' support optional locale specification;
 wenzelm parents: 
17228diff
changeset | 147 | |
| 
dda237f1d299
Markup commands 'chapter' .. 'text' support optional locale specification;
 wenzelm parents: 
17228diff
changeset | 148 | * Option 'locale=NAME' of antiquotations specifies an alternative | 
| 
dda237f1d299
Markup commands 'chapter' .. 'text' support optional locale specification;
 wenzelm parents: 
17228diff
changeset | 149 | context interpreting the subsequent argument.  For example: @{thm
 | 
| 17269 | 150 | [locale=lattice] inf_assoc}. | 
| 17259 
dda237f1d299
Markup commands 'chapter' .. 'text' support optional locale specification;
 wenzelm parents: 
17228diff
changeset | 151 | |
| 17097 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 152 | * Proper output of proof terms (@{prf ...} and @{full_prf ...}) within
 | 
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 153 | a proof context. | 
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 154 | |
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 155 | * Proper output of antiquotations for theory commands involving a | 
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 156 | proof context (such as 'locale' or 'theorem (in loc) ...'). | 
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 157 | |
| 17193 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 158 | * Delimiters of outer tokens (string etc.) now produce separate LaTeX | 
| 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 159 | macros (\isachardoublequoteopen, isachardoublequoteclose etc.). | 
| 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 160 | |
| 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 161 | * isatool usedir: new option -C (default true) controls whether option | 
| 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 162 | -D should include a copy of the original document directory; -C false | 
| 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 163 | prevents unwanted effects such as copying of administrative CVS data. | 
| 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 164 | |
| 16234 | 165 | |
| 166 | *** Pure *** | |
| 167 | ||
| 168 | * Considerably improved version of 'constdefs' command. Now performs | |
| 169 | automatic type-inference of declared constants; additional support for | |
| 170 | local structure declarations (cf. locales and HOL records), see also | |
| 171 | isar-ref manual. Potential INCOMPATIBILITY: need to observe strictly | |
| 172 | sequential dependencies of definitions within a single 'constdefs' | |
| 173 | section; moreover, the declared name needs to be an identifier. If | |
| 174 | all fails, consider to fall back on 'consts' and 'defs' separately. | |
| 175 | ||
| 176 | * Improved indexed syntax and implicit structures. First of all, | |
| 177 | indexed syntax provides a notational device for subscripted | |
| 178 | application, using the new syntax \<^bsub>term\<^esub> for arbitrary | |
| 179 | expressions. Secondly, in a local context with structure | |
| 180 | declarations, number indexes \<^sub>n or the empty index (default | |
| 181 | number 1) refer to a certain fixed variable implicitly; option | |
| 182 | show_structs controls printing of implicit structures. Typical | |
| 183 | applications of these concepts involve record types and locales. | |
| 184 | ||
| 185 | * New command 'no_syntax' removes grammar declarations (and | |
| 186 | translations) resulting from the given syntax specification, which is | |
| 187 | interpreted in the same manner as for the 'syntax' command. | |
| 188 | ||
| 189 | * 'Advanced' translation functions (parse_translation etc.) may depend | |
| 190 | on the signature of the theory context being presently used for | |
| 191 | parsing/printing, see also isar-ref manual. | |
| 192 | ||
| 16856 | 193 | * Improved 'oracle' command provides a type-safe interface to turn an | 
| 194 | ML expression of type theory -> T -> term into a primitive rule of | |
| 195 | type theory -> T -> thm (i.e. the functionality of Thm.invoke_oracle | |
| 196 | is already included here); see also FOL/ex/IffExample.thy; | |
| 197 | INCOMPATIBILITY. | |
| 198 | ||
| 17275 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 199 | * axclass: name space prefix for class "c" is now "c_class" (was "c" | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 200 | before); "cI" is no longer bound, use "c.intro" instead. | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 201 | INCOMPATIBILITY. This change avoids clashes of fact bindings for | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 202 | axclasses vs. locales. | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 203 | |
| 16234 | 204 | * Improved internal renaming of symbolic identifiers -- attach primes | 
| 205 | instead of base 26 numbers. | |
| 206 | ||
| 207 | * New flag show_question_marks controls printing of leading question | |
| 208 | marks in schematic variable names. | |
| 209 | ||
| 210 | * In schematic variable names, *any* symbol following \<^isub> or | |
| 211 | \<^isup> is now treated as part of the base name. For example, the | |
| 212 | following works without printing of awkward ".0" indexes: | |
| 213 | ||
| 214 | lemma "x\<^isub>1 = x\<^isub>2 ==> x\<^isub>2 = x\<^isub>1" | |
| 215 | by simp | |
| 216 | ||
| 217 | * Inner syntax includes (*(*nested*) comments*). | |
| 218 | ||
| 17548 | 219 | * Pretty printer now supports unbreakable blocks, specified in mixfix | 
| 16234 | 220 | annotations as "(00...)". | 
| 221 | ||
| 222 | * Clear separation of logical types and nonterminals, where the latter | |
| 223 | may only occur in 'syntax' specifications or type abbreviations. | |
| 224 | Before that distinction was only partially implemented via type class | |
| 225 | "logic" vs. "{}".  Potential INCOMPATIBILITY in rare cases of improper
 | |
| 226 | use of 'types'/'consts' instead of 'nonterminals'/'syntax'. Some very | |
| 227 | exotic syntax specifications may require further adaption | |
| 17691 | 228 | (e.g. Cube/Cube.thy). | 
| 16234 | 229 | |
| 230 | * Removed obsolete type class "logic", use the top sort {} instead.
 | |
| 231 | Note that non-logical types should be declared as 'nonterminals' | |
| 232 | rather than 'types'. INCOMPATIBILITY for new object-logic | |
| 233 | specifications. | |
| 234 | ||
| 17095 | 235 | * Attributes 'induct' and 'cases': type or set names may now be | 
| 236 | locally fixed variables as well. | |
| 237 | ||
| 16234 | 238 | * Simplifier: can now control the depth to which conditional rewriting | 
| 239 | is traced via the PG menu Isabelle -> Settings -> Trace Simp Depth | |
| 240 | Limit. | |
| 241 | ||
| 242 | * Simplifier: simplification procedures may now take the current | |
| 243 | simpset into account (cf. Simplifier.simproc(_i) / mk_simproc | |
| 244 | interface), which is very useful for calling the Simplifier | |
| 245 | recursively. Minor INCOMPATIBILITY: the 'prems' argument of simprocs | |
| 246 | is gone -- use prems_of_ss on the simpset instead. Moreover, the | |
| 247 | low-level mk_simproc no longer applies Logic.varify internally, to | |
| 248 | allow for use in a context of fixed variables. | |
| 249 | ||
| 250 | * thin_tac now works even if the assumption being deleted contains !! | |
| 251 | or ==>. More generally, erule now works even if the major premise of | |
| 252 | the elimination rule contains !! or ==>. | |
| 253 | ||
| 17597 | 254 | * Method 'rules' has been renamed to 'iprover'. INCOMPATIBILITY. | 
| 17590 | 255 | |
| 16234 | 256 | * Reorganized bootstrapping of the Pure theories; CPure is now derived | 
| 257 | from Pure, which contains all common declarations already. Both | |
| 258 | theories are defined via plain Isabelle/Isar .thy files. | |
| 259 | INCOMPATIBILITY: elements of CPure (such as the CPure.intro / | |
| 260 | CPure.elim / CPure.dest attributes) now appear in the Pure name space; | |
| 261 | use isatool fixcpure to adapt your theory and ML sources. | |
| 262 | ||
| 263 | * New syntax 'name(i-j, i-, i, ...)' for referring to specific | |
| 264 | selections of theorems in named facts via index ranges. | |
| 265 | ||
| 17097 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 266 | * 'print_theorems': in theory mode, really print the difference | 
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 267 | wrt. the last state (works for interactive theory development only), | 
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 268 | in proof mode print all local facts (cf. 'print_facts'); | 
| 
78f1b66f70a4
* Proper output of proof terms within a proof context;
 wenzelm parents: 
17095diff
changeset | 269 | |
| 17397 | 270 | * 'hide': option '(open)' hides only base names. | 
| 271 | ||
| 17275 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 272 | * More efficient treatment of intermediate checkpoints in interactive | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 273 | theory development. | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 274 | |
| 17663 
28be54ff74f8
Added entries for code_module, code_library, and value.
 berghofe parents: 
17641diff
changeset | 275 | * Code generator is now invoked via code_module (incremental code | 
| 17664 | 276 | generation) and code_library (modular code generation, ML structures | 
| 277 | for each theory). INCOMPATIBILITY: new keywords 'file' and 'contains' | |
| 278 | must be quoted when used as identifiers. | |
| 279 | ||
| 280 | * New 'value' command for reading, evaluating and printing terms using | |
| 281 | the code generator. INCOMPATIBILITY: command keyword 'value' must be | |
| 282 | quoted when used as identifier. | |
| 17663 
28be54ff74f8
Added entries for code_module, code_library, and value.
 berghofe parents: 
17641diff
changeset | 283 | |
| 16234 | 284 | |
| 285 | *** Locales *** | |
| 17095 | 286 | |
| 17385 | 287 | * New commands for the interpretation of locale expressions in | 
| 288 | theories (1), locales (2) and proof contexts (3). These generate | |
| 289 | proof obligations from the expression specification. After the | |
| 290 | obligations have been discharged, theorems of the expression are added | |
| 291 | to the theory, target locale or proof context. The synopsis of the | |
| 292 | commands is a follows: | |
| 293 | ||
| 17095 | 294 | (1) interpretation expr inst | 
| 295 | (2) interpretation target < expr | |
| 296 | (3) interpret expr inst | |
| 17385 | 297 | |
| 17095 | 298 | Interpretation in theories and proof contexts require a parameter | 
| 299 | instantiation of terms from the current context. This is applied to | |
| 17385 | 300 | specifications and theorems of the interpreted expression. | 
| 301 | Interpretation in locales only permits parameter renaming through the | |
| 302 | locale expression. Interpretation is smart in that interpretations | |
| 303 | that are active already do not occur in proof obligations, neither are | |
| 304 | instantiated theorems stored in duplicate. Use 'print_interps' to | |
| 305 | inspect active interpretations of a particular locale. For details, | |
| 17436 | 306 | see the Isar Reference manual. Examples can be found in | 
| 307 | HOL/Finite_Set.thy and HOL/Algebra/UnivPoly.thy. | |
| 16234 | 308 | |
| 309 | INCOMPATIBILITY: former 'instantiate' has been withdrawn, use | |
| 310 | 'interpret' instead. | |
| 311 | ||
| 17385 | 312 | * New context element 'constrains' for adding type constraints to | 
| 313 | parameters. | |
| 314 | ||
| 315 | * Context expressions: renaming of parameters with syntax | |
| 316 | redeclaration. | |
| 17095 | 317 | |
| 318 | * Locale declaration: 'includes' disallowed. | |
| 319 | ||
| 16234 | 320 | * Proper static binding of attribute syntax -- i.e. types / terms / | 
| 321 | facts mentioned as arguments are always those of the locale definition | |
| 322 | context, independently of the context of later invocations. Moreover, | |
| 323 | locale operations (renaming and type / term instantiation) are applied | |
| 324 | to attribute arguments as expected. | |
| 325 | ||
| 326 | INCOMPATIBILITY of the ML interface: always pass Attrib.src instead of | |
| 327 | actual attributes; rare situations may require Attrib.attribute to | |
| 328 | embed those attributes into Attrib.src that lack concrete syntax. | |
| 329 | Attribute implementations need to cooperate properly with the static | |
| 330 | binding mechanism. Basic parsers Args.XXX_typ/term/prop and | |
| 331 | Attrib.XXX_thm etc. already do the right thing without further | |
| 332 | intervention. Only unusual applications -- such as "where" or "of" | |
| 333 | (cf. src/Pure/Isar/attrib.ML), which process arguments depending both | |
| 334 | on the context and the facts involved -- may have to assign parsed | |
| 335 | values to argument tokens explicitly. | |
| 336 | ||
| 337 | * Changed parameter management in theorem generation for long goal | |
| 338 | statements with 'includes'. INCOMPATIBILITY: produces a different | |
| 339 | theorem statement in rare situations. | |
| 340 | ||
| 17228 | 341 | * Locale inspection command 'print_locale' omits notes elements. Use | 
| 342 | 'print_locale!' to have them included in the output. | |
| 343 | ||
| 16234 | 344 | |
| 345 | *** Provers *** | |
| 346 | ||
| 347 | * Provers/hypsubst.ML: improved version of the subst method, for | |
| 348 | single-step rewriting: it now works in bound variable contexts. New is | |
| 349 | 'subst (asm)', for rewriting an assumption. INCOMPATIBILITY: may | |
| 350 | rewrite a different subterm than the original subst method, which is | |
| 351 | still available as 'simplesubst'. | |
| 352 | ||
| 353 | * Provers/quasi.ML: new transitivity reasoners for transitivity only | |
| 354 | and quasi orders. | |
| 355 | ||
| 356 | * Provers/trancl.ML: new transitivity reasoner for transitive and | |
| 357 | reflexive-transitive closure of relations. | |
| 358 | ||
| 359 | * Provers/blast.ML: new reference depth_limit to make blast's depth | |
| 360 | limit (previously hard-coded with a value of 20) user-definable. | |
| 361 | ||
| 362 | * Provers/simplifier.ML has been moved to Pure, where Simplifier.setup | |
| 363 | is peformed already. Object-logics merely need to finish their | |
| 364 | initial simpset configuration as before. INCOMPATIBILITY. | |
| 15703 | 365 | |
| 15475 
fdf9434b04ea
- Proofs are now hidden by default when generating documents
 berghofe parents: 
15454diff
changeset | 366 | |
| 14700 
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
 schirmer parents: 
14699diff
changeset | 367 | *** HOL *** | 
| 
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
 schirmer parents: 
14699diff
changeset | 368 | |
| 16234 | 369 | * Symbolic syntax of Hilbert Choice Operator is now as follows: | 
| 14878 | 370 | |
| 371 | syntax (epsilon) | |
| 372 |     "_Eps" :: "[pttrn, bool] => 'a"    ("(3\<some>_./ _)" [0, 10] 10)
 | |
| 373 | ||
| 16234 | 374 | The symbol \<some> is displayed as the alternative epsilon of LaTeX | 
| 375 | and x-symbol; use option '-m epsilon' to get it actually printed. | |
| 376 | Moreover, the mathematically important symbolic identifier \<epsilon> | |
| 377 | becomes available as variable, constant etc. INCOMPATIBILITY, | |
| 378 | ||
| 379 | * "x > y" abbreviates "y < x" and "x >= y" abbreviates "y <= x". | |
| 380 | Similarly for all quantifiers: "ALL x > y" etc. The x-symbol for >= | |
| 17371 | 381 | is \<ge>. New transitivity rules have been added to HOL/Orderings.thy to | 
| 17016 
73c74cb1d744
mentioned change to exp_ge_add_one_self, new transitivity rules
 avigad parents: 
16997diff
changeset | 382 | support corresponding Isar calculations. | 
| 16234 | 383 | |
| 384 | * "{x:A. P}" abbreviates "{x. x:A & P}", and similarly for "\<in>"
 | |
| 385 | instead of ":". | |
| 386 | ||
| 387 | * theory SetInterval: changed the syntax for open intervals: | |
| 388 | ||
| 389 | Old New | |
| 390 |   {..n(}    {..<n}
 | |
| 391 |   {)n..}    {n<..}
 | |
| 392 |   {m..n(}   {m..<n}
 | |
| 393 |   {)m..n}   {m<..n}
 | |
| 394 |   {)m..n(}  {m<..<n}
 | |
| 395 | ||
| 396 | The old syntax is still supported but will disappear in the next | |
| 397 | release. For conversion use the following Emacs search and replace | |
| 398 | patterns (these are not perfect but work quite well): | |
| 15046 | 399 | |
| 400 |   {)\([^\.]*\)\.\.  ->  {\1<\.\.}
 | |
| 401 | \.\.\([^(}]*\)(} -> \.\.<\1} | |
| 402 | ||
| 17533 | 403 | * Theory Commutative_Ring (in Library): method comm_ring for proving | 
| 404 | equalities in commutative rings; method 'algebra' provides a generic | |
| 405 | interface. | |
| 17389 
b4743198b939
Method comm_ring for proving equalities in commutative rings.
 wenzelm parents: 
17385diff
changeset | 406 | |
| 
b4743198b939
Method comm_ring for proving equalities in commutative rings.
 wenzelm parents: 
17385diff
changeset | 407 | * Theory Finite_Set: changed the syntax for 'setsum', summation over | 
| 16234 | 408 | finite sets: "setsum (%x. e) A", which used to be "\<Sum>x:A. e", is | 
| 17371 | 409 | now either "SUM x:A. e" or "\<Sum>x \<in> A. e". The bound variable can | 
| 17189 | 410 | be a tuple pattern. | 
| 16234 | 411 | |
| 412 | Some new syntax forms are available: | |
| 413 | ||
| 414 |   "\<Sum>x | P. e"      for     "setsum (%x. e) {x. P}"
 | |
| 415 |   "\<Sum>x = a..b. e"   for     "setsum (%x. e) {a..b}"
 | |
| 416 |   "\<Sum>x = a..<b. e"  for     "setsum (%x. e) {a..<b}"
 | |
| 417 |   "\<Sum>x < k. e"      for     "setsum (%x. e) {..<k}"
 | |
| 418 | ||
| 419 | The latter form "\<Sum>x < k. e" used to be based on a separate | |
| 420 | function "Summation", which has been discontinued. | |
| 421 | ||
| 422 | * theory Finite_Set: in structured induction proofs, the insert case | |
| 423 | is now 'case (insert x F)' instead of the old counterintuitive 'case | |
| 424 | (insert F x)'. | |
| 425 | ||
| 426 | * The 'refute' command has been extended to support a much larger | |
| 427 | fragment of HOL, including axiomatic type classes, constdefs and | |
| 428 | typedefs, inductive datatypes and recursion. | |
| 429 | ||
| 17700 | 430 | * New tactics 'sat' and 'satx' to prove propositional tautologies. | 
| 431 | Requires zChaff with proof generation to be installed. See | |
| 432 | HOL/ex/SAT_Examples.thy for examples. | |
| 17619 | 433 | |
| 16234 | 434 | * Datatype induction via method 'induct' now preserves the name of the | 
| 435 | induction variable. For example, when proving P(xs::'a list) by | |
| 436 | induction on xs, the induction step is now P(xs) ==> P(a#xs) rather | |
| 437 | than P(list) ==> P(a#list) as previously. Potential INCOMPATIBILITY | |
| 438 | in unstructured proof scripts. | |
| 439 | ||
| 440 | * Reworked implementation of records. Improved scalability for | |
| 441 | records with many fields, avoiding performance problems for type | |
| 442 | inference. Records are no longer composed of nested field types, but | |
| 443 | of nested extension types. Therefore the record type only grows linear | |
| 444 | in the number of extensions and not in the number of fields. The | |
| 445 | top-level (users) view on records is preserved. Potential | |
| 446 | INCOMPATIBILITY only in strange cases, where the theory depends on the | |
| 447 | old record representation. The type generated for a record is called | |
| 448 | <record_name>_ext_type. | |
| 449 | ||
| 450 | Flag record_quick_and_dirty_sensitive can be enabled to skip the | |
| 451 | proofs triggered by a record definition or a simproc (if | |
| 452 | quick_and_dirty is enabled). Definitions of large records can take | |
| 453 | quite long. | |
| 454 | ||
| 455 | New simproc record_upd_simproc for simplification of multiple record | |
| 456 | updates enabled by default. Moreover, trivial updates are also | |
| 457 | removed: r(|x := x r|) = r. INCOMPATIBILITY: old proofs break | |
| 458 | occasionally, since simplification is more powerful by default. | |
| 459 | ||
| 17275 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 460 | * typedef: proper support for polymorphic sets, which contain extra | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 461 | type-variables in the term. | 
| 
44d8fbc2e52d
axclass: name space prefix is now "c_class" instead of just "c";
 wenzelm parents: 
17269diff
changeset | 462 | |
| 16234 | 463 | * Simplifier: automatically reasons about transitivity chains | 
| 464 | involving "trancl" (r^+) and "rtrancl" (r^*) by setting up tactics | |
| 465 | provided by Provers/trancl.ML as additional solvers. INCOMPATIBILITY: | |
| 466 | old proofs break occasionally as simplification may now solve more | |
| 467 | goals than previously. | |
| 468 | ||
| 469 | * Simplifier: converts x <= y into x = y if assumption y <= x is | |
| 470 | present. Works for all partial orders (class "order"), in particular | |
| 471 | numbers and sets. For linear orders (e.g. numbers) it treats ~ x < y | |
| 472 | just like y <= x. | |
| 473 | ||
| 474 | * Simplifier: new simproc for "let x = a in f x". If a is a free or | |
| 475 | bound variable or a constant then the let is unfolded. Otherwise | |
| 476 | first a is simplified to b, and then f b is simplified to g. If | |
| 477 | possible we abstract b from g arriving at "let x = b in h x", | |
| 478 | otherwise we unfold the let and arrive at g. The simproc can be | |
| 479 | enabled/disabled by the reference use_let_simproc. Potential | |
| 480 | INCOMPATIBILITY since simplification is more powerful by default. | |
| 15776 | 481 | |
| 16563 | 482 | * Classical reasoning: the meson method now accepts theorems as arguments. | 
| 483 | ||
| 17595 | 484 | * Prover support: pre-release of the Isabelle-ATP linkup, which runs background | 
| 485 | jobs to provide advice on the provability of subgoals. | |
| 486 | ||
| 16891 | 487 | * Theory OrderedGroup and Ring_and_Field: various additions and | 
| 488 | improvements to faciliate calculations involving equalities and | |
| 489 | inequalities. | |
| 490 | ||
| 491 | The following theorems have been eliminated or modified | |
| 492 | (INCOMPATIBILITY): | |
| 16888 | 493 | |
| 494 | abs_eq now named abs_of_nonneg | |
| 17371 | 495 | abs_of_ge_0 now named abs_of_nonneg | 
| 496 | abs_minus_eq now named abs_of_nonpos | |
| 16888 | 497 | imp_abs_id now named abs_of_nonneg | 
| 498 | imp_abs_neg_id now named abs_of_nonpos | |
| 499 | mult_pos now named mult_pos_pos | |
| 500 | mult_pos_le now named mult_nonneg_nonneg | |
| 501 | mult_pos_neg_le now named mult_nonneg_nonpos | |
| 502 | mult_pos_neg2_le now named mult_nonneg_nonpos2 | |
| 503 | mult_neg now named mult_neg_neg | |
| 504 | mult_neg_le now named mult_nonpos_nonpos | |
| 505 | ||
| 16891 | 506 | * Theory Parity: added rules for simplifying exponents. | 
| 507 | ||
| 17092 | 508 | * Theory List: | 
| 509 | ||
| 510 | The following theorems have been eliminated or modified | |
| 511 | (INCOMPATIBILITY): | |
| 512 | ||
| 513 | list_all_Nil now named list_all.simps(1) | |
| 514 | list_all_Cons now named list_all.simps(2) | |
| 515 | list_all_conv now named list_all_iff | |
| 516 | set_mem_eq now named mem_iff | |
| 517 | ||
| 16929 | 518 | * Theories SetsAndFunctions and BigO (see HOL/Library) support | 
| 519 | asymptotic "big O" calculations. See the notes in BigO.thy. | |
| 520 | ||
| 16888 | 521 | |
| 522 | *** HOL-Complex *** | |
| 523 | ||
| 16891 | 524 | * Theory RealDef: better support for embedding natural numbers and | 
| 525 | integers in the reals. | |
| 526 | ||
| 527 | The following theorems have been eliminated or modified | |
| 528 | (INCOMPATIBILITY): | |
| 529 | ||
| 17016 
73c74cb1d744
mentioned change to exp_ge_add_one_self, new transitivity rules
 avigad parents: 
16997diff
changeset | 530 | exp_ge_add_one_self now requires no hypotheses | 
| 
73c74cb1d744
mentioned change to exp_ge_add_one_self, new transitivity rules
 avigad parents: 
16997diff
changeset | 531 | real_of_int_add reversed direction of equality (use [symmetric]) | 
| 
73c74cb1d744
mentioned change to exp_ge_add_one_self, new transitivity rules
 avigad parents: 
16997diff
changeset | 532 | real_of_int_minus reversed direction of equality (use [symmetric]) | 
| 
73c74cb1d744
mentioned change to exp_ge_add_one_self, new transitivity rules
 avigad parents: 
16997diff
changeset | 533 | real_of_int_diff reversed direction of equality (use [symmetric]) | 
| 
73c74cb1d744
mentioned change to exp_ge_add_one_self, new transitivity rules
 avigad parents: 
16997diff
changeset | 534 | real_of_int_mult reversed direction of equality (use [symmetric]) | 
| 16891 | 535 | |
| 536 | * Theory RComplete: expanded support for floor and ceiling functions. | |
| 16888 | 537 | |
| 16962 | 538 | * Theory Ln is new, with properties of the natural logarithm | 
| 539 | ||
| 17423 | 540 | * Hyperreal: There is a new type constructor "star" for making | 
| 541 | nonstandard types. The old type names are now type synonyms: | |
| 542 | ||
| 543 | hypreal = real star | |
| 544 | hypnat = nat star | |
| 545 | hcomplex = complex star | |
| 546 | ||
| 547 | * Hyperreal: Many groups of similarly-defined constants have been | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 548 | replaced by polymorphic versions (INCOMPATIBILITY): | 
| 17423 | 549 | |
| 550 | star_of <-- hypreal_of_real, hypnat_of_nat, hcomplex_of_complex | |
| 551 | ||
| 552 | starset <-- starsetNat, starsetC | |
| 553 | *s* <-- *sNat*, *sc* | |
| 554 | starset_n <-- starsetNat_n, starsetC_n | |
| 555 | *sn* <-- *sNatn*, *scn* | |
| 556 | InternalSets <-- InternalNatSets, InternalCSets | |
| 557 | ||
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 558 |   starfun      <-- starfun{Nat,Nat2,C,RC,CR}
 | 
| 17423 | 559 | *f* <-- *fNat*, *fNat2*, *fc*, *fRc*, *fcR* | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 560 |   starfun_n    <-- starfun{Nat,Nat2,C,RC,CR}_n
 | 
| 17423 | 561 | *fn* <-- *fNatn*, *fNat2n*, *fcn*, *fRcn*, *fcRn* | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 562 |   InternalFuns <-- InternalNatFuns, InternalNatFuns2, Internal{C,RC,CR}Funs
 | 
| 17423 | 563 | |
| 564 | * Hyperreal: Many type-specific theorems have been removed in favor of | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 565 | theorems specific to various axiomatic type classes (INCOMPATIBILITY): | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 566 | |
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 567 |   add_commute <-- {hypreal,hypnat,hcomplex}_add_commute
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 568 |   add_assoc   <-- {hypreal,hypnat,hcomplex}_add_assocs
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 569 |   OrderedGroup.add_0 <-- {hypreal,hypnat,hcomplex}_add_zero_left
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 570 |   OrderedGroup.add_0_right <-- {hypreal,hcomplex}_add_zero_right
 | 
| 17423 | 571 | right_minus <-- hypreal_add_minus | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 572 |   left_minus <-- {hypreal,hcomplex}_add_minus_left
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 573 |   mult_commute <-- {hypreal,hypnat,hcomplex}_mult_commute
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 574 |   mult_assoc <-- {hypreal,hypnat,hcomplex}_mult_assoc
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 575 |   mult_1_left <-- {hypreal,hypnat}_mult_1, hcomplex_mult_one_left
 | 
| 17423 | 576 | mult_1_right <-- hcomplex_mult_one_right | 
| 577 | mult_zero_left <-- hcomplex_mult_zero_left | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 578 |   left_distrib <-- {hypreal,hypnat,hcomplex}_add_mult_distrib
 | 
| 17423 | 579 | right_distrib <-- hypnat_add_mult_distrib2 | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 580 |   zero_neq_one <-- {hypreal,hypnat,hcomplex}_zero_not_eq_one
 | 
| 17423 | 581 | right_inverse <-- hypreal_mult_inverse | 
| 582 | left_inverse <-- hypreal_mult_inverse_left, hcomplex_mult_inv_left | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 583 |   order_refl <-- {hypreal,hypnat}_le_refl
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 584 |   order_trans <-- {hypreal,hypnat}_le_trans
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 585 |   order_antisym <-- {hypreal,hypnat}_le_anti_sym
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 586 |   order_less_le <-- {hypreal,hypnat}_less_le
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 587 |   linorder_linear <-- {hypreal,hypnat}_le_linear
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 588 |   add_left_mono <-- {hypreal,hypnat}_add_left_mono
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 589 |   mult_strict_left_mono <-- {hypreal,hypnat}_mult_less_mono2
 | 
| 17423 | 590 | add_nonneg_nonneg <-- hypreal_le_add_order | 
| 591 | ||
| 592 | * Hyperreal: Separate theorems having to do with type-specific | |
| 593 | versions of constants have been merged into theorems that apply to the | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 594 | new polymorphic constants (INCOMPATIBILITY): | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 595 | |
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 596 |   STAR_UNIV_set <-- {STAR_real,NatStar_real,STARC_complex}_set
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 597 |   STAR_empty_set <-- {STAR,NatStar,STARC}_empty_set
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 598 |   STAR_Un <-- {STAR,NatStar,STARC}_Un
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 599 |   STAR_Int <-- {STAR,NatStar,STARC}_Int
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 600 |   STAR_Compl <-- {STAR,NatStar,STARC}_Compl
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 601 |   STAR_subset <-- {STAR,NatStar,STARC}_subset
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 602 |   STAR_mem <-- {STAR,NatStar,STARC}_mem
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 603 |   STAR_mem_Compl <-- {STAR,STARC}_mem_Compl
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 604 |   STAR_diff <-- {STAR,STARC}_diff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 605 |   STAR_star_of_image_subset <-- {STAR_hypreal_of_real, NatStar_hypreal_of_real,
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 606 | STARC_hcomplex_of_complex}_image_subset | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 607 |   starset_n_Un <-- starset{Nat,C}_n_Un
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 608 |   starset_n_Int <-- starset{Nat,C}_n_Int
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 609 |   starset_n_Compl <-- starset{Nat,C}_n_Compl
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 610 |   starset_n_diff <-- starset{Nat,C}_n_diff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 611 |   InternalSets_Un <-- Internal{Nat,C}Sets_Un
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 612 |   InternalSets_Int <-- Internal{Nat,C}Sets_Int
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 613 |   InternalSets_Compl <-- Internal{Nat,C}Sets_Compl
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 614 |   InternalSets_diff <-- Internal{Nat,C}Sets_diff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 615 |   InternalSets_UNIV_diff <-- Internal{Nat,C}Sets_UNIV_diff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 616 |   InternalSets_starset_n <-- Internal{Nat,C}Sets_starset{Nat,C}_n
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 617 |   starset_starset_n_eq <-- starset{Nat,C}_starset{Nat,C}_n_eq
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 618 |   starset_n_starset <-- starset{Nat,C}_n_starset{Nat,C}
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 619 |   starfun_n_starfun <-- starfun{Nat,Nat2,C,RC,CR}_n_starfun{Nat,Nat2,C,RC,CR}
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 620 |   starfun <-- starfun{Nat,Nat2,C,RC,CR}
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 621 |   starfun_mult <-- starfun{Nat,Nat2,C,RC,CR}_mult
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 622 |   starfun_add <-- starfun{Nat,Nat2,C,RC,CR}_add
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 623 |   starfun_minus <-- starfun{Nat,Nat2,C,RC,CR}_minus
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 624 |   starfun_diff <-- starfun{C,RC,CR}_diff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 625 |   starfun_o <-- starfun{NatNat2,Nat2,_stafunNat,C,C_starfunRC,_starfunCR}_o
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 626 |   starfun_o2 <-- starfun{NatNat2,_stafunNat,C,C_starfunRC,_starfunCR}_o2
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 627 |   starfun_const_fun <-- starfun{Nat,Nat2,C,RC,CR}_const_fun
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 628 |   starfun_inverse <-- starfun{Nat,C,RC,CR}_inverse
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 629 |   starfun_eq <-- starfun{Nat,Nat2,C,RC,CR}_eq
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 630 |   starfun_eq_iff <-- starfun{C,RC,CR}_eq_iff
 | 
| 17423 | 631 | starfun_Id <-- starfunC_Id | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 632 |   starfun_approx <-- starfun{Nat,CR}_approx
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 633 |   starfun_capprox <-- starfun{C,RC}_capprox
 | 
| 17423 | 634 | starfun_abs <-- starfunNat_rabs | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 635 |   starfun_lambda_cancel <-- starfun{C,CR,RC}_lambda_cancel
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 636 |   starfun_lambda_cancel2 <-- starfun{C,CR,RC}_lambda_cancel2
 | 
| 17423 | 637 | starfun_mult_HFinite_approx <-- starfunCR_mult_HFinite_capprox | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 638 |   starfun_mult_CFinite_capprox <-- starfun{C,RC}_mult_CFinite_capprox
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 639 |   starfun_add_capprox <-- starfun{C,RC}_add_capprox
 | 
| 17423 | 640 | starfun_add_approx <-- starfunCR_add_approx | 
| 641 | starfun_inverse_inverse <-- starfunC_inverse_inverse | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 642 |   starfun_divide <-- starfun{C,CR,RC}_divide
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 643 |   starfun_n <-- starfun{Nat,C}_n
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 644 |   starfun_n_mult <-- starfun{Nat,C}_n_mult
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 645 |   starfun_n_add <-- starfun{Nat,C}_n_add
 | 
| 17423 | 646 | starfun_n_add_minus <-- starfunNat_n_add_minus | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 647 |   starfun_n_const_fun <-- starfun{Nat,C}_n_const_fun
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 648 |   starfun_n_minus <-- starfun{Nat,C}_n_minus
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 649 |   starfun_n_eq <-- starfun{Nat,C}_n_eq
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 650 | |
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 651 |   star_n_add <-- {hypreal,hypnat,hcomplex}_add
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 652 |   star_n_minus <-- {hypreal,hcomplex}_minus
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 653 |   star_n_diff <-- {hypreal,hcomplex}_diff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 654 |   star_n_mult <-- {hypreal,hcomplex}_mult
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 655 |   star_n_inverse <-- {hypreal,hcomplex}_inverse
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 656 |   star_n_le <-- {hypreal,hypnat}_le
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 657 |   star_n_less <-- {hypreal,hypnat}_less
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 658 |   star_n_zero_num <-- {hypreal,hypnat,hcomplex}_zero_num
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 659 |   star_n_one_num <-- {hypreal,hypnat,hcomplex}_one_num
 | 
| 17423 | 660 | star_n_abs <-- hypreal_hrabs | 
| 661 | star_n_divide <-- hcomplex_divide | |
| 662 | ||
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 663 |   star_of_add <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_add
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 664 |   star_of_minus <-- {hypreal_of_real,hcomplex_of_complex}_minus
 | 
| 17423 | 665 | star_of_diff <-- hypreal_of_real_diff | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 666 |   star_of_mult <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_mult
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 667 |   star_of_one <-- {hypreal_of_real,hcomplex_of_complex}_one
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 668 |   star_of_zero <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_zero
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 669 |   star_of_le <-- {hypreal_of_real,hypnat_of_nat}_le_iff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 670 |   star_of_less <-- {hypreal_of_real,hypnat_of_nat}_less_iff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 671 |   star_of_eq <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_eq_iff
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 672 |   star_of_inverse <-- {hypreal_of_real,hcomplex_of_complex}_inverse
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 673 |   star_of_divide <-- {hypreal_of_real,hcomplex_of_complex}_divide
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 674 |   star_of_of_nat <-- {hypreal_of_real,hcomplex_of_complex}_of_nat
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 675 |   star_of_of_int <-- {hypreal_of_real,hcomplex_of_complex}_of_int
 | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 676 |   star_of_number_of <-- {hypreal,hcomplex}_number_of
 | 
| 17423 | 677 | star_of_number_less <-- number_of_less_hypreal_of_real_iff | 
| 678 | star_of_number_le <-- number_of_le_hypreal_of_real_iff | |
| 679 | star_of_eq_number <-- hypreal_of_real_eq_number_of_iff | |
| 680 | star_of_less_number <-- hypreal_of_real_less_number_of_iff | |
| 681 | star_of_le_number <-- hypreal_of_real_le_number_of_iff | |
| 682 | star_of_power <-- hypreal_of_real_power | |
| 683 | star_of_eq_0 <-- hcomplex_of_complex_zero_iff | |
| 684 | ||
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 685 | * Hyperreal: new method "transfer" that implements the transfer | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 686 | principle of nonstandard analysis. With a subgoal that mentions | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 687 | nonstandard types like "'a star", the command "apply transfer" | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 688 | replaces it with an equivalent one that mentions only standard types. | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 689 | To be successful, all free variables must have standard types; non- | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 690 | standard variables must have explicit universal quantifiers. | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 691 | |
| 17641 | 692 | * Hyperreal: A theory of Taylor series. | 
| 693 | ||
| 14655 
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
 wenzelm parents: 
14624diff
changeset | 694 | |
| 14682 
a5072752114c
HOLCF: discontinued special version of 'constdefs';
 wenzelm parents: 
14655diff
changeset | 695 | *** HOLCF *** | 
| 
a5072752114c
HOLCF: discontinued special version of 'constdefs';
 wenzelm parents: 
14655diff
changeset | 696 | |
| 17533 | 697 | * Discontinued special version of 'constdefs' (which used to support | 
| 698 | continuous functions) in favor of the general Pure one with full | |
| 699 | type-inference. | |
| 700 | ||
| 701 | * New simplification procedure for solving continuity conditions; it | |
| 702 | is much faster on terms with many nested lambda abstractions (cubic | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 703 | instead of exponential time). | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 704 | |
| 17533 | 705 | * New syntax for domain package: selector names are now optional. | 
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 706 | Parentheses should be omitted unless argument is lazy, for example: | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 707 | |
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 708 | domain 'a stream = cons "'a" (lazy "'a stream") | 
| 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 709 | |
| 17533 | 710 | * New command 'fixrec' for defining recursive functions with pattern | 
| 711 | matching; defining multiple functions with mutual recursion is also | |
| 712 | supported. Patterns may include the constants cpair, spair, up, sinl, | |
| 713 | sinr, or any data constructor defined by the domain package. The given | |
| 714 | equations are proven as rewrite rules. See HOLCF/ex/Fixrec_ex.thy for | |
| 715 | syntax and examples. | |
| 716 | ||
| 717 | * New commands 'cpodef' and 'pcpodef' for defining predicate subtypes | |
| 718 | of cpo and pcpo types. Syntax is exactly like the 'typedef' command, | |
| 719 | but the proof obligation additionally includes an admissibility | |
| 720 | requirement. The packages generate instances of class cpo or pcpo, | |
| 721 | with continuity and strictness theorems for Rep and Abs. | |
| 17442 
c0f0b92c198c
add HOLCF entries for pcpodef, cont_proc, fixrec;
 huffman parents: 
17436diff
changeset | 722 | |
| 17584 | 723 | * HOLCF: Many theorems have been renamed according to a more standard naming | 
| 724 | scheme (INCOMPATIBILITY): | |
| 725 | ||
| 726 | foo_inject: "foo$x = foo$y ==> x = y" | |
| 727 | foo_eq: "(foo$x = foo$y) = (x = y)" | |
| 728 | foo_less: "(foo$x << foo$y) = (x << y)" | |
| 729 | foo_strict: "foo$UU = UU" | |
| 730 | foo_defined: "... ==> foo$x ~= UU" | |
| 731 | foo_defined_iff: "(foo$x = UU) = (x = UU)" | |
| 732 | ||
| 14682 
a5072752114c
HOLCF: discontinued special version of 'constdefs';
 wenzelm parents: 
14655diff
changeset | 733 | |
| 14885 | 734 | *** ZF *** | 
| 735 | ||
| 16234 | 736 | * ZF/ex: theories Group and Ring provide examples in abstract algebra, | 
| 737 | including the First Isomorphism Theorem (on quotienting by the kernel | |
| 738 | of a homomorphism). | |
| 15089 
430264838064
ZF/Simplifier: second copy of context type solver;
 wenzelm parents: 
15076diff
changeset | 739 | |
| 
430264838064
ZF/Simplifier: second copy of context type solver;
 wenzelm parents: 
15076diff
changeset | 740 | * ZF/Simplifier: install second copy of type solver that actually | 
| 16234 | 741 | makes use of TC rules declared to Isar proof contexts (or locales); | 
| 742 | the old version is still required for ML proof scripts. | |
| 15703 | 743 | |
| 744 | ||
| 17445 | 745 | *** Cube *** | 
| 746 | ||
| 747 | * Converted to Isar theory format; use locales instead of axiomatic | |
| 748 | theories. | |
| 749 | ||
| 750 | ||
| 15703 | 751 | *** ML *** | 
| 752 | ||
| 15973 | 753 | * Pure/library.ML no longer defines its own option datatype, but uses | 
| 16234 | 754 | that of the SML basis, which has constructors NONE and SOME instead of | 
| 755 | None and Some, as well as exception Option.Option instead of OPTION. | |
| 756 | The functions the, if_none, is_some, is_none have been adapted | |
| 757 | accordingly, while Option.map replaces apsome. | |
| 15973 | 758 | |
| 16860 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 759 | * Pure/library.ML: the exception LIST has been given up in favour of | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 760 | the standard exceptions Empty and Subscript, as well as | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 761 | Library.UnequalLengths. Function like Library.hd and Library.tl are | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 762 | superceded by the standard hd and tl functions etc. | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 763 | |
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 764 | A number of basic list functions are no longer exported to the ML | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 765 | toplevel, as they are variants of predefined functions. The following | 
| 16234 | 766 | suggests how one can translate existing code: | 
| 15973 | 767 | |
| 768 | rev_append xs ys = List.revAppend (xs, ys) | |
| 769 | nth_elem (i, xs) = List.nth (xs, i) | |
| 770 | last_elem xs = List.last xs | |
| 771 | flat xss = List.concat xss | |
| 16234 | 772 | seq fs = List.app fs | 
| 15973 | 773 | partition P xs = List.partition P xs | 
| 774 | mapfilter f xs = List.mapPartial f xs | |
| 775 | ||
| 16860 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 776 | * Pure/library.ML: several combinators for linear functional | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 777 | transformations, notably reverse application and composition: | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 778 | |
| 17371 | 779 | x |> f f #> g | 
| 780 | (x, y) |-> f f #-> g | |
| 16860 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 781 | |
| 17495 | 782 | * Pure/library.ML: introduced/changed precedence of infix operators: | 
| 783 | ||
| 784 | infix 1 |> |-> ||> ||>> |>> |>>> #> #->; | |
| 785 | infix 2 ?; | |
| 786 | infix 3 o oo ooo oooo; | |
| 787 | infix 4 ~~ upto downto; | |
| 788 | ||
| 789 | Maybe INCOMPATIBILITY when any of those is used in conjunction with other | |
| 790 | infix operators. | |
| 791 | ||
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 792 | * Pure/library.ML: natural list combinators fold, fold_rev, and | 
| 16869 | 793 | fold_map support linear functional transformations and nesting. For | 
| 16860 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 794 | example: | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 795 | |
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 796 | fold f [x1, ..., xN] y = | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 797 | y |> f x1 |> ... |> f xN | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 798 | |
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 799 | (fold o fold) f [xs1, ..., xsN] y = | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 800 | y |> fold f xs1 |> ... |> fold f xsN | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 801 | |
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 802 | fold f [x1, ..., xN] = | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 803 | f x1 #> ... #> f xN | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 804 | |
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 805 | (fold o fold) f [xs1, ..., xsN] = | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 806 | fold f xs1 #> ... #> fold f xsN | 
| 
43abdba4da5c
* Pure/library.ML: several combinators for linear functional transformations;
 wenzelm parents: 
16856diff
changeset | 807 | |
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 808 | * Pure/library.ML: the following selectors on type 'a option are | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 809 | available: | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 810 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 811 | the: 'a option -> 'a (*partial*) | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 812 | these: 'a option -> 'a where 'a = 'b list | 
| 17402 | 813 | the_default: 'a -> 'a option -> 'a | 
| 814 | the_list: 'a option -> 'a list | |
| 815 | ||
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 816 | * Pure/General: structure AList (cf. Pure/General/alist.ML) provides | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 817 | basic operations for association lists, following natural argument | 
| 17564 | 818 | order; moreover the explicit equality predicate passed here avoids | 
| 17495 | 819 | potentially expensive polymorphic runtime equality checks. | 
| 820 | The old functions may be expressed as follows: | |
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 821 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 822 | assoc = uncurry (AList.lookup (op =)) | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 823 | assocs = these oo AList.lookup (op =) | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 824 | overwrite = uncurry (AList.update (op =)) o swap | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 825 | |
| 17564 | 826 | * Pure/General: structure AList (cf. Pure/General/alist.ML) provides | 
| 827 | ||
| 828 |   val make: ('a -> 'b) -> 'a list -> ('a * 'b) list
 | |
| 829 |   val find: ('a * 'b -> bool) -> ('c * 'b) list -> 'a -> 'c list
 | |
| 830 | ||
| 831 | replacing make_keylist and keyfilter (occassionally used) | |
| 832 | Naive rewrites: | |
| 833 | ||
| 834 | make_keylist = AList.make | |
| 835 | keyfilter = AList.find (op =) | |
| 836 | ||
| 837 | * eq_fst and eq_snd now take explicit equality parameter, thus | |
| 838 | avoiding eqtypes. Naive rewrites: | |
| 839 | ||
| 840 | eq_fst = eq_fst (op =) | |
| 841 | eq_snd = eq_snd (op =) | |
| 842 | ||
| 843 | * Removed deprecated apl and apr (rarely used). | |
| 844 | Naive rewrites: | |
| 845 | ||
| 846 | apl (n, op) =>>= curry op n | |
| 847 | apr (op, m) =>>= fn n => op (n, m) | |
| 848 | ||
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 849 | * Pure/General: structure OrdList (cf. Pure/General/ord_list.ML) | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 850 | provides a reasonably efficient light-weight implementation of sets as | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 851 | lists. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 852 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 853 | * Pure/General: generic tables (cf. Pure/General/table.ML) provide a | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 854 | few new operations; existing lookup and update are now curried to | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 855 | follow natural argument order (for use with fold etc.); | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 856 | INCOMPATIBILITY, use (uncurry Symtab.lookup) etc. as last resort. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 857 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 858 | * Pure/General: output via the Isabelle channels of | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 859 | writeln/warning/error etc. is now passed through Output.output, with a | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 860 | hook for arbitrary transformations depending on the print_mode | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 861 | (cf. Output.add_mode -- the first active mode that provides a output | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 862 | function wins). Already formatted output may be embedded into further | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 863 | text via Output.raw; the result of Pretty.string_of/str_of and derived | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 864 | functions (string_of_term/cterm/thm etc.) is already marked raw to | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 865 | accommodate easy composition of diagnostic messages etc. Programmers | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 866 | rarely need to care about Output.output or Output.raw at all, with | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 867 | some notable exceptions: Output.output is required when bypassing the | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 868 | standard channels (writeln etc.), or in token translations to produce | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 869 | properly formatted results; Output.raw is required when capturing | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 870 | already output material that will eventually be presented to the user | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 871 | a second time. For the default print mode, both Output.output and | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 872 | Output.raw have no effect. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 873 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 874 | * Pure/General: Output.time_accumulator NAME creates an operator ('a
 | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 875 | -> 'b) -> 'a -> 'b to measure runtime and count invocations; the | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 876 | cumulative results are displayed at the end of a batch session. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 877 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 878 | * Pure/General: File.sysify_path and File.quote_sysify path have been | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 879 | replaced by File.platform_path and File.shell_path (with appropriate | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 880 | hooks). This provides a clean interface for unusual systems where the | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 881 | internal and external process view of file names are different. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 882 | |
| 16689 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 883 | * Pure: more efficient orders for basic syntactic entities: added | 
| 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 884 | fast_string_ord, fast_indexname_ord, fast_term_ord; changed sort_ord | 
| 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 885 | and typ_ord to use fast_string_ord and fast_indexname_ord (term_ord is | 
| 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 886 | NOT affected); structures Symtab, Vartab, Typtab, Termtab use the fast | 
| 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 887 | orders now -- potential INCOMPATIBILITY for code that depends on a | 
| 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 888 | particular order for Symtab.keys, Symtab.dest, etc. (consider using | 
| 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 889 | Library.sort_strings on result). | 
| 
05b986733a59
* Pure: structure OrdList (cf. Pure/General/ord_list.ML);
 wenzelm parents: 
16662diff
changeset | 890 | |
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 891 | * Pure/term.ML: combinators fold_atyps, fold_aterms, fold_term_types, | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 892 | fold_types traverse types/terms from left to right, observing natural | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 893 | argument order. Supercedes previous foldl_XXX versions, add_frees, | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 894 | add_vars etc. have been adapted as well: INCOMPATIBILITY. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 895 | |
| 16151 | 896 | * Pure: name spaces have been refined, with significant changes of the | 
| 16234 | 897 | internal interfaces -- INCOMPATIBILITY. Renamed cond_extern(_table) | 
| 898 | to extern(_table). The plain name entry path is superceded by a | |
| 899 | general 'naming' context, which also includes the 'policy' to produce | |
| 900 | a fully qualified name and external accesses of a fully qualified | |
| 901 | name; NameSpace.extend is superceded by context dependent | |
| 902 | Sign.declare_name. Several theory and proof context operations modify | |
| 903 | the naming context. Especially note Theory.restore_naming and | |
| 904 | ProofContext.restore_naming to get back to a sane state; note that | |
| 905 | Theory.add_path is no longer sufficient to recover from | |
| 906 | Theory.absolute_path in particular. | |
| 907 | ||
| 908 | * Pure: new flags short_names (default false) and unique_names | |
| 909 | (default true) for controlling output of qualified names. If | |
| 910 | short_names is set, names are printed unqualified. If unique_names is | |
| 911 | reset, the name prefix is reduced to the minimum required to achieve | |
| 912 | the original result when interning again, even if there is an overlap | |
| 913 | with earlier declarations. | |
| 16151 | 914 | |
| 16456 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 915 | * Pure/TheoryDataFun: change of the argument structure; 'prep_ext' is | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 916 | now 'extend', and 'merge' gets an additional Pretty.pp argument | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 917 | (useful for printing error messages). INCOMPATIBILITY. | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 918 | |
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 919 | * Pure: major reorganization of the theory context. Type Sign.sg and | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 920 | Theory.theory are now identified, referring to the universal | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 921 | Context.theory (see Pure/context.ML). Actual signature and theory | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 922 | content is managed as theory data. The old code and interfaces were | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 923 | spread over many files and structures; the new arrangement introduces | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 924 | considerable INCOMPATIBILITY to gain more clarity: | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 925 | |
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 926 | Context -- theory management operations (name, identity, inclusion, | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 927 | parents, ancestors, merge, etc.), plus generic theory data; | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 928 | |
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 929 | Sign -- logical signature and syntax operations (declaring consts, | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 930 | types, etc.), plus certify/read for common entities; | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 931 | |
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 932 | Theory -- logical theory operations (stating axioms, definitions, | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 933 | oracles), plus a copy of logical signature operations (consts, | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 934 | types, etc.); also a few basic management operations (Theory.copy, | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 935 | Theory.merge, etc.) | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 936 | |
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 937 | The most basic sign_of operations (Theory.sign_of, Thm.sign_of_thm | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 938 | etc.) as well as the sign field in Thm.rep_thm etc. have been retained | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 939 | for convenience -- they merely return the theory. | 
| 
451f1c46d4ca
* Pure/TheoryDataFun: change of the argument structure;
 wenzelm parents: 
16373diff
changeset | 940 | |
| 17193 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 941 | * Pure: type Type.tsig is superceded by theory in most interfaces. | 
| 
83708f724822
* Delimiters of outer tokens now produce separate LaTeX macros;
 wenzelm parents: 
17189diff
changeset | 942 | |
| 16547 
09f7a953d2d6
* Pure: the Isar proof context type is already defined early in Pure
 wenzelm parents: 
16506diff
changeset | 943 | * Pure: the Isar proof context type is already defined early in Pure | 
| 
09f7a953d2d6
* Pure: the Isar proof context type is already defined early in Pure
 wenzelm parents: 
16506diff
changeset | 944 | as Context.proof (note that ProofContext.context and Proof.context are | 
| 
09f7a953d2d6
* Pure: the Isar proof context type is already defined early in Pure
 wenzelm parents: 
16506diff
changeset | 945 | aliases, where the latter is the preferred name). This enables other | 
| 
09f7a953d2d6
* Pure: the Isar proof context type is already defined early in Pure
 wenzelm parents: 
16506diff
changeset | 946 | Isabelle components to refer to that type even before Isar is present. | 
| 
09f7a953d2d6
* Pure: the Isar proof context type is already defined early in Pure
 wenzelm parents: 
16506diff
changeset | 947 | |
| 16373 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 948 | * Pure/sign/theory: discontinued named name spaces (i.e. classK, | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 949 | typeK, constK, axiomK, oracleK), but provide explicit operations for | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 950 | any of these kinds. For example, Sign.intern typeK is now | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 951 | Sign.intern_type, Theory.hide_space Sign.typeK is now | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 952 | Theory.hide_types. Also note that former | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 953 | Theory.hide_classes/types/consts are now | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 954 | Theory.hide_classes_i/types_i/consts_i, while the non '_i' versions | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 955 | internalize their arguments! INCOMPATIBILITY. | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 956 | |
| 16506 
b2687ce38433
* Pure: get_thm interface expects datatype thmref;
 wenzelm parents: 
16456diff
changeset | 957 | * Pure: get_thm interface (of PureThy and ProofContext) expects | 
| 
b2687ce38433
* Pure: get_thm interface expects datatype thmref;
 wenzelm parents: 
16456diff
changeset | 958 | datatype thmref (with constructors Name and NameSelection) instead of | 
| 
b2687ce38433
* Pure: get_thm interface expects datatype thmref;
 wenzelm parents: 
16456diff
changeset | 959 | plain string -- INCOMPATIBILITY; | 
| 
b2687ce38433
* Pure: get_thm interface expects datatype thmref;
 wenzelm parents: 
16456diff
changeset | 960 | |
| 16151 | 961 | * Pure: cases produced by proof methods specify options, where NONE | 
| 16234 | 962 | means to remove case bindings -- INCOMPATIBILITY in | 
| 963 | (RAW_)METHOD_CASES. | |
| 16151 | 964 | |
| 16373 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 965 | * Pure: the following operations retrieve axioms or theorems from a | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 966 | theory node or theory hierarchy, respectively: | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 967 | |
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 968 | Theory.axioms_of: theory -> (string * term) list | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 969 | Theory.all_axioms_of: theory -> (string * term) list | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 970 | PureThy.thms_of: theory -> (string * thm) list | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 971 | PureThy.all_thms_of: theory -> (string * thm) list | 
| 
9d020423093b
* Pure/sign/theory: discontinued named name spaces;
 wenzelm parents: 
16251diff
changeset | 972 | |
| 16718 | 973 | * Pure: print_tac now outputs the goal through the trace channel. | 
| 974 | ||
| 17408 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 975 | * Isar toplevel: improved diagnostics, mostly for Poly/ML only. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 976 | Reference Toplevel.debug (default false) controls detailed printing | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 977 | and tracing of low-level exceptions; Toplevel.profiling (default 0) | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 978 | controls execution profiling -- set to 1 for time and 2 for space | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 979 | (both increase the runtime). | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 980 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 981 | * Isar session: The initial use of ROOT.ML is now always timed, | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 982 | i.e. the log will show the actual process times, in contrast to the | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 983 | elapsed wall-clock time that the outer shell wrapper produces. | 
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 984 | |
| 
551c9a4dd693
command 'thms_containing' has been discontinued in favour of 'find_theorems';
 wenzelm parents: 
17402diff
changeset | 985 | * Simplifier: improved handling of bound variables (nameless | 
| 16997 
7dfc99f62dd9
* Pure/Simplifier: improved handling of bound variables;
 wenzelm parents: 
16962diff
changeset | 986 | representation, avoid allocating new strings). Simprocs that invoke | 
| 
7dfc99f62dd9
* Pure/Simplifier: improved handling of bound variables;
 wenzelm parents: 
16962diff
changeset | 987 | the Simplifier recursively should use Simplifier.inherit_bounds to | 
| 17720 | 988 | avoid local name clashes. Failure to do so produces warnings | 
| 989 | "Simplifier: renamed bound variable ..."; set Simplifier.debug_bounds | |
| 990 | for further details. | |
| 16234 | 991 | |
| 17166 | 992 | * ML functions legacy_bindings and use_legacy_bindings produce ML fact | 
| 993 | bindings for all theorems stored within a given theory; this may help | |
| 994 | in porting non-Isar theories to Isar ones, while keeping ML proof | |
| 995 | scripts for the time being. | |
| 996 | ||
| 17457 | 997 | * ML operator HTML.with_charset specifies the charset begin used for | 
| 998 | generated HTML files. For example: | |
| 999 | ||
| 1000 | HTML.with_charset "utf-8" use_thy "Hebrew"; | |
| 17538 | 1001 | HTML.with_charset "utf-8" use_thy "Chinese"; | 
| 17457 | 1002 | |
| 16234 | 1003 | |
| 1004 | *** System *** | |
| 1005 | ||
| 1006 | * Allow symlinks to all proper Isabelle executables (Isabelle, | |
| 1007 | isabelle, isatool etc.). | |
| 1008 | ||
| 1009 | * ISABELLE_DOC_FORMAT setting specifies preferred document format (for | |
| 1010 | isatool doc, isatool mkdir, display_drafts etc.). | |
| 1011 | ||
| 1012 | * isatool usedir: option -f allows specification of the ML file to be | |
| 1013 | used by Isabelle; default is ROOT.ML. | |
| 1014 | ||
| 16251 
121dc80d120a
* ML: replaced File.sysify_path/quote_sysify_path by File.platform_path/shell_path;
 wenzelm parents: 
16234diff
changeset | 1015 | * New isatool version outputs the version identifier of the Isabelle | 
| 
121dc80d120a
* ML: replaced File.sysify_path/quote_sysify_path by File.platform_path/shell_path;
 wenzelm parents: 
16234diff
changeset | 1016 | distribution being used. | 
| 
121dc80d120a
* ML: replaced File.sysify_path/quote_sysify_path by File.platform_path/shell_path;
 wenzelm parents: 
16234diff
changeset | 1017 | |
| 
121dc80d120a
* ML: replaced File.sysify_path/quote_sysify_path by File.platform_path/shell_path;
 wenzelm parents: 
16234diff
changeset | 1018 | * HOL: new isatool dimacs2hol converts files in DIMACS CNF format | 
| 16234 | 1019 | (containing Boolean satisfiability problems) into Isabelle/HOL | 
| 1020 | theories. | |
| 15703 | 1021 | |
| 1022 | ||
| 14655 
8a95abf87dd3
Pure: considerably improved version of 'constdefs' command;
 wenzelm parents: 
14624diff
changeset | 1023 | |
| 14606 | 1024 | New in Isabelle2004 (April 2004) | 
| 1025 | -------------------------------- | |
| 13280 
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
 wenzelm parents: 
13190diff
changeset | 1026 | |
| 14171 
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
 skalberg parents: 
14136diff
changeset | 1027 | *** General *** | 
| 
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
 skalberg parents: 
14136diff
changeset | 1028 | |
| 14398 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1029 | * Provers/order.ML: new efficient reasoner for partial and linear orders. | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1030 | Replaces linorder.ML. | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1031 | |
| 14606 | 1032 | * Pure: Greek letters (except small lambda, \<lambda>), as well as Gothic | 
| 1033 | (\<aa>...\<zz>\<AA>...\<ZZ>), calligraphic (\<A>...\<Z>), and Euler | |
| 14173 | 1034 | (\<a>...\<z>), are now considered normal letters, and can therefore | 
| 1035 | be used anywhere where an ASCII letter (a...zA...Z) has until | |
| 1036 | now. COMPATIBILITY: This obviously changes the parsing of some | |
| 1037 | terms, especially where a symbol has been used as a binder, say | |
| 1038 | '\<Pi>x. ...', which is now a type error since \<Pi>x will be parsed | |
| 1039 | as an identifier. Fix it by inserting a space around former | |
| 1040 | symbols. Call 'isatool fixgreek' to try to fix parsing errors in | |
| 1041 | existing theory and ML files. | |
| 14171 
0cab06e3bbd0
Extended the notion of letter and digit, such that now one may use greek,
 skalberg parents: 
14136diff
changeset | 1042 | |
| 14237 | 1043 | * Pure: Macintosh and Windows line-breaks are now allowed in theory files. | 
| 1044 | ||
| 14731 | 1045 | * Pure: single letter sub/superscripts (\<^isub> and \<^isup>) are now | 
| 1046 | allowed in identifiers. Similar to Greek letters \<^isub> is now considered | |
| 1047 | a normal (but invisible) letter. For multiple letter subscripts repeat | |
| 1048 | \<^isub> like this: x\<^isub>1\<^isub>2. | |
| 14233 | 1049 | |
| 14333 | 1050 | * Pure: There are now sub-/superscripts that can span more than one | 
| 1051 | character. Text between \<^bsub> and \<^esub> is set in subscript in | |
| 14606 | 1052 | ProofGeneral and LaTeX, text between \<^bsup> and \<^esup> in | 
| 1053 | superscript. The new control characters are not identifier parts. | |
| 14333 | 1054 | |
| 14561 
c53396af770e
* raw control symbols are of the form \<^raw:...> now.
 schirmer parents: 
14556diff
changeset | 1055 | * Pure: Control-symbols of the form \<^raw:...> will literally print the | 
| 14606 | 1056 | content of "..." to the latex file instead of \isacntrl... . The "..." | 
| 1057 | may consist of any printable characters excluding the end bracket >. | |
| 14361 
ad2f5da643b4
* Support for raw latex output in control symbols: \<^raw...>
 schirmer parents: 
14333diff
changeset | 1058 | |
| 14237 | 1059 | * Pure: Using new Isar command "finalconsts" (or the ML functions | 
| 1060 | Theory.add_finals or Theory.add_finals_i) it is now possible to | |
| 1061 | declare constants "final", which prevents their being given a definition | |
| 1062 | later. It is useful for constants whose behaviour is fixed axiomatically | |
| 14224 | 1063 | rather than definitionally, such as the meta-logic connectives. | 
| 1064 | ||
| 14606 | 1065 | * Pure: 'instance' now handles general arities with general sorts | 
| 1066 | (i.e. intersections of classes), | |
| 14503 
255ad604e08e
Added check that Theory.ML does not occur in the files section of the theory
 skalberg parents: 
14480diff
changeset | 1067 | |
| 14547 | 1068 | * Presentation: generated HTML now uses a CSS style sheet to make layout | 
| 14731 | 1069 | (somewhat) independent of content. It is copied from lib/html/isabelle.css. | 
| 14547 | 1070 | It can be changed to alter the colors/layout of generated pages. | 
| 1071 | ||
| 14556 
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
 wenzelm parents: 
14551diff
changeset | 1072 | |
| 14175 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1073 | *** Isar *** | 
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1074 | |
| 14508 
859b11514537
Experimental command for instantiation of locales in proof contexts:
 ballarin parents: 
14503diff
changeset | 1075 | * Tactic emulation methods rule_tac, erule_tac, drule_tac, frule_tac, | 
| 
859b11514537
Experimental command for instantiation of locales in proof contexts:
 ballarin parents: 
14503diff
changeset | 1076 | cut_tac, subgoal_tac and thin_tac: | 
| 14175 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1077 | - Now understand static (Isar) contexts. As a consequence, users of Isar | 
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1078 | locales are no longer forced to write Isar proof scripts. | 
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1079 | For details see Isar Reference Manual, paragraph 4.3.2: Further tactic | 
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1080 | emulations. | 
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1081 | - INCOMPATIBILITY: names of variables to be instantiated may no | 
| 14211 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1082 | longer be enclosed in quotes. Instead, precede variable name with `?'. | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1083 | This is consistent with the instantiation attribute "where". | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1084 | |
| 14257 
a7ef3f7588c5
Type inference bug in Isar attributes "where" and "of" fixed.
 ballarin parents: 
14255diff
changeset | 1085 | * Attributes "where" and "of": | 
| 14285 
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
 ballarin parents: 
14283diff
changeset | 1086 | - Now take type variables of instantiated theorem into account when reading | 
| 
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
 ballarin parents: 
14283diff
changeset | 1087 | the instantiation string. This fixes a bug that caused instantiated | 
| 
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
 ballarin parents: 
14283diff
changeset | 1088 | theorems to have too special types in some circumstances. | 
| 
92ed032e83a1
Isar: where attribute supports instantiation of type vars.
 ballarin parents: 
14283diff
changeset | 1089 | - "where" permits explicit instantiations of type variables. | 
| 14257 
a7ef3f7588c5
Type inference bug in Isar attributes "where" and "of" fixed.
 ballarin parents: 
14255diff
changeset | 1090 | |
| 14556 
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
 wenzelm parents: 
14551diff
changeset | 1091 | * Calculation commands "moreover" and "also" no longer interfere with | 
| 
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
 wenzelm parents: 
14551diff
changeset | 1092 |   current facts ("this"), admitting arbitrary combinations with "then"
 | 
| 
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
 wenzelm parents: 
14551diff
changeset | 1093 | and derived forms. | 
| 14283 | 1094 | |
| 14211 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1095 | * Locales: | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1096 | - Goal statements involving the context element "includes" no longer | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1097 | generate theorems with internal delta predicates (those ending on | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1098 | "_axioms") in the premise. | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1099 | Resolve particular premise with <locale>.intro to obtain old form. | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1100 |   - Fixed bug in type inference ("unify_frozen") that prevented mix of target
 | 
| 
7286c187596d
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14199diff
changeset | 1101 | specification and "includes" elements in goal statement. | 
| 14254 
342634f38451
Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
 ballarin parents: 
14243diff
changeset | 1102 | - Rule sets <locale>.intro and <locale>.axioms no longer declared as | 
| 
342634f38451
Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
 ballarin parents: 
14243diff
changeset | 1103 | [intro?] and [elim?] (respectively) by default. | 
| 14508 
859b11514537
Experimental command for instantiation of locales in proof contexts:
 ballarin parents: 
14503diff
changeset | 1104 | - Experimental command for instantiation of locales in proof contexts: | 
| 14551 | 1105 | instantiate <label>[<attrs>]: <loc> | 
| 14508 
859b11514537
Experimental command for instantiation of locales in proof contexts:
 ballarin parents: 
14503diff
changeset | 1106 | Instantiates locale <loc> and adds all its theorems to the current context | 
| 14551 | 1107 | taking into account their attributes. Label and attrs are optional | 
| 1108 | modifiers, like in theorem declarations. If present, names of | |
| 1109 | instantiated theorems are qualified with <label>, and the attributes | |
| 1110 | <attrs> are applied after any attributes these theorems might have already. | |
| 1111 | If the locale has assumptions, a chained fact of the form | |
| 14508 
859b11514537
Experimental command for instantiation of locales in proof contexts:
 ballarin parents: 
14503diff
changeset | 1112 | "<loc> t1 ... tn" is expected from which instantiations of the parameters | 
| 14551 | 1113 | are derived. The command does not support old-style locales declared | 
| 1114 | with "locale (open)". | |
| 1115 | A few (very simple) examples can be found in FOL/ex/LocaleInst.thy. | |
| 14175 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1116 | |
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1117 | * HOL: Tactic emulation methods induct_tac and case_tac understand static | 
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1118 | (Isar) contexts. | 
| 
dbd16ebaf907
Method rule_tac understands Isar contexts: documentation.
 ballarin parents: 
14173diff
changeset | 1119 | |
| 14556 
c5078f6c99a9
* Calculation commands "moreover" and "also" no longer interfere with
 wenzelm parents: 
14551diff
changeset | 1120 | |
| 14136 | 1121 | *** HOL *** | 
| 1122 | ||
| 14624 | 1123 | * Proof import: new image HOL4 contains the imported library from | 
| 1124 | the HOL4 system with about 2500 theorems. It is imported by | |
| 1125 | replaying proof terms produced by HOL4 in Isabelle. The HOL4 image | |
| 1126 | can be used like any other Isabelle image. See | |
| 1127 | HOL/Import/HOL/README for more information. | |
| 1128 | ||
| 14398 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1129 | * Simplifier: | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1130 | - Much improved handling of linear and partial orders. | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1131 | Reasoners for linear and partial orders are set up for type classes | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1132 | "linorder" and "order" respectively, and are added to the default simpset | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1133 | as solvers. This means that the simplifier can build transitivity chains | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1134 | to solve goals from the assumptions. | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1135 | - INCOMPATIBILITY: old proofs break occasionally. Typically, applications | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1136 | of blast or auto after simplification become unnecessary because the goal | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1137 | is solved by simplification already. | 
| 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 ballarin parents: 
14389diff
changeset | 1138 | |
| 14731 | 1139 | * Numerics: new theory Ring_and_Field contains over 250 basic numerical laws, | 
| 14389 | 1140 | all proved in axiomatic type classes for semirings, rings and fields. | 
| 1141 | ||
| 1142 | * Numerics: | |
| 1143 | - Numeric types (nat, int, and in HOL-Complex rat, real, complex, etc.) are | |
| 14731 | 1144 | now formalized using the Ring_and_Field theory mentioned above. | 
| 14389 | 1145 | - INCOMPATIBILITY: simplification and arithmetic behaves somewhat differently | 
| 1146 | than before, because now they are set up once in a generic manner. | |
| 14731 | 1147 | - INCOMPATIBILITY: many type-specific arithmetic laws have gone. | 
| 14480 | 1148 | Look for the general versions in Ring_and_Field (and Power if they concern | 
| 1149 | exponentiation). | |
| 14389 | 1150 | |
| 14401 | 1151 | * Type "rat" of the rational numbers is now available in HOL-Complex. | 
| 14389 | 1152 | |
| 14255 | 1153 | * Records: | 
| 1154 | - Record types are now by default printed with their type abbreviation | |
| 1155 | instead of the list of all field types. This can be configured via | |
| 1156 | the reference "print_record_type_abbr". | |
| 14731 | 1157 | - Simproc "record_upd_simproc" for simplification of multiple updates added | 
| 14255 | 1158 | (not enabled by default). | 
| 14427 | 1159 | - Simproc "record_ex_sel_eq_simproc" to simplify EX x. sel r = x resp. | 
| 1160 | EX x. x = sel r to True (not enabled by default). | |
| 14255 | 1161 | - Tactic "record_split_simp_tac" to split and simplify records added. | 
| 14731 | 1162 | |
| 14136 | 1163 | * 'specification' command added, allowing for definition by | 
| 14224 | 1164 | specification. There is also an 'ax_specification' command that | 
| 1165 | introduces the new constants axiomatically. | |
| 14136 | 1166 | |
| 14375 | 1167 | * arith(_tac) is now able to generate counterexamples for reals as well. | 
| 1168 | ||
| 14399 
dc677b35e54f
New lemmas about inversion of restricted functions.
 ballarin parents: 
14398diff
changeset | 1169 | * HOL-Algebra: new locale "ring" for non-commutative rings. | 
| 
dc677b35e54f
New lemmas about inversion of restricted functions.
 ballarin parents: 
14398diff
changeset | 1170 | |
| 14243 | 1171 | * HOL-ex: InductiveInvariant_examples illustrates advanced recursive function | 
| 14610 | 1172 |   definitions, thanks to Sava Krsti\'{c} and John Matthews.
 | 
| 1173 | ||
| 14731 | 1174 | * HOL-Matrix: a first theory for matrices in HOL with an application of | 
| 14610 | 1175 | matrix theory to linear programming. | 
| 14136 | 1176 | |
| 14380 | 1177 | * Unions and Intersections: | 
| 15119 | 1178 | The latex output syntax of UN and INT has been changed | 
| 1179 |   from "\Union x \in A. B" to "\Union_{x \in A} B"
 | |
| 1180 | i.e. the index formulae has become a subscript. | |
| 1181 | Similarly for "\Union x. B", and for \Inter instead of \Union. | |
| 14380 | 1182 | |
| 14418 | 1183 | * Unions and Intersections over Intervals: | 
| 14731 | 1184 |   There is new short syntax "UN i<=n. A" for "UN i:{0..n}. A". There is
 | 
| 1185 | also an x-symbol version with subscripts "\<Union>\<^bsub>i <= n\<^esub>. A" | |
| 14418 | 1186 | like in normal math, and corresponding versions for < and for intersection. | 
| 1187 | ||
| 15677 | 1188 | * HOL/List: Ordering "lexico" is renamed "lenlex" and the standard | 
| 1189 | lexicographic dictonary ordering has been added as "lexord". | |
| 1190 | ||
| 14401 | 1191 | * ML: the legacy theory structures Int and List have been removed. They had | 
| 1192 | conflicted with ML Basis Library structures having the same names. | |
| 14380 | 1193 | |
| 14464 | 1194 | * 'refute' command added to search for (finite) countermodels. Only works | 
| 1195 | for a fragment of HOL. The installation of an external SAT solver is | |
| 1196 | highly recommended. See "HOL/Refute.thy" for details. | |
| 1197 | ||
| 14602 | 1198 | * 'quickcheck' command: Allows to find counterexamples by evaluating | 
| 1199 | formulae under an assignment of free variables to random values. | |
| 1200 | In contrast to 'refute', it can deal with inductive datatypes, | |
| 1201 | but cannot handle quantifiers. See "HOL/ex/Quickcheck_Examples.thy" | |
| 1202 | for examples. | |
| 14464 | 1203 | |
| 14606 | 1204 | |
| 14536 | 1205 | *** HOLCF *** | 
| 1206 | ||
| 1207 | * Streams now come with concatenation and are part of the HOLCF image | |
| 1208 | ||
| 14572 | 1209 | |
| 1210 | ||
| 14136 | 1211 | New in Isabelle2003 (May 2003) | 
| 14606 | 1212 | ------------------------------ | 
| 14136 | 1213 | |
| 13280 
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
 wenzelm parents: 
13190diff
changeset | 1214 | *** General *** | 
| 
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
 wenzelm parents: 
13190diff
changeset | 1215 | |
| 13618 | 1216 | * Provers/simplifier: | 
| 1217 | ||
| 13781 | 1218 | - Completely reimplemented method simp (ML: Asm_full_simp_tac): | 
| 13618 | 1219 | Assumptions are now subject to complete mutual simplification, | 
| 1220 | not just from left to right. The simplifier now preserves | |
| 1221 | the order of assumptions. | |
| 1222 | ||
| 1223 | Potential INCOMPATIBILITY: | |
| 1224 | ||
| 13781 | 1225 | -- simp sometimes diverges where the old version did | 
| 1226 | not, e.g. invoking simp on the goal | |
| 13618 | 1227 | |
| 1228 | [| P (f x); y = x; f x = f y |] ==> Q | |
| 1229 | ||
| 13781 | 1230 | now gives rise to the infinite reduction sequence | 
| 1231 | ||
| 1232 | P(f x) --(f x = f y)--> P(f y) --(y = x)--> P(f x) --(f x = f y)--> ... | |
| 1233 | ||
| 1234 | Using "simp (asm_lr)" (ML: Asm_lr_simp_tac) instead often solves this | |
| 1235 | kind of problem. | |
| 1236 | ||
| 1237 | -- Tactics combining classical reasoner and simplification (such as auto) | |
| 1238 | are also affected by this change, because many of them rely on | |
| 1239 | simp. They may sometimes diverge as well or yield a different numbers | |
| 1240 | of subgoals. Try to use e.g. force, fastsimp, or safe instead of auto | |
| 1241 | in case of problems. Sometimes subsequent calls to the classical | |
| 1242 | reasoner will fail because a preceeding call to the simplifier too | |
| 1243 | eagerly simplified the goal, e.g. deleted redundant premises. | |
| 13618 | 1244 | |
| 1245 | - The simplifier trace now shows the names of the applied rewrite rules | |
| 1246 | ||
| 13829 | 1247 | - You can limit the number of recursive invocations of the simplifier | 
| 1248 | during conditional rewriting (where the simplifie tries to solve the | |
| 1249 | conditions before applying the rewrite rule): | |
| 1250 | ML "simp_depth_limit := n" | |
| 1251 | where n is an integer. Thus you can force termination where previously | |
| 1252 | the simplifier would diverge. | |
| 1253 | ||
| 13835 
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
 ballarin parents: 
13829diff
changeset | 1254 | - Accepts free variables as head terms in congruence rules. Useful in Isar. | 
| 13829 | 1255 | |
| 13938 | 1256 | - No longer aborts on failed congruence proof. Instead, the | 
| 1257 | congruence is ignored. | |
| 1258 | ||
| 14008 | 1259 | * Pure: New generic framework for extracting programs from constructive | 
| 1260 | proofs. See HOL/Extraction.thy for an example instantiation, as well | |
| 1261 | as HOL/Extraction for some case studies. | |
| 1262 | ||
| 13868 | 1263 | * Pure: The main goal of the proof state is no longer shown by default, only | 
| 1264 | the subgoals. This behaviour is controlled by a new flag. | |
| 13835 
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
 ballarin parents: 
13829diff
changeset | 1265 | PG menu: Isabelle/Isar -> Settings -> Show Main Goal | 
| 13815 | 1266 | (ML: Proof.show_main_goal). | 
| 1267 | ||
| 1268 | * Pure: You can find all matching introduction rules for subgoal 1, i.e. all | |
| 1269 | rules whose conclusion matches subgoal 1: | |
| 1270 | PG menu: Isabelle/Isar -> Show me -> matching rules | |
| 1271 | The rules are ordered by how closely they match the subgoal. | |
| 1272 | In particular, rules that solve a subgoal outright are displayed first | |
| 1273 | (or rather last, the way they are printed). | |
| 1274 | (ML: ProofGeneral.print_intros()) | |
| 1275 | ||
| 1276 | * Pure: New flag trace_unify_fail causes unification to print | |
| 13781 | 1277 | diagnostic information (PG: in trace buffer) when it fails. This is | 
| 1278 | useful for figuring out why single step proofs like rule, erule or | |
| 1279 | assumption failed. | |
| 1280 | ||
| 13815 | 1281 | * Pure: Locale specifications now produce predicate definitions | 
| 13410 
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
 wenzelm parents: 
13344diff
changeset | 1282 | according to the body of text (covering assumptions modulo local | 
| 
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
 wenzelm parents: 
13344diff
changeset | 1283 | definitions); predicate "loc_axioms" covers newly introduced text, | 
| 
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
 wenzelm parents: 
13344diff
changeset | 1284 | while "loc" is cumulative wrt. all included locale expressions; the | 
| 
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
 wenzelm parents: 
13344diff
changeset | 1285 | latter view is presented only on export into the global theory | 
| 
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
 wenzelm parents: 
13344diff
changeset | 1286 | context; potential INCOMPATIBILITY, use "(open)" option to fall back | 
| 
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
 wenzelm parents: 
13344diff
changeset | 1287 | on the old view without predicates; | 
| 
f2cd09766864
* Pure: locale specifications now produce predicate definitions;
 wenzelm parents: 
13344diff
changeset | 1288 | |
| 13459 
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
 wenzelm parents: 
13443diff
changeset | 1289 | * Pure: predefined locales "var" and "struct" are useful for sharing | 
| 
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
 wenzelm parents: 
13443diff
changeset | 1290 | parameters (as in CASL, for example); just specify something like | 
| 
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
 wenzelm parents: 
13443diff
changeset | 1291 | ``var x + var y + struct M'' as import; | 
| 
83f41b047a39
* Pure: predefined locales "var" and "struct" are useful for sharing
 wenzelm parents: 
13443diff
changeset | 1292 | |
| 13463 
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
 wenzelm parents: 
13459diff
changeset | 1293 | * Pure: improved thms_containing: proper indexing of facts instead of | 
| 
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
 wenzelm parents: 
13459diff
changeset | 1294 | raw theorems; check validity of results wrt. current name space; | 
| 
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
 wenzelm parents: 
13459diff
changeset | 1295 | include local facts of proof configuration (also covers active | 
| 13541 | 1296 | locales), cover fixed variables in index; may use "_" in term | 
| 1297 | specification; an optional limit for the number of printed facts may | |
| 1298 | be given (the default is 40); | |
| 1299 | ||
| 1300 | * Pure: disallow duplicate fact bindings within new-style theory files | |
| 1301 | (batch-mode only); | |
| 13540 
aede0306e214
* Pure: disallow duplicate fact bindings within new-style theory files;
 wenzelm parents: 
13522diff
changeset | 1302 | |
| 13463 
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
 wenzelm parents: 
13459diff
changeset | 1303 | * Provers: improved induct method: assumptions introduced by case | 
| 
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
 wenzelm parents: 
13459diff
changeset | 1304 | "foo" are split into "foo.hyps" (from the rule) and "foo.prems" (from | 
| 
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
 wenzelm parents: 
13459diff
changeset | 1305 | the goal statement); "foo" still refers to all facts collectively; | 
| 
07747943c626
* Provers: Simplifier.simproc(_i) now provide sane interface for
 wenzelm parents: 
13459diff
changeset | 1306 | |
| 13550 | 1307 | * Provers: the function blast.overloaded has been removed: all constants | 
| 1308 | are regarded as potentially overloaded, which improves robustness in exchange | |
| 1309 | for slight decrease in efficiency; | |
| 1310 | ||
| 13781 | 1311 | * Provers/linorder: New generic prover for transitivity reasoning over | 
| 1312 | linear orders. Note: this prover is not efficient! | |
| 1313 | ||
| 13522 
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
 wenzelm parents: 
13518diff
changeset | 1314 | * Isar: preview of problems to finish 'show' now produce an error | 
| 
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
 wenzelm parents: 
13518diff
changeset | 1315 | rather than just a warning (in interactive mode); | 
| 
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
 wenzelm parents: 
13518diff
changeset | 1316 | |
| 13280 
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
 wenzelm parents: 
13190diff
changeset | 1317 | |
| 13158 | 1318 | *** HOL *** | 
| 1319 | ||
| 13899 | 1320 | * arith(_tac) | 
| 1321 | ||
| 1322 | - Produces a counter example if it cannot prove a goal. | |
| 1323 | Note that the counter example may be spurious if the goal is not a formula | |
| 1324 | of quantifier-free linear arithmetic. | |
| 1325 | In ProofGeneral the counter example appears in the trace buffer. | |
| 1326 | ||
| 1327 | - Knows about div k and mod k where k is a numeral of type nat or int. | |
| 1328 | ||
| 1329 | - Calls full Presburger arithmetic (by Amine Chaieb) if quantifier-free | |
| 1330 | linear arithmetic fails. This takes account of quantifiers and divisibility. | |
| 14731 | 1331 | Presburger arithmetic can also be called explicitly via presburger(_tac). | 
| 13899 | 1332 | |
| 1333 | * simp's arithmetic capabilities have been enhanced a bit: it now | |
| 1334 | takes ~= in premises into account (by performing a case split); | |
| 1335 | ||
| 1336 | * simp reduces "m*(n div m) + n mod m" to n, even if the two summands | |
| 1337 | are distributed over a sum of terms; | |
| 1338 | ||
| 13735 | 1339 | * New tactic "trans_tac" and method "trans" instantiate | 
| 1340 | Provers/linorder.ML for axclasses "order" and "linorder" (predicates | |
| 14731 | 1341 | "<=", "<" and "="). | 
| 1342 | ||
| 1343 | * function INCOMPATIBILITIES: Pi-sets have been redefined and moved from main | |
| 13587 | 1344 | HOL to Library/FuncSet; constant "Fun.op o" is now called "Fun.comp"; | 
| 1345 | ||
| 13443 | 1346 | * 'typedef' command has new option "open" to suppress the set | 
| 1347 | definition; | |
| 1348 | ||
| 13522 
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
 wenzelm parents: 
13518diff
changeset | 1349 | * functions Min and Max on finite sets have been introduced (theory | 
| 
934fffeb6f38
* Isar: preview of problems to finish 'show' now produce an error
 wenzelm parents: 
13518diff
changeset | 1350 | Finite_Set); | 
| 13492 | 1351 | |
| 13443 | 1352 | * attribute [symmetric] now works for relations as well; it turns | 
| 1353 | (x,y) : R^-1 into (y,x) : R, and vice versa; | |
| 1354 | ||
| 13613 | 1355 | * induct over a !!-quantified statement (say !!x1..xn): | 
| 1356 | each "case" automatically performs "fix x1 .. xn" with exactly those names. | |
| 1357 | ||
| 13899 | 1358 | * Map: `empty' is no longer a constant but a syntactic abbreviation for | 
| 1359 | %x. None. Warning: empty_def now refers to the previously hidden definition | |
| 1360 | of the empty set. | |
| 1361 | ||
| 14018 | 1362 | * Algebra: formalization of classical algebra. Intended as base for | 
| 1363 | any algebraic development in Isabelle. Currently covers group theory | |
| 1364 | (up to Sylow's theorem) and ring theory (Universal Property of | |
| 1365 | Univariate Polynomials). Contributions welcome; | |
| 13960 | 1366 | |
| 1367 | * GroupTheory: deleted, since its material has been moved to Algebra; | |
| 1368 | ||
| 14731 | 1369 | * Complex: new directory of the complex numbers with numeric constants, | 
| 1370 | nonstandard complex numbers, and some complex analysis, standard and | |
| 13966 
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
 paulson parents: 
13960diff
changeset | 1371 | nonstandard (Jacques Fleuriot); | 
| 
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
 paulson parents: 
13960diff
changeset | 1372 | |
| 
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
 paulson parents: 
13960diff
changeset | 1373 | * HOL-Complex: new image for analysis, replacing HOL-Real and HOL-Hyperreal; | 
| 
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
 paulson parents: 
13960diff
changeset | 1374 | |
| 14731 | 1375 | * Hyperreal: introduced Gauge integration and hyperreal logarithms (Jacques | 
| 13966 
2160abf7cfe7
removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
 paulson parents: 
13960diff
changeset | 1376 | Fleuriot); | 
| 13960 | 1377 | |
| 13549 | 1378 | * Real/HahnBanach: updated and adapted to locales; | 
| 1379 | ||
| 13995 | 1380 | * NumberTheory: added Gauss's law of quadratic reciprocity (by Avigad, | 
| 1381 | Gray and Kramer); | |
| 13872 | 1382 | |
| 1383 | * UNITY: added the Meier-Sanders theory of progress sets; | |
| 1384 | ||
| 14011 | 1385 | * MicroJava: bytecode verifier and lightweight bytecode verifier | 
| 1386 | as abstract algorithms, instantiated to the JVM; | |
| 1387 | ||
| 14010 | 1388 | * Bali: Java source language formalization. Type system, operational | 
| 1389 | semantics, axiomatic semantics. Supported language features: | |
| 1390 | classes, interfaces, objects,virtual methods, static methods, | |
| 1391 | static/instance fields, arrays, access modifiers, definite | |
| 1392 | assignment, exceptions. | |
| 13549 | 1393 | |
| 14011 | 1394 | |
| 13549 | 1395 | *** ZF *** | 
| 1396 | ||
| 15154 | 1397 | * ZF/Constructible: consistency proof for AC (Gdel's constructible | 
| 13549 | 1398 | universe, etc.); | 
| 1399 | ||
| 13872 | 1400 | * Main ZF: virtually all theories converted to new-style format; | 
| 13518 | 1401 | |
| 13280 
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
 wenzelm parents: 
13190diff
changeset | 1402 | |
| 13478 | 1403 | *** ML *** | 
| 1404 | ||
| 1405 | * Pure: Tactic.prove provides sane interface for internal proofs; | |
| 1406 | omits the infamous "standard" operation, so this is more appropriate | |
| 1407 | than prove_goalw_cterm in many situations (e.g. in simprocs); | |
| 1408 | ||
| 1409 | * Pure: improved error reporting of simprocs; | |
| 1410 | ||
| 1411 | * Provers: Simplifier.simproc(_i) provides sane interface for setting | |
| 1412 | up simprocs; | |
| 1413 | ||
| 1414 | ||
| 13953 | 1415 | *** Document preparation *** | 
| 1416 | ||
| 1417 | * uses \par instead of \\ for line breaks in theory text. This may | |
| 1418 | shift some page breaks in large documents. To get the old behaviour | |
| 1419 | use \renewcommand{\isanewline}{\mbox{}\\\mbox{}} in root.tex.
 | |
| 1420 | ||
| 14731 | 1421 | * minimized dependencies of isabelle.sty and isabellesym.sty on | 
| 13953 | 1422 | other packages | 
| 1423 | ||
| 1424 | * \<euro> now needs package babel/greek instead of marvosym (which | |
| 1425 | broke \Rightarrow) | |
| 1426 | ||
| 14731 | 1427 | * normal size for \<zero>...\<nine> (uses \mathbf instead of | 
| 13954 | 1428 | textcomp package) | 
| 13953 | 1429 | |
| 13280 
306ef3aef61b
* improved thms_containing: proper indexing of facts instead of raw
 wenzelm parents: 
13190diff
changeset | 1430 | |
| 14572 | 1431 | |
| 12984 | 1432 | New in Isabelle2002 (March 2002) | 
| 1433 | -------------------------------- | |
| 11474 | 1434 | |
| 11572 | 1435 | *** Document preparation *** | 
| 1436 | ||
| 11842 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1437 | * greatly simplified document preparation setup, including more | 
| 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1438 | graceful interpretation of isatool usedir -i/-d/-D options, and more | 
| 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1439 | instructive isatool mkdir; users should basically be able to get | 
| 12899 
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
 wenzelm parents: 
12889diff
changeset | 1440 | started with "isatool mkdir HOL Test && isatool make"; alternatively, | 
| 
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
 wenzelm parents: 
12889diff
changeset | 1441 | users may run a separate document processing stage manually like this: | 
| 
7d5b690253ee
"isatool usedir -D output HOL Test && isatool document Test/output";
 wenzelm parents: 
12889diff
changeset | 1442 | "isatool usedir -D output HOL Test && isatool document Test/output"; | 
| 11842 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1443 | |
| 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1444 | * theory dependency graph may now be incorporated into documents; | 
| 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1445 | isatool usedir -g true will produce session_graph.eps/.pdf for use | 
| 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1446 | with \includegraphics of LaTeX; | 
| 
b903d3dabbe2
* greatly simplified document preparation setup, including more
 wenzelm parents: 
11817diff
changeset | 1447 | |
| 11864 
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
 wenzelm parents: 
11842diff
changeset | 1448 | * proper spacing of consecutive markup elements, especially text | 
| 
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
 wenzelm parents: 
11842diff
changeset | 1449 | blocks after section headings; | 
| 
371ce685b0ec
* proper spacing of consecutive markup elements, especially text
 wenzelm parents: 
11842diff
changeset | 1450 | |
| 11572 | 1451 | * support bold style (for single symbols only), input syntax is like | 
| 1452 | this: "\<^bold>\<alpha>" or "\<^bold>A"; | |
| 1453 | ||
| 11814 | 1454 | * \<bullet> is now output as bold \cdot by default, which looks much | 
| 11572 | 1455 | better in printed text; | 
| 1456 | ||
| 11712 
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
 wenzelm parents: 
11702diff
changeset | 1457 | * added default LaTeX bindings for \<tturnstile> and \<TTurnstile>; | 
| 
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
 wenzelm parents: 
11702diff
changeset | 1458 | note that these symbols are currently unavailable in Proof General / | 
| 12769 | 1459 | X-Symbol; new symbols \<zero>, \<one>, ..., \<nine>, and \<euro>; | 
| 12690 | 1460 | |
| 1461 | * isatool latex no longer depends on changed TEXINPUTS, instead | |
| 1462 | isatool document copies the Isabelle style files to the target | |
| 1463 | location; | |
| 11712 
deb8cac87063
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
 wenzelm parents: 
11702diff
changeset | 1464 | |
| 11572 | 1465 | |
| 11633 | 1466 | *** Isar *** | 
| 1467 | ||
| 12312 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1468 | * Pure/Provers: improved proof by cases and induction; | 
| 12280 | 1469 | - 'case' command admits impromptu naming of parameters (such as | 
| 1470 | "case (Suc n)"); | |
| 1471 | - 'induct' method divinates rule instantiation from the inductive | |
| 1472 | claim; no longer requires excessive ?P bindings for proper | |
| 1473 | instantiation of cases; | |
| 1474 | - 'induct' method properly enumerates all possibilities of set/type | |
| 1475 | rules; as a consequence facts may be also passed through *type* | |
| 1476 | rules without further ado; | |
| 1477 | - 'induct' method now derives symbolic cases from the *rulified* | |
| 1478 | rule (before it used to rulify cases stemming from the internal | |
| 1479 | atomized version); this means that the context of a non-atomic | |
| 1480 | statement becomes is included in the hypothesis, avoiding the | |
| 1481 | slightly cumbersome show "PROP ?case" form; | |
| 1482 | - 'induct' may now use elim-style induction rules without chaining | |
| 1483 | facts, using ``missing'' premises from the goal state; this allows | |
| 1484 | rules stemming from inductive sets to be applied in unstructured | |
| 1485 | scripts, while still benefitting from proper handling of non-atomic | |
| 1486 | statements; NB: major inductive premises need to be put first, all | |
| 1487 | the rest of the goal is passed through the induction; | |
| 1488 | - 'induct' proper support for mutual induction involving non-atomic | |
| 1489 | rule statements (uses the new concept of simultaneous goals, see | |
| 1490 | below); | |
| 12853 | 1491 | - append all possible rule selections, but only use the first | 
| 1492 | success (no backtracking); | |
| 11995 
4a622f5fb164
  - 'induct' may now use elim-style induction rules without chaining
 wenzelm parents: 
11986diff
changeset | 1493 | - removed obsolete "(simplified)" and "(stripped)" options of methods; | 
| 12754 
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
 wenzelm parents: 
12753diff
changeset | 1494 | - undeclared rule case names default to numbers 1, 2, 3, ...; | 
| 
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
 wenzelm parents: 
12753diff
changeset | 1495 | - added 'print_induct_rules' (covered by help item in recent Proof | 
| 
044a59921f3b
Isar: undeclared rule case names default to numbers 1, 2, 3, ...;
 wenzelm parents: 
12753diff
changeset | 1496 | General versions); | 
| 11995 
4a622f5fb164
  - 'induct' may now use elim-style induction rules without chaining
 wenzelm parents: 
11986diff
changeset | 1497 | - moved induct/cases attributes to Pure, methods to Provers; | 
| 
4a622f5fb164
  - 'induct' may now use elim-style induction rules without chaining
 wenzelm parents: 
11986diff
changeset | 1498 | - generic method setup instantiated for FOL and HOL; | 
| 11986 
26b95a6f3f79
- 'induct' method now derives symbolic cases from the *rulified* rule
 wenzelm parents: 
11965diff
changeset | 1499 | |
| 12163 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1500 | * Pure: support multiple simultaneous goal statements, for example | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1501 | "have a: A and b: B" (same for 'theorem' etc.); being a pure | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1502 | meta-level mechanism, this acts as if several individual goals had | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1503 | been stated separately; in particular common proof methods need to be | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1504 | repeated in order to cover all claims; note that a single elimination | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1505 | step is *not* sufficient to establish the two conjunctions, so this | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1506 | fails: | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1507 | |
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1508 | assume "A & B" then have A and B .. (*".." fails*) | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1509 | |
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1510 | better use "obtain" in situations as above; alternative refer to | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1511 | multi-step methods like 'auto', 'simp_all', 'blast+' etc.; | 
| 
04c98351f9af
Isar: 'induct' proper support for mutual induction involving
 wenzelm parents: 
12159diff
changeset | 1512 | |
| 12078 
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
 wenzelm parents: 
12034diff
changeset | 1513 | * Pure: proper integration with ``locales''; unlike the original | 
| 15154 | 1514 | version by Florian Kammller, Isar locales package high-level proof | 
| 12078 
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
 wenzelm parents: 
12034diff
changeset | 1515 | contexts rather than raw logical ones (e.g. we admit to include | 
| 12280 | 1516 | attributes everywhere); operations on locales include merge and | 
| 12964 | 1517 | rename; support for implicit arguments (``structures''); simultaneous | 
| 1518 | type-inference over imports and text; see also HOL/ex/Locales.thy for | |
| 1519 | some examples; | |
| 12078 
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
 wenzelm parents: 
12034diff
changeset | 1520 | |
| 12707 
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
 wenzelm parents: 
12690diff
changeset | 1521 | * Pure: the following commands have been ``localized'', supporting a | 
| 
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
 wenzelm parents: 
12690diff
changeset | 1522 | target locale specification "(in name)": 'lemma', 'theorem', | 
| 
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
 wenzelm parents: 
12690diff
changeset | 1523 | 'corollary', 'lemmas', 'theorems', 'declare'; the results will be | 
| 
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
 wenzelm parents: 
12690diff
changeset | 1524 | stored both within the locale and at the theory level (exported and | 
| 
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
 wenzelm parents: 
12690diff
changeset | 1525 | qualified by the locale name); | 
| 
4013be8572c5
* Pure: localized 'lemmas', 'theorems', 'declare';
 wenzelm parents: 
12690diff
changeset | 1526 | |
| 12964 | 1527 | * Pure: theory goals may now be specified in ``long'' form, with | 
| 1528 | ad-hoc contexts consisting of arbitrary locale elements. for example | |
| 1529 | ``lemma foo: fixes x assumes "A x" shows "B x"'' (local syntax and | |
| 1530 | definitions may be given, too); the result is a meta-level rule with | |
| 1531 | the context elements being discharged in the obvious way; | |
| 1532 | ||
| 1533 | * Pure: new proof command 'using' allows to augment currently used | |
| 1534 | facts after a goal statement ('using' is syntactically analogous to
 | |
| 1535 | 'apply', but acts on the goal's facts only); this allows chained facts | |
| 1536 | to be separated into parts given before and after a claim, as in | |
| 1537 | ``from a and b have C using d and e <proof>''; | |
| 12078 
4eb8061286e5
* Isar/Pure: proper integration with ``locales''; unlike the original
 wenzelm parents: 
12034diff
changeset | 1538 | |
| 11722 | 1539 | * Pure: renamed "antecedent" case to "rule_context"; | 
| 1540 | ||
| 12964 | 1541 | * Pure: new 'judgment' command records explicit information about the | 
| 1542 | object-logic embedding (used by several tools internally); no longer | |
| 1543 | use hard-wired "Trueprop"; | |
| 1544 | ||
| 11738 | 1545 | * Pure: added 'corollary' command; | 
| 1546 | ||
| 11722 | 1547 | * Pure: fixed 'token_translation' command; | 
| 1548 | ||
| 11899 | 1549 | * Pure: removed obsolete 'exported' attribute; | 
| 1550 | ||
| 11933 | 1551 | * Pure: dummy pattern "_" in is/let is now automatically lifted over | 
| 1552 | bound variables: "ALL x. P x --> Q x" (is "ALL x. _ --> ?C x") | |
| 11899 | 1553 | supersedes more cumbersome ... (is "ALL x. _ x --> ?C x"); | 
| 1554 | ||
| 11952 
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
 wenzelm parents: 
11937diff
changeset | 1555 | * Pure: method 'atomize' presents local goal premises as object-level | 
| 
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
 wenzelm parents: 
11937diff
changeset | 1556 | statements (atomic meta-level propositions); setup controlled via | 
| 
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
 wenzelm parents: 
11937diff
changeset | 1557 | rewrite rules declarations of 'atomize' attribute; example | 
| 
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
 wenzelm parents: 
11937diff
changeset | 1558 | application: 'induct' method with proper rule statements in improper | 
| 
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
 wenzelm parents: 
11937diff
changeset | 1559 | proof *scripts*; | 
| 
b10f1e8862f4
* Pure: method 'atomize' presents local goal premises as object-level
 wenzelm parents: 
11937diff
changeset | 1560 | |
| 12106 
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
 wenzelm parents: 
12078diff
changeset | 1561 | * Pure: emulation of instantiation tactics (rule_tac, cut_tac, etc.) | 
| 
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
 wenzelm parents: 
12078diff
changeset | 1562 | now consider the syntactic context of assumptions, giving a better | 
| 
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
 wenzelm parents: 
12078diff
changeset | 1563 | chance to get type-inference of the arguments right (this is | 
| 
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
 wenzelm parents: 
12078diff
changeset | 1564 | especially important for locales); | 
| 
4a8558dbb6a0
* Isar/Pure: emulation of instantiation tactics (rule_tac, cut_tac,
 wenzelm parents: 
12078diff
changeset | 1565 | |
| 12312 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1566 | * Pure: "sorry" no longer requires quick_and_dirty in interactive | 
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1567 | mode; | 
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1568 | |
| 12405 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1569 | * Pure/obtain: the formal conclusion "thesis", being marked as | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1570 | ``internal'', may no longer be reference directly in the text; | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1571 | potential INCOMPATIBILITY, may need to use "?thesis" in rare | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1572 | situations; | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1573 | |
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1574 | * Pure: generic 'sym' attribute which declares a rule both as pure | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1575 | 'elim?' and for the 'symmetric' operation; | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1576 | |
| 12877 
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
 wenzelm parents: 
12853diff
changeset | 1577 | * Pure: marginal comments ``--'' may now occur just anywhere in the | 
| 
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
 wenzelm parents: 
12853diff
changeset | 1578 | text; the fixed correlation with particular command syntax has been | 
| 
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
 wenzelm parents: 
12853diff
changeset | 1579 | discontinued; | 
| 
b9635eb8a448
* Isar/Pure: marginal comments ``--'' may now occur just anywhere in the text;
 wenzelm parents: 
12853diff
changeset | 1580 | |
| 13023 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1581 | * Pure: new method 'rules' is particularly well-suited for proof | 
| 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1582 | search in intuitionistic logic; a bit slower than 'blast' or 'fast', | 
| 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1583 | but often produces more compact proof terms with less detours; | 
| 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1584 | |
| 12364 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1585 | * Pure/Provers/classical: simplified integration with pure rule | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1586 | attributes and methods; the classical "intro?/elim?/dest?" | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1587 | declarations coincide with the pure ones; the "rule" method no longer | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1588 | includes classically swapped intros; "intro" and "elim" methods no | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1589 | longer pick rules from the context; also got rid of ML declarations | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1590 | AddXIs/AddXEs/AddXDs; all of this has some potential for | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1591 | INCOMPATIBILITY; | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1592 | |
| 12405 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1593 | * Provers/classical: attribute 'swapped' produces classical inversions | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1594 | of introduction rules; | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1595 | |
| 12364 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1596 | * Provers/simplifier: 'simplified' attribute may refer to explicit | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1597 | rules instead of full simplifier context; 'iff' attribute handles | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1598 | conditional rules; | 
| 11936 
fef099613354
* Provers: 'simplified' attribute may refer to explicit rules instead
 wenzelm parents: 
11933diff
changeset | 1599 | |
| 11745 
06cd8c3b5487
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms;
 wenzelm parents: 
11738diff
changeset | 1600 | * HOL: 'typedef' now allows alternative names for Rep/Abs morphisms; | 
| 
06cd8c3b5487
* HOL: 'typedef' now allows alternative names for Rep/Abs morphisms;
 wenzelm parents: 
11738diff
changeset | 1601 | |
| 11690 | 1602 | * HOL: 'recdef' now fails on unfinished automated proofs, use | 
| 11633 | 1603 | "(permissive)" option to recover old behavior; | 
| 1604 | ||
| 11933 | 1605 | * HOL: 'inductive' no longer features separate (collective) attributes | 
| 1606 | for 'intros' (was found too confusing); | |
| 1607 | ||
| 12405 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1608 | * HOL: properly declared induction rules less_induct and | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1609 | wf_induct_rule; | 
| 
9b16f99fd7b9
* Pure/obtain: "thesis" now internal (use ?thesis);
 wenzelm parents: 
12364diff
changeset | 1610 | |
| 11788 
60054fee3c16
canonical 'cases'/'induct' rules for n-tuples (n=3..7)
 kleing parents: 
11745diff
changeset | 1611 | |
| 11474 | 1612 | *** HOL *** | 
| 1613 | ||
| 11702 | 1614 | * HOL: moved over to sane numeral syntax; the new policy is as | 
| 1615 | follows: | |
| 1616 | ||
| 1617 | - 0 and 1 are polymorphic constants, which are defined on any | |
| 1618 | numeric type (nat, int, real etc.); | |
| 1619 | ||
| 1620 | - 2, 3, 4, ... and -1, -2, -3, ... are polymorphic numerals, based | |
| 1621 | binary representation internally; | |
| 1622 | ||
| 1623 | - type nat has special constructor Suc, and generally prefers Suc 0 | |
| 1624 | over 1::nat and Suc (Suc 0) over 2::nat; | |
| 1625 | ||
| 12364 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1626 | This change may cause significant problems of INCOMPATIBILITY; here | 
| 
108cdda23ab3
* Pure/Provers/classical: simplified integration with pure rule
 wenzelm parents: 
12335diff
changeset | 1627 | are some hints on converting existing sources: | 
| 11702 | 1628 | |
| 1629 | - due to the new "num" token, "-0" and "-1" etc. are now atomic | |
| 1630 | entities, so expressions involving "-" (unary or binary minus) need | |
| 1631 | to be spaced properly; | |
| 1632 | ||
| 1633 | - existing occurrences of "1" may need to be constraint "1::nat" or | |
| 1634 | even replaced by Suc 0; similar for old "2"; | |
| 1635 | ||
| 1636 | - replace "#nnn" by "nnn", and "#-nnn" by "-nnn"; | |
| 1637 | ||
| 1638 | - remove all special provisions on numerals in proofs; | |
| 1639 | ||
| 13042 | 1640 | * HOL: simp rules nat_number expand numerals on nat to Suc/0 | 
| 12837 | 1641 | representation (depends on bin_arith_simps in the default context); | 
| 1642 | ||
| 12736 | 1643 | * HOL: symbolic syntax for x^2 (numeral 2); | 
| 1644 | ||
| 12335 
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
 wenzelm parents: 
12312diff
changeset | 1645 | * HOL: the class of all HOL types is now called "type" rather than | 
| 
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
 wenzelm parents: 
12312diff
changeset | 1646 | "term"; INCOMPATIBILITY, need to adapt references to this type class | 
| 
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
 wenzelm parents: 
12312diff
changeset | 1647 | in axclass/classes, instance/arities, and (usually rare) occurrences | 
| 
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
 wenzelm parents: 
12312diff
changeset | 1648 | in typings (of consts etc.); internally the class is called | 
| 
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
 wenzelm parents: 
12312diff
changeset | 1649 | "HOL.type", ML programs should refer to HOLogic.typeS; | 
| 
db4d5f498742
* HOL: the class of all HOL types is now called "type" rather than
 wenzelm parents: 
12312diff
changeset | 1650 | |
| 12280 | 1651 | * HOL/record package improvements: | 
| 1652 | - new derived operations "fields" to build a partial record section, | |
| 1653 | "extend" to promote a fixed record to a record scheme, and | |
| 1654 | "truncate" for the reverse; cf. theorems "xxx.defs", which are *not* | |
| 1655 | declared as simp by default; | |
| 12587 
3f3d2ffb5df5
HOL/record: shared operations ("more", "fields", etc.) now need to be
 wenzelm parents: 
12564diff
changeset | 1656 |   - shared operations ("more", "fields", etc.) now need to be always
 | 
| 
3f3d2ffb5df5
HOL/record: shared operations ("more", "fields", etc.) now need to be
 wenzelm parents: 
12564diff
changeset | 1657 | qualified) --- potential INCOMPATIBILITY; | 
| 12280 | 1658 | - removed "make_scheme" operations (use "make" with "extend") -- | 
| 1659 | INCOMPATIBILITY; | |
| 11937 | 1660 | - removed "more" class (simply use "term") -- INCOMPATIBILITY; | 
| 12253 | 1661 | - provides cases/induct rules for use with corresponding Isar | 
| 1662 | methods (for concrete records, record schemes, concrete more | |
| 12280 | 1663 | parts, and schematic more parts -- in that order); | 
| 11930 | 1664 | - internal definitions directly based on a light-weight abstract | 
| 1665 | theory of product types over typedef rather than datatype; | |
| 1666 | ||
| 13023 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1667 | * HOL: generic code generator for generating executable ML code from | 
| 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1668 | specifications; specific support for HOL constructs such as inductive | 
| 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1669 | datatypes and sets, as well as recursive functions; can be invoked | 
| 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1670 | via 'generate_code' theory section; | 
| 
f869b6822006
Added two paragraphs on "rules" method and code generator.
 berghofe parents: 
12984diff
changeset | 1671 | |
| 11933 | 1672 | * HOL: canonical cases/induct rules for n-tuples (n = 3..7); | 
| 1673 | ||
| 13824 | 1674 | * HOL: consolidated and renamed several theories. In particular: | 
| 14731 | 1675 | Ord.thy has been absorbed into HOL.thy | 
| 1676 | String.thy has been absorbed into List.thy | |
| 1677 | ||
| 11802 
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
 wenzelm parents: 
11797diff
changeset | 1678 | * HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A" | 
| 
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
 wenzelm parents: 
11797diff
changeset | 1679 | (beware of argument permutation!); | 
| 
1d5f5d2427d2
* HOL: concrete setsum syntax "\<Sum>i:A. b" == "setsum (%i. b) A"
 wenzelm parents: 
11797diff
changeset | 1680 | |
| 11657 | 1681 | * HOL: linorder_less_split superseded by linorder_cases; | 
| 1682 | ||
| 12917 | 1683 | * HOL/List: "nodups" renamed to "distinct"; | 
| 12889 | 1684 | |
| 11633 | 1685 | * HOL: added "The" definite description operator; move Hilbert's "Eps" | 
| 13824 | 1686 | to peripheral theory "Hilbert_Choice"; some INCOMPATIBILITIES: | 
| 1687 | - Ex_def has changed, now need to use some_eq_ex | |
| 11437 | 1688 | |
| 11572 | 1689 | * HOL: made split_all_tac safe; EXISTING PROOFS MAY FAIL OR LOOP, so | 
| 1690 | in this (rare) case use: | |
| 1691 | ||
| 1692 | delSWrapper "split_all_tac" | |
| 1693 |   addSbefore ("unsafe_split_all_tac", unsafe_split_all_tac)
 | |
| 1694 | ||
| 1695 | * HOL: added safe wrapper "split_conv_tac" to claset; EXISTING PROOFS | |
| 11474 | 1696 | MAY FAIL; | 
| 11361 | 1697 | |
| 11572 | 1698 | * HOL: introduced f^n = f o ... o f; warning: due to the limits of | 
| 1699 | Isabelle's type classes, ^ on functions and relations has too general | |
| 1700 | a domain, namely ('a * 'b) set and 'a => 'b; this means that it may be
 | |
| 1701 | necessary to attach explicit type constraints; | |
| 11307 | 1702 | |
| 12917 | 1703 | * HOL/Relation: the prefix name of the infix "O" has been changed from | 
| 1704 | "comp" to "rel_comp"; INCOMPATIBILITY: a few theorems have been | |
| 1705 | renamed accordingly (eg "compI" -> "rel_compI"). | |
| 12489 | 1706 | |
| 11487 
95071c9e85a3
* HOL: syntax translations now work properly with numerals and records
 wenzelm parents: 
11475diff
changeset | 1707 | * HOL: syntax translations now work properly with numerals and records | 
| 
95071c9e85a3
* HOL: syntax translations now work properly with numerals and records
 wenzelm parents: 
11475diff
changeset | 1708 | expressions; | 
| 11474 | 1709 | |
| 12457 
cbfc53e45476
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead
 wenzelm parents: 
12405diff
changeset | 1710 | * HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead | 
| 
cbfc53e45476
* HOL: bounded abstraction now uses syntax "%" / "\<lambda>" instead
 wenzelm parents: 
12405diff
changeset | 1711 | of "lam" -- INCOMPATIBILITY; | 
| 11474 | 1712 | |
| 11933 | 1713 | * HOL: got rid of some global declarations (potential INCOMPATIBILITY | 
| 1714 | for ML tools): const "()" renamed "Product_Type.Unity", type "unit" | |
| 1715 | renamed "Product_Type.unit"; | |
| 11611 | 1716 | |
| 12564 | 1717 | * HOL: renamed rtrancl_into_rtrancl2 to converse_rtrancl_into_rtrancl | 
| 1718 | ||
| 12924 | 1719 | * HOL: removed obsolete theorem "optionE" (use "option.exhaust", or | 
| 1720 | the "cases" method); | |
| 1721 | ||
| 12597 
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
 wenzelm parents: 
12587diff
changeset | 1722 | * HOL/GroupTheory: group theory examples including Sylow's theorem (by | 
| 15154 | 1723 | Florian Kammller); | 
| 12597 
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
 wenzelm parents: 
12587diff
changeset | 1724 | |
| 12608 
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
 wenzelm parents: 
12597diff
changeset | 1725 | * HOL/IMP: updated and converted to new-style theory format; several | 
| 
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
 wenzelm parents: 
12597diff
changeset | 1726 | parts turned into readable document, with proper Isar proof texts and | 
| 
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
 wenzelm parents: 
12597diff
changeset | 1727 | some explanations (by Gerwin Klein); | 
| 12597 
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
 wenzelm parents: 
12587diff
changeset | 1728 | |
| 12734 | 1729 | * HOL-Real: added Complex_Numbers (by Gertrud Bauer); | 
| 1730 | ||
| 12690 | 1731 | * HOL-Hyperreal is now a logic image; | 
| 1732 | ||
| 11611 | 1733 | |
| 12022 
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
 wenzelm parents: 
11995diff
changeset | 1734 | *** HOLCF *** | 
| 
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
 wenzelm parents: 
11995diff
changeset | 1735 | |
| 12622 | 1736 | * Isar: consts/constdefs supports mixfix syntax for continuous | 
| 1737 | operations; | |
| 1738 | ||
| 1739 | * Isar: domain package adapted to new-style theory format, e.g. see | |
| 1740 | HOLCF/ex/Dnat.thy; | |
| 1741 | ||
| 1742 | * theory Lift: proper use of rep_datatype lift instead of ML hacks -- | |
| 12280 | 1743 | potential INCOMPATIBILITY; now use plain induct_tac instead of former | 
| 1744 | lift.induct_tac, always use UU instead of Undef; | |
| 12022 
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
 wenzelm parents: 
11995diff
changeset | 1745 | |
| 12597 
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
 wenzelm parents: 
12587diff
changeset | 1746 | * HOLCF/IMP: updated and converted to new-style theory; | 
| 
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
 wenzelm parents: 
12587diff
changeset | 1747 | |
| 12022 
9c3377b133c0
HOLCF: proper rep_datatype lift (see theory Lift); use plain induct_tac
 wenzelm parents: 
11995diff
changeset | 1748 | |
| 11474 | 1749 | *** ZF *** | 
| 1750 | ||
| 12622 | 1751 | * Isar: proper integration of logic-specific tools and packages, | 
| 1752 | including theory commands '(co)inductive', '(co)datatype', | |
| 1753 | 'rep_datatype', 'inductive_cases', as well as methods 'ind_cases', | |
| 1754 | 'induct_tac', 'case_tac', and 'typecheck' (with attribute 'TC'); | |
| 1755 | ||
| 1756 | * theory Main no longer includes AC; for the Axiom of Choice, base | |
| 1757 | your theory on Main_ZFC; | |
| 1758 | ||
| 1759 | * the integer library now covers quotients and remainders, with many | |
| 1760 | laws relating division to addition, multiplication, etc.; | |
| 12563 | 1761 | |
| 12280 | 1762 | * ZF/UNITY: Chandy and Misra's UNITY is now available in ZF, giving a | 
| 1763 | typeless version of the formalism; | |
| 1764 | ||
| 13025 | 1765 | * ZF/AC, Coind, IMP, Resid: updated and converted to new-style theory | 
| 1766 | format; | |
| 12608 
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
 wenzelm parents: 
12597diff
changeset | 1767 | |
| 12280 | 1768 | * ZF/Induct: new directory for examples of inductive definitions, | 
| 12608 
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
 wenzelm parents: 
12597diff
changeset | 1769 | including theory Multiset for multiset orderings; converted to | 
| 
2df381faa787
* ZF/IMP: updated and converted to new-style theory format;
 wenzelm parents: 
12597diff
changeset | 1770 | new-style theory format; | 
| 12177 
b1c16d685a99
* ZF: new-style theory commands 'inductive', 'inductive_cases', and
 wenzelm parents: 
12163diff
changeset | 1771 | |
| 13025 | 1772 | * ZF: many new theorems about lists, ordinals, etc.; | 
| 12850 | 1773 | |
| 11474 | 1774 | |
| 1775 | *** General *** | |
| 1776 | ||
| 12280 | 1777 | * Pure/kernel: meta-level proof terms (by Stefan Berghofer); reference | 
| 1778 | variable proof controls level of detail: 0 = no proofs (only oracle | |
| 1779 | dependencies), 1 = lemma dependencies, 2 = compact proof terms; see | |
| 1780 | also ref manual for further ML interfaces; | |
| 1781 | ||
| 1782 | * Pure/axclass: removed obsolete ML interface | |
| 1783 | goal_subclass/goal_arity; | |
| 1784 | ||
| 1785 | * Pure/syntax: new token syntax "num" for plain numerals (without "#" | |
| 1786 | of "xnum"); potential INCOMPATIBILITY, since -0, -1 etc. are now | |
| 1787 | separate tokens, so expressions involving minus need to be spaced | |
| 1788 | properly; | |
| 1789 | ||
| 12312 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1790 | * Pure/syntax: support non-oriented infixes, using keyword "infix" | 
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1791 | rather than "infixl" or "infixr"; | 
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1792 | |
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1793 | * Pure/syntax: concrete syntax for dummy type variables admits genuine | 
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1794 | sort constraint specifications in type inference; e.g. "x::_::foo" | 
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1795 | ensures that the type of "x" is of sort "foo" (but not necessarily a | 
| 
f0f06950820d
* Isar/Pure: "sorry" no longer requires quick_and_dirty in interactive mode;
 wenzelm parents: 
12280diff
changeset | 1796 | type variable); | 
| 12280 | 1797 | |
| 1798 | * Pure/syntax: print modes "type_brackets" and "no_type_brackets" | |
| 1799 | control output of nested => (types); the default behavior is | |
| 1800 | "type_brackets"; | |
| 1801 | ||
| 1802 | * Pure/syntax: builtin parse translation for "_constify" turns valued | |
| 11817 | 1803 | tokens into AST constants; | 
| 11474 | 1804 | |
| 12280 | 1805 | * Pure/syntax: prefer later declarations of translations and print | 
| 1806 | translation functions; potential INCOMPATIBILITY: need to reverse | |
| 1807 | multiple declarations for same syntax element constant; | |
| 1808 | ||
| 12832 
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
 wenzelm parents: 
12777diff
changeset | 1809 | * Pure/show_hyps reset by default (in accordance to existing Isar | 
| 
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
 wenzelm parents: 
12777diff
changeset | 1810 | practice); | 
| 
c31b44286a8a
* Pure/show_hyps reset by default (in accordance to existing Isar practice);
 wenzelm parents: 
12777diff
changeset | 1811 | |
| 12280 | 1812 | * Provers/classical: renamed addaltern to addafter, addSaltern to | 
| 1813 | addSafter; | |
| 1814 | ||
| 1815 | * Provers/clasimp: ``iff'' declarations now handle conditional rules | |
| 1816 | as well; | |
| 12253 | 1817 | |
| 12538 | 1818 | * system: tested support for MacOS X; should be able to get Isabelle + | 
| 1819 | Proof General to work in a plain Terminal after installing Poly/ML | |
| 1820 | (e.g. from the Isabelle distribution area) and GNU bash alone | |
| 1821 | (e.g. from http://www.apple.com); full X11, XEmacs and X-Symbol | |
| 1822 | support requires further installations, e.g. from | |
| 1823 | http://fink.sourceforge.net/); | |
| 1824 | ||
| 12280 | 1825 | * system: support Poly/ML 4.1.1 (able to manage larger heaps); | 
| 11551 | 1826 | |
| 12753 
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
 wenzelm parents: 
12736diff
changeset | 1827 | * system: reduced base memory usage by Poly/ML (approx. 20 MB instead | 
| 
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
 wenzelm parents: 
12736diff
changeset | 1828 | of 40 MB), cf. ML_OPTIONS; | 
| 
3a62df7ae926
* system: reduced base memory usage by Poly/ML (approx. 20 MB instead
 wenzelm parents: 
12736diff
changeset | 1829 | |
| 11633 | 1830 | * system: Proof General keywords specification is now part of the | 
| 1831 | Isabelle distribution (see etc/isar-keywords.el); | |
| 1832 | ||
| 12728 | 1833 | * system: support for persistent Proof General sessions (refrain from | 
| 1834 | outdating all loaded theories on startup); user may create writable | |
| 1835 | logic images like this: ``isabelle -q HOL Test''; | |
| 12597 
14822e4436bf
HOL/IMP and HOLCF/IMP updated and converted (Gerwin Klein);
 wenzelm parents: 
12587diff
changeset | 1836 | |
| 11551 | 1837 | * system: smart selection of Isabelle process versus Isabelle | 
| 11572 | 1838 | interface, accommodates case-insensitive file systems (e.g. HFS+); may | 
| 1839 | run both "isabelle" and "Isabelle" even if file names are badly | |
| 1840 | damaged (executable inspects the case of the first letter of its own | |
| 1841 | name); added separate "isabelle-process" and "isabelle-interface"; | |
| 11551 | 1842 | |
| 12472 | 1843 | * system: refrain from any attempt at filtering input streams; no | 
| 1844 | longer support ``8bit'' encoding of old isabelle font, instead proper | |
| 1845 | iso-latin characters may now be used; the related isatools | |
| 1846 | "symbolinput" and "nonascii" have disappeared as well; | |
| 1847 | ||
| 1848 | * system: removed old "xterm" interface (the print modes "xterm" and | |
| 1849 | "xterm_color" are still available for direct use in a suitable | |
| 1850 | terminal); | |
| 1851 | ||
| 11314 | 1852 | |
| 11169 
98c2f741e32b
made split_all_tac safe introducing safe_full_simp_tac, EXISTING PROOFS MAY FAIL
 oheimb parents: 
11130diff
changeset | 1853 | |
| 11062 | 1854 | New in Isabelle99-2 (February 2001) | 
| 1855 | ----------------------------------- | |
| 1856 | ||
| 10224 | 1857 | *** Overview of INCOMPATIBILITIES *** | 
| 1858 | ||
| 11241 | 1859 | * HOL: please note that theories in the Library and elsewhere often use the | 
| 1860 | new-style (Isar) format; to refer to their theorems in an ML script you must | |
| 12622 | 1861 | bind them to ML identifers by e.g. val thm_name = thm "thm_name"; | 
| 11241 | 1862 | |
| 11043 
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
 wenzelm parents: 
11016diff
changeset | 1863 | * HOL: inductive package no longer splits induction rule aggressively, | 
| 
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
 wenzelm parents: 
11016diff
changeset | 1864 | but only as far as specified by the introductions given; the old | 
| 11130 | 1865 | format may be recovered via ML function complete_split_rule or attribute | 
| 11043 
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
 wenzelm parents: 
11016diff
changeset | 1866 | 'split_rule (complete)'; | 
| 
2e3bbac8763b
HOL: inductive package no longer splits induction rule aggressively,
 wenzelm parents: 
11016diff
changeset | 1867 | |
| 10998 | 1868 | * HOL: induct renamed to lfp_induct, lfp_Tarski to lfp_unfold, | 
| 1869 | gfp_Tarski to gfp_unfold; | |
| 10224 | 1870 | |
| 10288 | 1871 | * HOL: contrapos, contrapos2 renamed to contrapos_nn, contrapos_pp; | 
| 1872 | ||
| 10858 | 1873 | * HOL: infix "dvd" now has priority 50 rather than 70 (because it is a | 
| 1874 | relation); infix "^^" has been renamed "``"; infix "``" has been | |
| 1875 | renamed "`"; "univalent" has been renamed "single_valued"; | |
| 10793 | 1876 | |
| 10998 | 1877 | * HOL/Real: "rinv" and "hrinv" replaced by overloaded "inverse" | 
| 1878 | operation; | |
| 1879 | ||
| 10868 | 1880 | * HOLCF: infix "`" has been renamed "$"; the symbol syntax is \<cdot>; | 
| 10856 | 1881 | |
| 10391 | 1882 | * Isar: 'obtain' no longer declares "that" fact as simp/intro; | 
| 1883 | ||
| 10401 
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
 wenzelm parents: 
10391diff
changeset | 1884 | * Isar/HOL: method 'induct' now handles non-atomic goals; as a | 
| 
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
 wenzelm parents: 
10391diff
changeset | 1885 | consequence, it is no longer monotonic wrt. the local goal context | 
| 
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
 wenzelm parents: 
10391diff
changeset | 1886 | (which is now passed through the inductive cases); | 
| 
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
 wenzelm parents: 
10391diff
changeset | 1887 | |
| 10976 
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
 wenzelm parents: 
10966diff
changeset | 1888 | * Document preparation: renamed standard symbols \<ll> to \<lless> and | 
| 
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
 wenzelm parents: 
10966diff
changeset | 1889 | \<gg> to \<ggreater>; | 
| 
0e7cf6f9fa29
* Document preparation: renamed standard symbols \<ll> to \<lless> and
 wenzelm parents: 
10966diff
changeset | 1890 | |
| 10224 | 1891 | |
| 10245 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1892 | *** Document preparation *** | 
| 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1893 | |
| 10858 | 1894 | * \isabellestyle{NAME} selects version of Isabelle output (currently
 | 
| 1895 | available: are "it" for near math-mode best-style output, "sl" for | |
| 1896 | slanted text style, and "tt" for plain type-writer; if no | |
| 1897 | \isabellestyle command is given, output is according to slanted | |
| 1898 | type-writer); | |
| 1899 | ||
| 10322 
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
 wenzelm parents: 
10306diff
changeset | 1900 | * support sub/super scripts (for single symbols only), input syntax is | 
| 
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
 wenzelm parents: 
10306diff
changeset | 1901 | like this: "A\<^sup>*" or "A\<^sup>\<star>"; | 
| 
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
 wenzelm parents: 
10306diff
changeset | 1902 | |
| 10858 | 1903 | * some more standard symbols; see Appendix A of the system manual for | 
| 11062 | 1904 | the complete list of symbols defined in isabellesym.sty; | 
| 10858 | 1905 | |
| 10998 | 1906 | * improved isabelle style files; more abstract symbol implementation | 
| 1907 | (should now use \isamath{...} and \isatext{...} in custom symbol
 | |
| 1908 | definitions); | |
| 1909 | ||
| 10634 | 1910 | * antiquotation @{goals} and @{subgoals} for output of *dynamic* goals
 | 
| 1911 | state; Note that presentation of goal states does not conform to | |
| 1912 | actual human-readable proof documents. Please do not include goal | |
| 1913 | states into document output unless you really know what you are doing! | |
| 10322 
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
 wenzelm parents: 
10306diff
changeset | 1914 | |
| 11062 | 1915 | * proper indentation of antiquoted output with proportional LaTeX | 
| 1916 | fonts; | |
| 10862 | 1917 | |
| 11050 
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
 wenzelm parents: 
11043diff
changeset | 1918 | * no_document ML operator temporarily disables LaTeX document | 
| 
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
 wenzelm parents: 
11043diff
changeset | 1919 | generation; | 
| 
ac5709ac50b9
* no_document ML operator temporarily disables LaTeX document
 wenzelm parents: 
11043diff
changeset | 1920 | |
| 11062 | 1921 | * isatool unsymbolize tunes sources for plain ASCII communication; | 
| 1922 | ||
| 10322 
df38c61bf541
* support sub/super scripts (for single symbols only), input syntax is
 wenzelm parents: 
10306diff
changeset | 1923 | |
| 10306 
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
 wenzelm parents: 
10288diff
changeset | 1924 | *** Isar *** | 
| 
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
 wenzelm parents: 
10288diff
changeset | 1925 | |
| 10547 | 1926 | * Pure: Isar now suffers initial goal statements to contain unbound | 
| 1927 | schematic variables (this does not conform to actual readable proof | |
| 1928 | documents, due to unpredictable outcome and non-compositional proof | |
| 1929 | checking); users who know what they are doing may use schematic goals | |
| 1930 | for Prolog-style synthesis of proven results; | |
| 1931 | ||
| 10391 | 1932 | * Pure: assumption method (an implicit finishing) now handles actual | 
| 1933 | rules as well; | |
| 1934 | ||
| 1935 | * Pure: improved 'obtain' --- moved to Pure, insert "that" into | |
| 1936 | initial goal, declare "that" only as Pure intro (only for single | |
| 1937 | steps); the "that" rule assumption may now be involved in implicit | |
| 1938 | finishing, thus ".." becomes a feasible for trivial obtains; | |
| 1939 | ||
| 1940 | * Pure: default proof step now includes 'intro_classes'; thus trivial | |
| 1941 | instance proofs may be performed by ".."; | |
| 1942 | ||
| 1943 | * Pure: ?thesis / ?this / "..." now work for pure meta-level | |
| 1944 | statements as well; | |
| 10306 
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
 wenzelm parents: 
10288diff
changeset | 1945 | |
| 11097 | 1946 | * Pure: more robust selection of calculational rules; | 
| 1947 | ||
| 10858 | 1948 | * Pure: the builtin notion of 'finished' goal now includes the ==-refl | 
| 1949 | rule (as well as the assumption rule); | |
| 1950 | ||
| 1951 | * Pure: 'thm_deps' command visualizes dependencies of theorems and | |
| 1952 | lemmas, using the graph browser tool; | |
| 1953 | ||
| 10944 | 1954 | * Pure: predict failure of "show" in interactive mode; | 
| 1955 | ||
| 11016 
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
 wenzelm parents: 
10998diff
changeset | 1956 | * Pure: 'thms_containing' now takes actual terms as arguments; | 
| 
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
 wenzelm parents: 
10998diff
changeset | 1957 | |
| 10401 
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
 wenzelm parents: 
10391diff
changeset | 1958 | * HOL: improved method 'induct' --- now handles non-atomic goals | 
| 
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
 wenzelm parents: 
10391diff
changeset | 1959 | (potential INCOMPATIBILITY); tuned error handling; | 
| 
58bb50f69497
* Isar/HOL: method 'induct' now handles non-atomic goals; as a
 wenzelm parents: 
10391diff
changeset | 1960 | |
| 10557 | 1961 | * HOL: cases and induct rules now provide explicit hints about the | 
| 10547 | 1962 | number of facts to be consumed (0 for "type" and 1 for "set" rules); | 
| 1963 | any remaining facts are inserted into the goal verbatim; | |
| 1964 | ||
| 10858 | 1965 | * HOL: local contexts (aka cases) may now contain term bindings as | 
| 1966 | well; the 'cases' and 'induct' methods new provide a ?case binding for | |
| 1967 | the result to be shown in each case; | |
| 1968 | ||
| 10770 | 1969 | * HOL: added 'recdef_tc' command; | 
| 1970 | ||
| 11016 
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
 wenzelm parents: 
10998diff
changeset | 1971 | * isatool convert assists in eliminating legacy ML scripts; | 
| 
8f8ba41a5e7a
* Pure: 'thms_containing' now takes actual terms as arguments;
 wenzelm parents: 
10998diff
changeset | 1972 | |
| 10306 
b0ab988a27a9
* HOL: default proof step now includes 'intro_classes';
 wenzelm parents: 
10288diff
changeset | 1973 | |
| 10245 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1974 | *** HOL *** | 
| 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1975 | |
| 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1976 | * HOL/Library: a collection of generic theories to be used together | 
| 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1977 | with main HOL; the theory loader path already includes this directory | 
| 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1978 | by default; the following existing theories have been moved here: | 
| 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1979 | HOL/Induct/Multiset, HOL/Induct/Acc (as Accessible_Part), HOL/While | 
| 10337 | 1980 | (as While_Combinator), HOL/Lex/Prefix (as List_Prefix); | 
| 10245 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 1981 | |
| 10966 | 1982 | * HOL/Unix: "Some aspects of Unix file-system security", a typical | 
| 1983 | modelling and verification task performed in Isabelle/HOL + | |
| 1984 | Isabelle/Isar + Isabelle document preparation (by Markus Wenzel). | |
| 1985 | ||
| 11094 | 1986 | * HOL/Algebra: special summation operator SUM no longer exists, it has | 
| 1987 | been replaced by setsum; infix 'assoc' now has priority 50 (like | |
| 1988 | 'dvd'); axiom 'one_not_zero' has been moved from axclass 'ring' to | |
| 1989 | 'domain', this makes the theory consistent with mathematical | |
| 1990 | literature; | |
| 1991 | ||
| 10514 | 1992 | * HOL basics: added overloaded operations "inverse" and "divide" | 
| 10726 | 1993 | (infix "/"), syntax for generic "abs" operation, generic summation | 
| 11094 | 1994 | operator \<Sum>; | 
| 10452 
abeefb0a79ae
* added overloaded operations "inverse" and "divide" (infix "/");
 wenzelm parents: 
10428diff
changeset | 1995 | |
| 10391 | 1996 | * HOL/typedef: simplified package, provide more useful rules (see also | 
| 1997 | HOL/subset.thy); | |
| 1998 | ||
| 10915 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 1999 | * HOL/datatype: induction rule for arbitrarily branching datatypes is | 
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2000 | now expressed as a proper nested rule (old-style tactic scripts may | 
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2001 | require atomize_strip_tac to cope with non-atomic premises); | 
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2002 | |
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2003 | * HOL: renamed theory "Prod" to "Product_Type", renamed "split" rule | 
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2004 | to "split_conv" (old name still available for compatibility); | 
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2005 | |
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2006 | * HOL: improved concrete syntax for strings (e.g. allows translation | 
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2007 | rules with string literals); | 
| 
6b66a8a530ce
* HOL/datatype: induction rule for arbitrarily branching datatypes is
 wenzelm parents: 
10868diff
changeset | 2008 | |
| 12245 | 2009 | * HOL-Real-Hyperreal: this extends HOL-Real with the hyperreals | 
| 2010 | and Fleuriot's mechanization of analysis, including the transcendental | |
| 2011 | functions for the reals; | |
| 10756 | 2012 | |
| 11094 | 2013 | * HOL/Real, HOL/Hyperreal: improved arithmetic simplification; | 
| 10391 | 2014 | |
| 10858 | 2015 | |
| 10474 | 2016 | *** CTT *** | 
| 2017 | ||
| 10547 | 2018 | * CTT: x-symbol support for Pi, Sigma, -->, : (membership); note that | 
| 2019 | "lam" is displayed as TWO lambda-symbols | |
| 10474 | 2020 | |
| 10547 | 2021 | * CTT: theory Main now available, containing everything (that is, Bool | 
| 2022 | and Arith); | |
| 2023 | ||
| 10474 | 2024 | |
| 10391 | 2025 | *** General *** | 
| 2026 | ||
| 10547 | 2027 | * Pure: the Simplifier has been implemented properly as a derived rule | 
| 2028 | outside of the actual kernel (at last!); the overall performance | |
| 2029 | penalty in practical applications is about 50%, while reliability of | |
| 2030 | the Isabelle inference kernel has been greatly improved; | |
| 2031 | ||
| 11112 | 2032 | * print modes "brackets" and "no_brackets" control output of nested => | 
| 2033 | (types) and ==> (props); the default behaviour is "brackets"; | |
| 2034 | ||
| 10391 | 2035 | * Provers: fast_tac (and friends) now handle actual object-logic rules | 
| 2036 | as assumptions as well; | |
| 2037 | ||
| 11124 | 2038 | * system: support Poly/ML 4.0; | 
| 2039 | ||
| 2040 | * system: isatool install handles KDE version 1 or 2; | |
| 2041 | ||
| 10391 | 2042 | |
| 10245 
87771e2f49fe
* HOL/Library: a collection of generic theories to be used together
 wenzelm parents: 
10224diff
changeset | 2043 | |
| 10103 | 2044 | New in Isabelle99-1 (October 2000) | 
| 2045 | ---------------------------------- | |
| 8015 | 2046 | |
| 10003 | 2047 | *** Overview of INCOMPATIBILITIES *** | 
| 8014 | 2048 | |
| 8848 | 2049 | * HOL: simplification of natural numbers is much changed; to partly | 
| 2050 | recover the old behaviour (e.g. to prevent n+n rewriting to #2*n) | |
| 2051 | issue the following ML commands: | |
| 2052 | ||
| 2053 | Delsimprocs Nat_Numeral_Simprocs.cancel_numerals; | |
| 2054 | Delsimprocs [Nat_Numeral_Simprocs.combine_numerals]; | |
| 8788 | 2055 | |
| 10129 | 2056 | * HOL: simplification no longer dives into case-expressions; this is | 
| 2057 | controlled by "t.weak_case_cong" for each datatype t; | |
| 10003 | 2058 | |
| 2059 | * HOL: nat_less_induct renamed to less_induct; | |
| 2060 | ||
| 2061 | * HOL: systematic renaming of the SOME (Eps) rules, may use isatool | |
| 2062 | fixsome to patch .thy and .ML sources automatically; | |
| 8967 | 2063 | |
| 10003 | 2064 | select_equality -> some_equality | 
| 2065 | select_eq_Ex -> some_eq_ex | |
| 2066 | selectI2EX -> someI2_ex | |
| 2067 | selectI2 -> someI2 | |
| 2068 | selectI -> someI | |
| 2069 | select1_equality -> some1_equality | |
| 2070 | Eps_sym_eq -> some_sym_eq_trivial | |
| 2071 | Eps_eq -> some_eq_trivial | |
| 2072 | ||
| 2073 | * HOL: exhaust_tac on datatypes superceded by new generic case_tac; | |
| 2074 | ||
| 2075 | * HOL: removed obsolete theorem binding expand_if (refer to split_if | |
| 2076 | instead); | |
| 2077 | ||
| 2078 | * HOL: the recursion equations generated by 'recdef' are now called | |
| 2079 | f.simps instead of f.rules; | |
| 2080 | ||
| 2081 | * HOL: qed_spec_mp now also handles bounded ALL as well; | |
| 2082 | ||
| 2083 | * HOL: 0 is now overloaded, so the type constraint ":: nat" may | |
| 2084 | sometimes be needed; | |
| 2085 | ||
| 2086 | * HOL: the constant for "f``x" is now "image" rather than "op ``"; | |
| 8014 | 2087 | |
| 10065 | 2088 | * HOL: the constant for "f-``x" is now "vimage" rather than "op -``"; | 
| 2089 | ||
| 9330 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2090 | * HOL: the disjoint sum is now "<+>" instead of "Plus"; the cartesian | 
| 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2091 | product is now "<*>" instead of "Times"; the lexicographic product is | 
| 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2092 | now "<*lex*>" instead of "**"; | 
| 8705 | 2093 | |
| 10003 | 2094 | * HOL: theory Sexp is now in HOL/Induct examples (it used to be part | 
| 2095 | of main HOL, but was unused); better use HOL's datatype package; | |
| 9971 | 2096 | |
| 10137 
d1c2bef01e2f
removed "symbols" syntax for constant "override";
 wenzelm parents: 
10129diff
changeset | 2097 | * HOL: removed "symbols" syntax for constant "override" of theory Map; | 
| 
d1c2bef01e2f
removed "symbols" syntax for constant "override";
 wenzelm parents: 
10129diff
changeset | 2098 | the old syntax may be recovered as follows: | 
| 
d1c2bef01e2f
removed "symbols" syntax for constant "override";
 wenzelm parents: 
10129diff
changeset | 2099 | |
| 
d1c2bef01e2f
removed "symbols" syntax for constant "override";
 wenzelm parents: 
10129diff
changeset | 2100 | syntax (symbols) | 
| 
d1c2bef01e2f
removed "symbols" syntax for constant "override";
 wenzelm parents: 
10129diff
changeset | 2101 |     override  :: "('a ~=> 'b) => ('a ~=> 'b) => ('a ~=> 'b)"
 | 
| 
d1c2bef01e2f
removed "symbols" syntax for constant "override";
 wenzelm parents: 
10129diff
changeset | 2102 | (infixl "\\<oplus>" 100) | 
| 
d1c2bef01e2f
removed "symbols" syntax for constant "override";
 wenzelm parents: 
10129diff
changeset | 2103 | |
| 8848 | 2104 | * HOL/Real: "rabs" replaced by overloaded "abs" function; | 
| 2105 | ||
| 8887 
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
 wenzelm parents: 
8848diff
changeset | 2106 | * HOL/ML: even fewer consts are declared as global (see theories Ord, | 
| 
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
 wenzelm parents: 
8848diff
changeset | 2107 | Lfp, Gfp, WF); this only affects ML packages that refer to const names | 
| 
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
 wenzelm parents: 
8848diff
changeset | 2108 | internally; | 
| 
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
 wenzelm parents: 
8848diff
changeset | 2109 | |
| 10003 | 2110 | * HOL and ZF: syntax for quotienting wrt an equivalence relation | 
| 2111 | changed from A/r to A//r; | |
| 9908 | 2112 | |
| 10003 | 2113 | * ZF: new treatment of arithmetic (nat & int) may break some old | 
| 2114 | proofs; | |
| 8921 
7c04c98132c4
* Pure: changed syntax of local blocks from {{ }} to { };
 wenzelm parents: 
8887diff
changeset | 2115 | |
| 10003 | 2116 | * Isar: renamed some attributes (RS -> THEN, simplify -> simplified, | 
| 2117 | rulify -> rule_format, elimify -> elim_format, ...); | |
| 9542 | 2118 | |
| 9941 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2119 | * Isar/Provers: intro/elim/dest attributes changed; renamed | 
| 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2120 | intro/intro!/intro!! flags to intro!/intro/intro? (in most cases, one | 
| 9937 | 2121 | should have to change intro!! to intro? only); replaced "delrule" by | 
| 2122 | "rule del"; | |
| 9437 
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
 wenzelm parents: 
9402diff
changeset | 2123 | |
| 9612 | 2124 | * Isar/HOL: renamed "intrs" to "intros" in inductive definitions; | 
| 2125 | ||
| 9437 
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
 wenzelm parents: 
9402diff
changeset | 2126 | * Provers: strengthened force_tac by using new first_best_tac; | 
| 9402 | 2127 | |
| 10003 | 2128 | * LaTeX document preparation: several changes of isabelle.sty (see | 
| 2129 | lib/texinputs); | |
| 8729 
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
 wenzelm parents: 
8705diff
changeset | 2130 | |
| 8014 | 2131 | |
| 8487 | 2132 | *** Document preparation *** | 
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2133 | |
| 9198 
0ab3c81e9425
* formal comments (text blocks etc.) in new-style theories may now
 wenzelm parents: 
9185diff
changeset | 2134 | * formal comments (text blocks etc.) in new-style theories may now | 
| 9753 | 2135 | contain antiquotations of thm/prop/term/typ/text to be presented | 
| 2136 | according to latex print mode; concrete syntax is like this: | |
| 2137 | @{term[show_types] "f(x) = a + x"};
 | |
| 9198 
0ab3c81e9425
* formal comments (text blocks etc.) in new-style theories may now
 wenzelm parents: 
9185diff
changeset | 2138 | |
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2139 | * isatool mkdir provides easy setup of Isabelle session directories, | 
| 8518 | 2140 | including proper document sources; | 
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2141 | |
| 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2142 | * generated LaTeX sources are now deleted after successful run | 
| 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2143 | (isatool document -c); may retain a copy somewhere else via -D option | 
| 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2144 | of isatool usedir; | 
| 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2145 | |
| 8566 | 2146 | * isatool usedir -D now lets isatool latex -o sty update the Isabelle | 
| 10003 | 2147 | style files, achieving self-contained LaTeX sources and simplifying | 
| 2148 | LaTeX debugging; | |
| 8566 | 2149 | |
| 8518 | 2150 | * old-style theories now produce (crude) LaTeX output as well; | 
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2151 | |
| 9057 
af1ca1acf292
* browser info session directories are now self-contained (may be put
 wenzelm parents: 
9052diff
changeset | 2152 | * browser info session directories are now self-contained (may be put | 
| 9437 
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
 wenzelm parents: 
9402diff
changeset | 2153 | on WWW server seperately); improved graphs of nested sessions; removed | 
| 
93e91040c286
* Isar/Provers: intro/elim/dest attributes: changed
 wenzelm parents: 
9402diff
changeset | 2154 | graph for 'all sessions'; | 
| 9057 
af1ca1acf292
* browser info session directories are now self-contained (may be put
 wenzelm parents: 
9052diff
changeset | 2155 | |
| 10003 | 2156 | * several improvements in isabelle style files; \isabellestyle{it}
 | 
| 2157 | produces fake math mode output; \isamarkupheader is now \section by | |
| 2158 | default; see lib/texinputs/isabelle.sty etc.; | |
| 9489 
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
 wenzelm parents: 
9457diff
changeset | 2159 | |
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2160 | |
| 8184 | 2161 | *** Isar *** | 
| 2162 | ||
| 10003 | 2163 | * Isar/Pure: local results and corresponding term bindings are now | 
| 2164 | subject to Hindley-Milner polymorphism (similar to ML); this | |
| 2165 | accommodates incremental type-inference very nicely; | |
| 8283 
0a319c5746eb
* Pure now provides its own version of intro/elim/dest attributes;
 wenzelm parents: 
8271diff
changeset | 2166 | |
| 10003 | 2167 | * Isar/Pure: new derived language element 'obtain' supports | 
| 2168 | generalized existence reasoning; | |
| 8621 
8ba0f90f6f35
* Isar/Pure: local results and corresponding term bindings are now
 wenzelm parents: 
8603diff
changeset | 2169 | |
| 10003 | 2170 | * Isar/Pure: new calculational elements 'moreover' and 'ultimately' | 
| 2171 | support accumulation of results, without applying any rules yet; | |
| 2172 | useful to collect intermediate results without explicit name | |
| 2173 | references, and for use with transitivity rules with more than 2 | |
| 2174 | premises; | |
| 8184 | 2175 | |
| 10003 | 2176 | * Isar/Pure: scalable support for case-analysis type proofs: new | 
| 2177 | 'case' language element refers to local contexts symbolically, as | |
| 2178 | produced by certain proof methods; internally, case names are attached | |
| 2179 | to theorems as "tags"; | |
| 8440 
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
 wenzelm parents: 
8425diff
changeset | 2180 | |
| 10003 | 2181 | * Isar/Pure: theory command 'hide' removes declarations from | 
| 9330 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2182 | class/type/const name spaces; | 
| 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2183 | |
| 10003 | 2184 | * Isar/Pure: theory command 'defs' supports option "(overloaded)" to | 
| 9330 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2185 | indicate potential overloading; | 
| 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2186 | |
| 10003 | 2187 | * Isar/Pure: changed syntax of local blocks from {{ }} to { };
 | 
| 8621 
8ba0f90f6f35
* Isar/Pure: local results and corresponding term bindings are now
 wenzelm parents: 
8603diff
changeset | 2188 | |
| 10003 | 2189 | * Isar/Pure: syntax of sorts made 'inner', i.e. have to write | 
| 2190 | "{a,b,c}" instead of {a,b,c};
 | |
| 9011 
0cfc347f8d19
Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms to
 wenzelm parents: 
8994diff
changeset | 2191 | |
| 10003 | 2192 | * Isar/Pure now provides its own version of intro/elim/dest | 
| 2193 | attributes; useful for building new logics, but beware of confusion | |
| 2194 | with the version in Provers/classical; | |
| 9612 | 2195 | |
| 10003 | 2196 | * Isar/Pure: the local context of (non-atomic) goals is provided via | 
| 2197 | case name 'antecedent'; | |
| 8440 
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
 wenzelm parents: 
8425diff
changeset | 2198 | |
| 10003 | 2199 | * Isar/Pure: removed obsolete 'transfer' attribute (transfer of thms | 
| 2200 | to the current context is now done automatically); | |
| 9383 
c21fa1c48de0
* HOL: removed obsolete expand_if = split_if; theorems if_splits =
 wenzelm parents: 
9349diff
changeset | 2201 | |
| 10003 | 2202 | * Isar/Pure: theory command 'method_setup' provides a simple interface | 
| 2203 | for definining proof methods in ML; | |
| 9612 | 2204 | |
| 10003 | 2205 | * Isar/Provers: intro/elim/dest attributes changed; renamed | 
| 9941 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2206 | intro/intro!/intro!! flags to intro!/intro/intro? (INCOMPATIBILITY, in | 
| 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2207 | most cases, one should have to change intro!! to intro? only); | 
| 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2208 | replaced "delrule" by "rule del"; | 
| 8283 
0a319c5746eb
* Pure now provides its own version of intro/elim/dest attributes;
 wenzelm parents: 
8271diff
changeset | 2209 | |
| 10003 | 2210 | * Isar/Provers: new 'hypsubst' method, plain 'subst' method and | 
| 2211 | 'symmetric' attribute (the latter supercedes [RS sym]); | |
| 2212 | ||
| 2213 | * Isar/Provers: splitter support (via 'split' attribute and 'simp' | |
| 2214 | method modifier); 'simp' method: 'only:' modifier removes loopers as | |
| 2215 | well (including splits); | |
| 2216 | ||
| 2217 | * Isar/Provers: Simplifier and Classical methods now support all kind | |
| 2218 | of modifiers used in the past, including 'cong', 'iff', etc. | |
| 2219 | ||
| 2220 | * Isar/Provers: added 'fastsimp' and 'clarsimp' methods (combination | |
| 2221 | of Simplifier and Classical reasoner); | |
| 2222 | ||
| 2223 | * Isar/HOL: new proof method 'cases' and improved version of 'induct' | |
| 2224 | now support named cases; major packages (inductive, datatype, primrec, | |
| 2225 | recdef) support case names and properly name parameters; | |
| 9612 | 2226 | |
| 10003 | 2227 | * Isar/HOL: new transitivity rules for substitution in inequalities -- | 
| 2228 | monotonicity conditions are extracted to be proven at end of | |
| 2229 | calculations; | |
| 2230 | ||
| 2231 | * Isar/HOL: removed 'case_split' thm binding, should use 'cases' proof | |
| 2232 | method anyway; | |
| 2233 | ||
| 2234 | * Isar/HOL: removed old expand_if = split_if; theorems if_splits = | |
| 2235 | split_if split_if_asm; datatype package provides theorems foo.splits = | |
| 2236 | foo.split foo.split_asm for each datatype; | |
| 2237 | ||
| 2238 | * Isar/HOL: tuned inductive package, rename "intrs" to "intros" | |
| 2239 | (potential INCOMPATIBILITY), emulation of mk_cases feature for proof | |
| 2240 | scripts: new 'inductive_cases' command and 'ind_cases' method; (Note: | |
| 2241 | use "(cases (simplified))" method in proper proof texts); | |
| 2242 | ||
| 2243 | * Isar/HOL: added global 'arith_split' attribute for 'arith' method; | |
| 2244 | ||
| 2245 | * Isar: names of theorems etc. may be natural numbers as well; | |
| 2246 | ||
| 2247 | * Isar: 'pr' command: optional arguments for goals_limit and | |
| 9724 
2030c5d63741
* 'pr' command: optional argument for ProofContext.prems_limit;
 wenzelm parents: 
9709diff
changeset | 2248 | ProofContext.prems_limit; no longer prints theory contexts, but only | 
| 
2030c5d63741
* 'pr' command: optional argument for ProofContext.prems_limit;
 wenzelm parents: 
9709diff
changeset | 2249 | proof states; | 
| 8487 | 2250 | |
| 10003 | 2251 | * Isar: diagnostic commands 'pr', 'thm', 'prop', 'term', 'typ' admit | 
| 8518 | 2252 | additional print modes to be specified; e.g. "pr(latex)" will print | 
| 2253 | proof state according to the Isabelle LaTeX style; | |
| 8487 | 2254 | |
| 10003 | 2255 | * Isar: improved support for emulating tactic scripts, including proof | 
| 9612 | 2256 | methods 'rule_tac' etc., 'cut_tac', 'thin_tac', 'subgoal_tac', | 
| 2257 | 'rename_tac', 'rotate_tac', 'tactic', and 'case_tac' / 'induct_tac' | |
| 2258 | (for HOL datatypes); | |
| 8534 | 2259 | |
| 10003 | 2260 | * Isar: simplified (more robust) goal selection of proof methods: 1st | 
| 2261 | goal, all goals, or explicit goal specifier (tactic emulation); thus | |
| 2262 | 'proof method scripts' have to be in depth-first order; | |
| 8673 
987ea1a559d0
Isar: simplified (more robust) goal selection of proof methods;
 wenzelm parents: 
8655diff
changeset | 2263 | |
| 10003 | 2264 | * Isar: tuned 'let' syntax: replaced 'as' keyword by 'and'; | 
| 8729 
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
 wenzelm parents: 
8705diff
changeset | 2265 | |
| 10003 | 2266 | * Isar: removed 'help' command, which hasn't been too helpful anyway; | 
| 2267 | should instead use individual commands for printing items | |
| 2268 | (print_commands, print_methods etc.); | |
| 9224 
0da360494917
* Isar: removed 'help' command, which hasn't been too helpful anyway;
 wenzelm parents: 
9198diff
changeset | 2269 | |
| 10003 | 2270 | * Isar: added 'nothing' --- the empty list of theorems; | 
| 9239 | 2271 | |
| 8184 | 2272 | |
| 8014 | 2273 | *** HOL *** | 
| 2274 | ||
| 10080 | 2275 | * HOL/MicroJava: formalization of a fragment of Java, together with a | 
| 2276 | corresponding virtual machine and a specification of its bytecode | |
| 2277 | verifier and a lightweight bytecode verifier, including proofs of | |
| 2278 | type-safety; by Gerwin Klein, Tobias Nipkow, David von Oheimb, and | |
| 2279 | Cornelia Pusch (see also the homepage of project Bali at | |
| 2280 | http://isabelle.in.tum.de/Bali/); | |
| 2281 | ||
| 8518 | 2282 | * HOL/Algebra: new theory of rings and univariate polynomials, by | 
| 2283 | Clemens Ballarin; | |
| 8014 | 2284 | |
| 10157 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2285 | * HOL/NumberTheory: fundamental Theorem of Arithmetic, Chinese | 
| 10003 | 2286 | Remainder Theorem, Fermat/Euler Theorem, Wilson's Theorem, by Thomas M | 
| 2287 | Rasmussen; | |
| 8570 | 2288 | |
| 10157 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2289 | * HOL/Lattice: fundamental concepts of lattice theory and order | 
| 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2290 | structures, including duals, properties of bounds versus algebraic | 
| 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2291 | laws, lattice operations versus set-theoretic ones, the Knaster-Tarski | 
| 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2292 | Theorem for complete lattices etc.; may also serve as a demonstration | 
| 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2293 | for abstract algebraic reasoning using axiomatic type classes, and | 
| 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2294 | mathematics-style proof in Isabelle/Isar; by Markus Wenzel; | 
| 
6d3987f3aad9
* HOL/Lattice: fundamental concepts of lattice theory and order structures;
 wenzelm parents: 
10137diff
changeset | 2295 | |
| 10003 | 2296 | * HOL/Prolog: a (bare-bones) implementation of Lambda-Prolog, by David | 
| 2297 | von Oheimb; | |
| 9542 | 2298 | |
| 10164 
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
 wenzelm parents: 
10157diff
changeset | 2299 | * HOL/IMPP: extension of IMP with local variables and mutually | 
| 
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
 wenzelm parents: 
10157diff
changeset | 2300 | recursive procedures, by David von Oheimb; | 
| 
c240747082aa
* HOL/IMPP: extension of IMP with local variables and mutually
 wenzelm parents: 
10157diff
changeset | 2301 | |
| 10003 | 2302 | * HOL/Lambda: converted into new-style theory and document; | 
| 9542 | 2303 | |
| 10003 | 2304 | * HOL/ex/Multiquote: example of multiple nested quotations and | 
| 2305 | anti-quotations -- basically a generalized version of de-Bruijn | |
| 2306 | representation; very useful in avoiding lifting of operations; | |
| 8848 | 2307 | |
| 9612 | 2308 | * HOL/record: added general record equality rule to simpset; fixed | 
| 2309 | select-update simplification procedure to handle extended records as | |
| 2310 | well; admit "r" as field name; | |
| 9542 | 2311 | |
| 8967 | 2312 | * HOL: 0 is now overloaded over the new sort "zero", allowing its use with | 
| 2313 | other numeric types and also as the identity of groups, rings, etc.; | |
| 2314 | ||
| 2315 | * HOL: new axclass plus_ac0 for addition with the AC-laws and 0 as identity. | |
| 2316 | Types nat and int belong to this axclass; | |
| 2317 | ||
| 10003 | 2318 | * HOL: greatly improved simplification involving numerals of type nat, int, real: | 
| 8788 | 2319 | (i + #8 + j) = Suc k simplifies to #7 + (i + j) = k | 
| 8832 | 2320 | i*j + k + j*#3*i simplifies to #4*(i*j) + k | 
| 2321 | two terms #m*u and #n*u are replaced by #(m+n)*u | |
| 2322 | (where #m, #n and u can implicitly be 1; this is simproc combine_numerals) | |
| 2323 | and the term/formula #m*u+x ~~ #n*u+y simplifies simplifies to #(m-n)+x ~~ y | |
| 2324 | or x ~~ #(n-m)+y, where ~~ is one of = < <= or - (simproc cancel_numerals); | |
| 8736 | 2325 | |
| 10003 | 2326 | * HOL: meson_tac is available (previously in ex/meson.ML); it is a | 
| 2327 | powerful prover for predicate logic but knows nothing of clasets; see | |
| 2328 | ex/mesontest.ML and ex/mesontest2.ML for example applications; | |
| 9835 | 2329 | |
| 8848 | 2330 | * HOL: new version of "case_tac" subsumes both boolean case split and | 
| 8440 
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
 wenzelm parents: 
8425diff
changeset | 2331 | "exhaust_tac" on datatypes; INCOMPATIBILITY: exhaust_tac no longer | 
| 8518 | 2332 | exists, may define val exhaust_tac = case_tac for ad-hoc portability; | 
| 8440 
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
 wenzelm parents: 
8425diff
changeset | 2333 | |
| 8848 | 2334 | * HOL: simplification no longer dives into case-expressions: only the | 
| 10129 | 2335 | selector expression is simplified, but not the remaining arms; to | 
| 2336 | enable full simplification of case-expressions for datatype t, you may | |
| 2337 | remove t.weak_case_cong from the simpset, either globally (Delcongs | |
| 2338 | [thm"t.weak_case_cong"];) or locally (delcongs [...]). | |
| 8603 | 2339 | |
| 8848 | 2340 | * HOL/recdef: the recursion equations generated by 'recdef' for | 
| 2341 | function 'f' are now called f.simps instead of f.rules; if all | |
| 2342 | termination conditions are proved automatically, these simplification | |
| 2343 | rules are added to the simpset, as in primrec; rules may be named | |
| 2344 | individually as well, resulting in a separate list of theorems for | |
| 2345 | each equation; | |
| 2346 | ||
| 9489 
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
 wenzelm parents: 
9457diff
changeset | 2347 | * HOL/While is a new theory that provides a while-combinator. It | 
| 
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
 wenzelm parents: 
9457diff
changeset | 2348 | permits the definition of tail-recursive functions without the | 
| 
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
 wenzelm parents: 
9457diff
changeset | 2349 | provision of a termination measure. The latter is necessary once the | 
| 
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
 wenzelm parents: 
9457diff
changeset | 2350 | invariant proof rule for while is applied. | 
| 9457 | 2351 | |
| 10003 | 2352 | * HOL: new (overloaded) notation for the set of elements below/above | 
| 2353 | some element: {..u}, {..u(}, {l..}, {)l..}. See theory SetInterval.
 | |
| 8925 | 2354 | |
| 8848 | 2355 | * HOL: theorems impI, allI, ballI bound as "strip"; | 
| 2356 | ||
| 10003 | 2357 | * HOL: new tactic induct_thm_tac: thm -> string -> int -> tactic | 
| 9746 | 2358 | induct_tac th "x1 ... xn" expects th to have a conclusion of the form | 
| 2359 | P v1 ... vn and abbreviates res_inst_tac [("v1","x1"),...,("vn","xn")] th;
 | |
| 2360 | ||
| 10003 | 2361 | * HOL/Real: "rabs" replaced by overloaded "abs" function; | 
| 9737 | 2362 | |
| 10003 | 2363 | * HOL: theory Sexp now in HOL/Induct examples (it used to be part of | 
| 2364 | main HOL, but was unused); | |
| 8626 | 2365 | |
| 10003 | 2366 | * HOL: fewer consts declared as global (e.g. have to refer to | 
| 2367 | "Lfp.lfp" instead of "lfp" internally; affects ML packages only); | |
| 8887 
c0c583ce0b0b
* HOL/ML: even fewer consts are declared as global (see theories Ord,
 wenzelm parents: 
8848diff
changeset | 2368 | |
| 10003 | 2369 | * HOL: tuned AST representation of nested pairs, avoiding bogus output | 
| 2370 | in case of overlap with user translations (e.g. judgements over | |
| 2371 | tuples); (note that the underlying logical represenation is still | |
| 2372 | bogus); | |
| 9349 
d43669fb423d
* tuned AST representation of nested pairs, avoiding bogus output in
 wenzelm parents: 
9335diff
changeset | 2373 | |
| 8412 | 2374 | |
| 9542 | 2375 | *** ZF *** | 
| 2376 | ||
| 10003 | 2377 | * ZF: simplification automatically cancels common terms in arithmetic | 
| 2378 | expressions over nat and int; | |
| 9542 | 2379 | |
| 10003 | 2380 | * ZF: new treatment of nat to minimize type-checking: all operators | 
| 2381 | coerce their operands to a natural number using the function natify, | |
| 2382 | making the algebraic laws unconditional; | |
| 9542 | 2383 | |
| 10003 | 2384 | * ZF: as above, for int: operators coerce their operands to an integer | 
| 2385 | using the function intify; | |
| 9542 | 2386 | |
| 10003 | 2387 | * ZF: the integer library now contains many of the usual laws for the | 
| 2388 | orderings, including $<=, and monotonicity laws for $+ and $*; | |
| 9542 | 2389 | |
| 10003 | 2390 | * ZF: new example ZF/ex/NatSum to demonstrate integer arithmetic | 
| 2391 | simplification; | |
| 9388 | 2392 | |
| 10003 | 2393 | * FOL and ZF: AddIffs now available, giving theorems of the form P<->Q | 
| 2394 | to the simplifier and classical reasoner simultaneously; | |
| 9388 | 2395 | |
| 2396 | ||
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2397 | *** General *** | 
| 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2398 | |
| 10003 | 2399 | * Provers: blast_tac now handles actual object-logic rules as | 
| 2400 | assumptions; note that auto_tac uses blast_tac internally as well; | |
| 2401 | ||
| 2402 | * Provers: new functions rulify/rulify_no_asm: thm -> thm for turning | |
| 2403 | outer -->/All/Ball into ==>/!!; qed_spec_mp now uses rulify_no_asm; | |
| 2404 | ||
| 9941 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2405 | * Provers: delrules now handles destruct rules as well (no longer need | 
| 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2406 | explicit make_elim); | 
| 
fe05af7ec816
renamed atts: rulify to rule_format, elimify to elim_format;
 wenzelm parents: 
9937diff
changeset | 2407 | |
| 10003 | 2408 | * Provers: Blast_tac now warns of and ignores "weak elimination rules" e.g. | 
| 2409 | [| inj ?f; ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W | |
| 2410 | use instead the strong form, | |
| 2411 | [| inj ?f; ~ ?W ==> ?f ?x = ?f ?y; ?x = ?y ==> ?W |] ==> ?W | |
| 2412 | in HOL, FOL and ZF the function cla_make_elim will create such rules | |
| 2413 | from destruct-rules; | |
| 9489 
aa757b35b129
* blast(_tac) now handles actual object-logic rules as assumptions;
 wenzelm parents: 
9457diff
changeset | 2414 | |
| 9709 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2415 | * Provers: Simplifier.easy_setup provides a fast path to basic | 
| 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2416 | Simplifier setup for new object-logics; | 
| 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2417 | |
| 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2418 | * Pure: AST translation rules no longer require constant head on LHS; | 
| 9349 
d43669fb423d
* tuned AST representation of nested pairs, avoiding bogus output in
 wenzelm parents: 
9335diff
changeset | 2419 | |
| 9709 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2420 | * Pure: improved name spaces: ambiguous output is qualified; support | 
| 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2421 | for hiding of names; | 
| 8729 
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
 wenzelm parents: 
8705diff
changeset | 2422 | |
| 10003 | 2423 | * system: smart setup of canonical ML_HOME, ISABELLE_INTERFACE, and | 
| 2424 | XSYMBOL_HOME; no longer need to do manual configuration in most | |
| 2425 | situations; | |
| 2426 | ||
| 9709 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2427 | * system: compression of ML heaps images may now be controlled via -c | 
| 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2428 | option of isabelle and isatool usedir (currently only observed by | 
| 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2429 | Poly/ML); | 
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2430 | |
| 9981 
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
 wenzelm parents: 
9971diff
changeset | 2431 | * system: isatool installfonts may handle X-Symbol fonts as well (very | 
| 
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
 wenzelm parents: 
9971diff
changeset | 2432 | useful for remote X11); | 
| 
01a0c4772c18
system: isatool installfonts may handle X-Symbol fonts as well;
 wenzelm parents: 
9971diff
changeset | 2433 | |
| 9709 
2d0ee9612ef1
* Isar/Provers: 'simp' method now supports 'cong' modifiers;
 wenzelm parents: 
9701diff
changeset | 2434 | * system: provide TAGS file for Isabelle sources; | 
| 9052 | 2435 | |
| 9288 
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
 wenzelm parents: 
9239diff
changeset | 2436 | * ML: infix 'OF' is a version of 'MRS' with more appropriate argument | 
| 
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
 wenzelm parents: 
9239diff
changeset | 2437 | order; | 
| 
06a55195741b
infix 'OF' is a version of 'MRS' with more appropriate argument order;
 wenzelm parents: 
9239diff
changeset | 2438 | |
| 8994 
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
 wenzelm parents: 
8991diff
changeset | 2439 | * ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global | 
| 
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
 wenzelm parents: 
8991diff
changeset | 2440 | timing flag supersedes proof_timing and Toplevel.trace; | 
| 
803533fbb3ec
* ML: renamed flags Syntax.trace_norm_ast to Syntax.trace_ast; global
 wenzelm parents: 
8991diff
changeset | 2441 | |
| 10003 | 2442 | * ML: new combinators |>> and |>>> for incremental transformations | 
| 2443 | with secondary results (e.g. certain theory extensions): | |
| 2444 | ||
| 9330 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2445 | * ML: PureThy.add_defs gets additional argument to indicate potential | 
| 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2446 | overloading (usually false); | 
| 
6861e3b00155
HOL: the disjoint sum is now "<+>" instead of "Plus";
 wenzelm parents: 
9288diff
changeset | 2447 | |
| 10003 | 2448 | * ML: PureThy.add_thms/add_axioms/add_defs now return theorems as | 
| 2449 | results; | |
| 8440 
d66f0f14b1ca
* HOL: exhaust_tac on datatypes superceded by new case_tac;
 wenzelm parents: 
8425diff
changeset | 2450 | |
| 8358 
a57d72b5d272
* isatool mkdir provides easy setup of Isabelle session directories,
 wenzelm parents: 
8283diff
changeset | 2451 | |
| 8015 | 2452 | |
| 7986 | 2453 | New in Isabelle99 (October 1999) | 
| 2454 | -------------------------------- | |
| 4649 | 2455 | |
| 5931 | 2456 | *** Overview of INCOMPATIBILITIES (see below for more details) *** | 
| 2457 | ||
| 6922 | 2458 | * HOL: The THEN and ELSE parts of conditional expressions (if P then x else y) | 
| 2459 | are no longer simplified. (This allows the simplifier to unfold recursive | |
| 2460 | functional programs.) To restore the old behaviour, declare | |
| 7215 | 2461 | |
| 2462 | Delcongs [if_weak_cong]; | |
| 6922 | 2463 | |
| 6269 | 2464 | * HOL: Removed the obsolete syntax "Compl A"; use -A for set | 
| 2465 | complement; | |
| 5931 | 2466 | |
| 6269 | 2467 | * HOL: the predicate "inj" is now defined by translation to "inj_on"; | 
| 6174 | 2468 | |
| 7847 | 2469 | * HOL/datatype: mutual_induct_tac no longer exists -- | 
| 2470 | use induct_tac "x_1 ... x_n" instead of mutual_induct_tac ["x_1", ..., "x_n"] | |
| 2471 | ||
| 6386 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2472 | * HOL/typedef: fixed type inference for representing set; type | 
| 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2473 | arguments now have to occur explicitly on the rhs as type constraints; | 
| 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2474 | |
| 6269 | 2475 | * ZF: The con_defs part of an inductive definition may no longer refer | 
| 2476 | to constants declared in the same theory; | |
| 6057 | 2477 | |
| 6269 | 2478 | * HOL, ZF: the function mk_cases, generated by the inductive | 
| 2479 | definition package, has lost an argument. To simplify its result, it | |
| 2480 | uses the default simpset instead of a supplied list of theorems. | |
| 6141 | 2481 | |
| 7215 | 2482 | * HOL/List: the constructors of type list are now Nil and Cons; | 
| 2483 | ||
| 7619 | 2484 | * Simplifier: the type of the infix ML functions | 
| 8729 
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
 wenzelm parents: 
8705diff
changeset | 2485 | setSSolver addSSolver setSolver addSolver | 
| 7619 | 2486 | is now simpset * solver -> simpset where `solver' is a new abstract type | 
| 2487 | for packaging solvers. A solver is created via | |
| 8729 
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
 wenzelm parents: 
8705diff
changeset | 2488 | mk_solver: string -> (thm list -> int -> tactic) -> solver | 
| 7619 | 2489 | where the string argument is only a comment. | 
| 6057 | 2490 | |
| 7647 
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
 wenzelm parents: 
7619diff
changeset | 2491 | |
| 6069 | 2492 | *** Proof tools *** | 
| 2493 | ||
| 6343 | 2494 | * Provers/Arith/fast_lin_arith.ML contains a functor for creating a | 
| 2495 | decision procedure for linear arithmetic. Currently it is used for | |
| 7593 | 2496 | types `nat', `int', and `real' in HOL (see below); it can, should and | 
| 2497 | will be instantiated for other types and logics as well. | |
| 6069 | 2498 | |
| 7324 | 2499 | * The simplifier now accepts rewrite rules with flexible heads, eg | 
| 2500 | hom ?f ==> ?f(?x+?y) = ?f ?x + ?f ?y | |
| 2501 | They are applied like any rule with a non-pattern lhs, i.e. by first-order | |
| 2502 | matching. | |
| 6069 | 2503 | |
| 7593 | 2504 | |
| 6014 | 2505 | *** General *** | 
| 2506 | ||
| 7986 | 2507 | * New Isabelle/Isar subsystem provides an alternative to traditional | 
| 7215 | 2508 | tactical theorem proving; together with the ProofGeneral/isar user | 
| 2509 | interface it offers an interactive environment for developing human | |
| 2510 | readable proof documents (Isar == Intelligible semi-automated | |
| 7886 
8fa551e22e52
the settings environment is now statically scoped;
 wenzelm parents: 
7863diff
changeset | 2511 | reasoning); for further information see isatool doc isar-ref, | 
| 7986 | 2512 | src/HOL/Isar_examples and http://isabelle.in.tum.de/Isar/ | 
| 7886 
8fa551e22e52
the settings environment is now statically scoped;
 wenzelm parents: 
7863diff
changeset | 2513 | |
| 9612 | 2514 | * improved and simplified presentation of theories: better HTML markup | 
| 2515 | (including colors), graph views in several sizes; isatool usedir now | |
| 2516 | provides a proper interface for user theories (via -P option); actual | |
| 2517 | document preparation based on (PDF)LaTeX is available as well (for | |
| 2518 | new-style theories only); see isatool doc system for more information; | |
| 7215 | 2519 | |
| 7252 | 2520 | * native support for Proof General, both for classic Isabelle and | 
| 7986 | 2521 | Isabelle/Isar; | 
| 7215 | 2522 | |
| 7791 | 2523 | * ML function thm_deps visualizes dependencies of theorems and lemmas, | 
| 2524 | using the graph browser tool; | |
| 2525 | ||
| 6751 | 2526 | * Isabelle manuals now also available as PDF; | 
| 2527 | ||
| 6449 | 2528 | * theory loader rewritten from scratch (may not be fully | 
| 2529 | bug-compatible); old loadpath variable has been replaced by show_path, | |
| 6671 | 2530 | add_path, del_path, reset_path functions; new operations such as | 
| 7593 | 2531 | update_thy, touch_thy, remove_thy, use/update_thy_only (see also | 
| 2532 | isatool doc ref); | |
| 6449 | 2533 | |
| 7215 | 2534 | * improved isatool install: option -k creates KDE application icon, | 
| 2535 | option -p DIR installs standalone binaries; | |
| 2536 | ||
| 2537 | * added ML_PLATFORM setting (useful for cross-platform installations); | |
| 2538 | more robust handling of platform specific ML images for SML/NJ; | |
| 2539 | ||
| 7886 
8fa551e22e52
the settings environment is now statically scoped;
 wenzelm parents: 
7863diff
changeset | 2540 | * the settings environment is now statically scoped, i.e. it is never | 
| 7986 | 2541 | created again in sub-processes invoked from isabelle, isatool, or | 
| 7886 
8fa551e22e52
the settings environment is now statically scoped;
 wenzelm parents: 
7863diff
changeset | 2542 | Isabelle; | 
| 
8fa551e22e52
the settings environment is now statically scoped;
 wenzelm parents: 
7863diff
changeset | 2543 | |
| 7215 | 2544 | * path element specification '~~' refers to '$ISABELLE_HOME'; | 
| 2545 | ||
| 6343 | 2546 | * in locales, the "assumes" and "defines" parts may be omitted if | 
| 2547 | empty; | |
| 5973 | 2548 | |
| 6269 | 2549 | * new print_mode "xsymbols" for extended symbol support (e.g. genuine | 
| 2550 | long arrows); | |
| 6259 
488bdc1bd11a
path element specification '~~' refers to '$ISABELLE_HOME';
 wenzelm parents: 
6174diff
changeset | 2551 | |
| 6343 | 2552 | * new print_mode "HTML"; | 
| 2553 | ||
| 2554 | * new flag show_tags controls display of tags of theorems (which are | |
| 2555 | basically just comments that may be attached by some tools); | |
| 2556 | ||
| 6461 | 2557 | * Isamode 2.6 requires patch to accomodate change of Isabelle font | 
| 2558 | mode and goal output format: | |
| 2559 | ||
| 2560 | diff -r Isamode-2.6/elisp/isa-load.el Isamode/elisp/isa-load.el | |
| 2561 | 244c244 | |
| 2562 | < (list (isa-getenv "ISABELLE") "-msymbols" logic-name) | |
| 2563 | --- | |
| 6533 | 2564 | > (list (isa-getenv "ISABELLE") "-misabelle_font" "-msymbols" logic-name) | 
| 6461 | 2565 | diff -r Isabelle-2.6/elisp/isa-proofstate.el Isamode/elisp/isa-proofstate.el | 
| 2566 | 181c181 | |
| 2567 | < (defconst proofstate-proofstart-regexp "^Level [0-9]+$" | |
| 2568 | --- | |
| 2569 | > (defconst proofstate-proofstart-regexp "^Level [0-9]+" | |
| 2570 | ||
| 7450 | 2571 | * function bind_thms stores lists of theorems (cf. bind_thm); | 
| 2572 | ||
| 7593 | 2573 | * new shorthand tactics ftac, eatac, datac, fatac; | 
| 2574 | ||
| 2575 | * qed (and friends) now accept "" as result name; in that case the | |
| 7986 | 2576 | theorem is not stored, but proper checks and presentation of the | 
| 2577 | result still apply; | |
| 7593 | 2578 | |
| 7805 
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
 wenzelm parents: 
7791diff
changeset | 2579 | * theorem database now also indexes constants "Trueprop", "all", | 
| 
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
 wenzelm parents: 
7791diff
changeset | 2580 | "==>", "=="; thus thms_containing, findI etc. may retrieve more rules; | 
| 
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
 wenzelm parents: 
7791diff
changeset | 2581 | |
| 6028 | 2582 | |
| 6057 | 2583 | *** HOL *** | 
| 2584 | ||
| 7215 | 2585 | ** HOL arithmetic ** | 
| 2586 | ||
| 6343 | 2587 | * There are now decision procedures for linear arithmetic over nat and | 
| 2588 | int: | |
| 6131 | 2589 | |
| 6343 | 2590 | 1. arith_tac copes with arbitrary formulae involving `=', `<', `<=', | 
| 2591 | `+', `-', `Suc', `min', `max' and numerical constants; other subterms | |
| 2592 | are treated as atomic; subformulae not involving type `nat' or `int' | |
| 2593 | are ignored; quantified subformulae are ignored unless they are | |
| 2594 | positive universal or negative existential. The tactic has to be | |
| 2595 | invoked by hand and can be a little bit slow. In particular, the | |
| 2596 | running time is exponential in the number of occurrences of `min' and | |
| 2597 | `max', and `-' on `nat'. | |
| 6131 | 2598 | |
| 6343 | 2599 | 2. fast_arith_tac is a cut-down version of arith_tac: it only takes | 
| 2600 | (negated) (in)equalities among the premises and the conclusion into | |
| 2601 | account (i.e. no compound formulae) and does not know about `min' and | |
| 2602 | `max', and `-' on `nat'. It is fast and is used automatically by the | |
| 2603 | simplifier. | |
| 6131 | 2604 | |
| 6343 | 2605 | NB: At the moment, these decision procedures do not cope with mixed | 
| 2606 | nat/int formulae where the two parts interact, such as `m < n ==> | |
| 2607 | int(m) < int(n)'. | |
| 6028 | 2608 | |
| 7215 | 2609 | * HOL/Numeral provides a generic theory of numerals (encoded | 
| 7313 | 2610 | efficiently as bit strings); setup for types nat/int/real is in place; | 
| 7215 | 2611 | INCOMPATIBILITY: since numeral syntax is now polymorphic, rather than | 
| 2612 | int, existing theories and proof scripts may require a few additional | |
| 2613 | type constraints; | |
| 2614 | ||
| 2615 | * integer division and remainder can now be performed on constant | |
| 2616 | arguments; | |
| 7157 | 2617 | |
| 7215 | 2618 | * many properties of integer multiplication, division and remainder | 
| 2619 | are now available; | |
| 6922 | 2620 | |
| 7287 | 2621 | * An interface to the Stanford Validity Checker (SVC) is available through the | 
| 2622 | tactic svc_tac. Propositional tautologies and theorems of linear arithmetic | |
| 2623 | are proved automatically. SVC must be installed separately, and its results | |
| 2624 | must be TAKEN ON TRUST (Isabelle does not check the proofs, but tags any | |
| 2625 | invocation of the underlying oracle). For SVC see | |
| 7444 | 2626 | http://verify.stanford.edu/SVC | 
| 6922 | 2627 | |
| 7125 | 2628 | * IsaMakefile: the HOL-Real target now builds an actual image; | 
| 2629 | ||
| 7215 | 2630 | |
| 2631 | ** HOL misc ** | |
| 2632 | ||
| 7595 
5f5d575ddac3
* HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces
 wenzelm parents: 
7593diff
changeset | 2633 | * HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces | 
| 
5f5d575ddac3
* HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces
 wenzelm parents: 
7593diff
changeset | 2634 | (in Isabelle/Isar) -- by Gertrud Bauer; | 
| 
5f5d575ddac3
* HOL/Real/HahnBanach: the Hahn-Banach theorem for real vector spaces
 wenzelm parents: 
7593diff
changeset | 2635 | |
| 7691 | 2636 | * HOL/BCV: generic model of bytecode verification, i.e. data-flow | 
| 2637 | analysis for assembly languages with subtypes; | |
| 2638 | ||
| 6278 | 2639 | * HOL/TLA (Lamport's Temporal Logic of Actions): major reorganization | 
| 2640 | -- avoids syntactic ambiguities and treats state, transition, and | |
| 2641 | temporal levels more uniformly; introduces INCOMPATIBILITIES due to | |
| 2642 | changed syntax and (many) tactics; | |
| 2643 | ||
| 7791 | 2644 | * HOL/inductive: Now also handles more general introduction rules such | 
| 2645 | as "ALL y. (y, x) : r --> y : acc r ==> x : acc r"; monotonicity | |
| 2646 | theorems are now maintained within the theory (maintained via the | |
| 2647 | "mono" attribute); | |
| 7780 
099742c562aa
Documented changes to HOL/inductive and function thm_deps.
 berghofe parents: 
7691diff
changeset | 2648 | |
| 7238 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2649 | * HOL/datatype: Now also handles arbitrarily branching datatypes | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2650 | (using function types) such as | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2651 | |
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2652 | datatype 'a tree = Atom 'a | Branch "nat => 'a tree" | 
| 7047 
d103b875ef1d
Datatype package now handles arbitrarily branching datatypes.
 berghofe parents: 
6925diff
changeset | 2653 | |
| 7326 | 2654 | * HOL/record: record_simproc (part of the default simpset) takes care | 
| 2655 | of selectors applied to updated records; record_split_tac is no longer | |
| 7327 | 2656 | part of the default claset; update_defs may now be removed from the | 
| 2657 | simpset in many cases; COMPATIBILITY: old behavior achieved by | |
| 7326 | 2658 | |
| 2659 | claset_ref () := claset() addSWrapper record_split_wrapper; | |
| 2660 | Delsimprocs [record_simproc] | |
| 2661 | ||
| 6386 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2662 | * HOL/typedef: fixed type inference for representing set; type | 
| 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2663 | arguments now have to occur explicitly on the rhs as type constraints; | 
| 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2664 | |
| 7287 | 2665 | * HOL/recdef (TFL): 'congs' syntax now expects comma separated list of theorem | 
| 2666 | names rather than an ML expression; | |
| 2667 | ||
| 2668 | * HOL/defer_recdef (TFL): like recdef but the well-founded relation can be | |
| 2669 | supplied later. Program schemes can be defined, such as | |
| 2670 | "While B C s = (if B s then While B C (C s) else s)" | |
| 2671 | where the well-founded relation can be chosen after B and C have been given. | |
| 6563 | 2672 | |
| 7215 | 2673 | * HOL/List: the constructors of type list are now Nil and Cons; | 
| 2674 | INCOMPATIBILITY: while [] and infix # syntax is still there, of | |
| 2675 | course, ML tools referring to List.list.op # etc. have to be adapted; | |
| 2676 | ||
| 7238 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2677 | * HOL_quantifiers flag superseded by "HOL" print mode, which is | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2678 | disabled by default; run isabelle with option -m HOL to get back to | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2679 | the original Gordon/HOL-style output; | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2680 | |
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2681 | * HOL/Ord.thy: new bounded quantifier syntax (input only): ALL x<y. P, | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2682 | ALL x<=y. P, EX x<y. P, EX x<=y. P; | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2683 | |
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2684 | * HOL basic syntax simplified (more orthogonal): all variants of | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2685 | All/Ex now support plain / symbolic / HOL notation; plain syntax for | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2686 | Eps operator is provided as well: "SOME x. P[x]"; | 
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7216diff
changeset | 2687 | |
| 7320 | 2688 | * HOL/Sum.thy: sum_case has been moved to HOL/Datatype; | 
| 7261 | 2689 | |
| 7280 | 2690 | * HOL/Univ.thy: infix syntax <*>, <+>, <**>, <+> eliminated and made | 
| 2691 | thus available for user theories; | |
| 2692 | ||
| 7300 
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
 wenzelm parents: 
7287diff
changeset | 2693 | * HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with | 
| 
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
 wenzelm parents: 
7287diff
changeset | 2694 | HOL/List; hardly an INCOMPATIBILITY since '>>' syntax is used all the | 
| 
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
 wenzelm parents: 
7287diff
changeset | 2695 | time; | 
| 
8439bf404c28
* HOLCF/IOA/Sequents: renamed 'Cons' to 'Consq' to avoid clash with HOL/List;
 wenzelm parents: 
7287diff
changeset | 2696 | |
| 7986 | 2697 | * HOL: new tactic smp_tac: int -> int -> tactic, which applies spec | 
| 2698 | several times and then mp; | |
| 7492 | 2699 | |
| 7215 | 2700 | |
| 7113 | 2701 | *** LK *** | 
| 2702 | ||
| 7215 | 2703 | * the notation <<...>> is now available as a notation for sequences of | 
| 2704 | formulas; | |
| 7113 | 2705 | |
| 2706 | * the simplifier is now installed | |
| 2707 | ||
| 8729 
094dbd0fad0c
* improved name spaces: ambiguous output is qualified; support for
 wenzelm parents: 
8705diff
changeset | 2708 | * the axiom system has been generalized (thanks to Soren Heilmann) | 
| 7113 | 2709 | |
| 2710 | * the classical reasoner now has a default rule database | |
| 2711 | ||
| 2712 | ||
| 6064 | 2713 | *** ZF *** | 
| 2714 | ||
| 2715 | * new primrec section allows primitive recursive functions to be given | |
| 6269 | 2716 | directly (as in HOL) over datatypes and the natural numbers; | 
| 6064 | 2717 | |
| 6269 | 2718 | * new tactics induct_tac and exhaust_tac for induction (or case | 
| 2719 | analysis) over datatypes and the natural numbers; | |
| 6064 | 2720 | |
| 2721 | * the datatype declaration of type T now defines the recursor T_rec; | |
| 2722 | ||
| 6141 | 2723 | * simplification automatically does freeness reasoning for datatype | 
| 6269 | 2724 | constructors; | 
| 6141 | 2725 | |
| 6269 | 2726 | * automatic type-inference, with AddTCs command to insert new | 
| 2727 | type-checking rules; | |
| 6155 | 2728 | |
| 6269 | 2729 | * datatype introduction rules are now added as Safe Introduction rules | 
| 2730 | to the claset; | |
| 6155 | 2731 | |
| 6269 | 2732 | * the syntax "if P then x else y" is now available in addition to | 
| 2733 | if(P,x,y); | |
| 2734 | ||
| 6069 | 2735 | |
| 6343 | 2736 | *** Internal programming interfaces *** | 
| 2737 | ||
| 7919 
35c18affc1d8
tuned simplifier trace output;  new flag debug_simp
 wenzelm parents: 
7886diff
changeset | 2738 | * tuned simplifier trace output; new flag debug_simp; | 
| 
35c18affc1d8
tuned simplifier trace output;  new flag debug_simp
 wenzelm parents: 
7886diff
changeset | 2739 | |
| 7420 
cba45c114f3b
structures Vartab / Termtab (instances of TableFun);
 wenzelm parents: 
7327diff
changeset | 2740 | * structures Vartab / Termtab (instances of TableFun) offer efficient | 
| 
cba45c114f3b
structures Vartab / Termtab (instances of TableFun);
 wenzelm parents: 
7327diff
changeset | 2741 | tables indexed by indexname_ord / term_ord (compatible with aconv); | 
| 
cba45c114f3b
structures Vartab / Termtab (instances of TableFun);
 wenzelm parents: 
7327diff
changeset | 2742 | |
| 6386 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2743 | * AxClass.axclass_tac lost the theory argument; | 
| 
e9e8af97f48f
HOL/typedef: fixed type inference for representing set;
 wenzelm parents: 
6343diff
changeset | 2744 | |
| 6343 | 2745 | * tuned current_goals_markers semantics: begin / end goal avoids | 
| 2746 | printing empty lines; | |
| 2747 | ||
| 2748 | * removed prs and prs_fn hook, which was broken because it did not | |
| 2749 | include \n in its semantics, forcing writeln to add one | |
| 2750 | uncoditionally; replaced prs_fn by writeln_fn; consider std_output: | |
| 2751 | string -> unit if you really want to output text without newline; | |
| 2752 | ||
| 2753 | * Symbol.output subject to print mode; INCOMPATIBILITY: defaults to | |
| 2754 | plain output, interface builders may have to enable 'isabelle_font' | |
| 2755 | mode to get Isabelle font glyphs as before; | |
| 2756 | ||
| 2757 | * refined token_translation interface; INCOMPATIBILITY: output length | |
| 2758 | now of type real instead of int; | |
| 2759 | ||
| 7196 | 2760 | * theory loader actions may be traced via new ThyInfo.add_hook | 
| 2761 | interface (see src/Pure/Thy/thy_info.ML); example application: keep | |
| 2762 | your own database of information attached to *whole* theories -- as | |
| 2763 | opposed to intra-theory data slots offered via TheoryDataFun; | |
| 2764 | ||
| 7647 
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
 wenzelm parents: 
7619diff
changeset | 2765 | * proper handling of dangling sort hypotheses (at last!); | 
| 
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
 wenzelm parents: 
7619diff
changeset | 2766 | Thm.strip_shyps and Drule.strip_shyps_warning take care of removing | 
| 
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
 wenzelm parents: 
7619diff
changeset | 2767 | extra sort hypotheses that can be witnessed from the type signature; | 
| 7986 | 2768 | the force_strip_shyps flag is gone, any remaining shyps are simply | 
| 2769 | left in the theorem (with a warning issued by strip_shyps_warning); | |
| 7647 
2ceddd91cd0a
proper handling of dangling sort hypotheses (at last!);
 wenzelm parents: 
7619diff
changeset | 2770 | |
| 6343 | 2771 | |
| 6064 | 2772 | |
| 5781 | 2773 | New in Isabelle98-1 (October 1998) | 
| 2774 | ---------------------------------- | |
| 2775 | ||
| 5127 | 2776 | *** Overview of INCOMPATIBILITIES (see below for more details) *** | 
| 4842 | 2777 | |
| 5726 | 2778 | * several changes of automated proof tools; | 
| 5373 | 2779 | |
| 5726 | 2780 | * HOL: major changes to the inductive and datatype packages, including | 
| 2781 | some minor incompatibilities of theory syntax; | |
| 5214 | 2782 | |
| 5726 | 2783 | * HOL: renamed r^-1 to 'converse' from 'inverse'; 'inj_onto' is now | 
| 5217 | 2784 | called `inj_on'; | 
| 5160 | 2785 | |
| 5275 | 2786 | * HOL: removed duplicate thms in Arith: | 
| 2787 | less_imp_add_less should be replaced by trans_less_add1 | |
| 2788 | le_imp_add_le should be replaced by trans_le_add1 | |
| 5160 | 2789 | |
| 5726 | 2790 | * HOL: unary minus is now overloaded (new type constraints may be | 
| 2791 | required); | |
| 5490 | 2792 | |
| 5726 | 2793 | * HOL and ZF: unary minus for integers is now #- instead of #~. In | 
| 2794 | ZF, expressions such as n#-1 must be changed to n#- 1, since #-1 is | |
| 2795 | now taken as an integer constant. | |
| 5541 | 2796 | |
| 5726 | 2797 | * Pure: ML function 'theory_of' renamed to 'theory'; | 
| 5397 
034ed25535b9
* Pure: ML function 'theory_of' replaced by 'theory';
 wenzelm parents: 
5373diff
changeset | 2798 | |
| 5363 | 2799 | |
| 5127 | 2800 | *** Proof tools *** | 
| 4880 | 2801 | |
| 5657 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2802 | * Simplifier: | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2803 | 1. Asm_full_simp_tac is now more aggressive. | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2804 | 1. It will sometimes reorient premises if that increases their power to | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2805 | simplify. | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2806 | 2. It does no longer proceed strictly from left to right but may also | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2807 | rotate premises to achieve further simplification. | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2808 | For compatibility reasons there is now Asm_lr_simp_tac which is like the | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2809 | old Asm_full_simp_tac in that it does not rotate premises. | 
| 
1a6c9c6a3f8e
  2. The simplifier now knows a little bit about nat-arithmetic.
 nipkow parents: 
5651diff
changeset | 2810 | 2. The simplifier now knows a little bit about nat-arithmetic. | 
| 4880 | 2811 | |
| 5127 | 2812 | * Classical reasoner: wrapper mechanism for the classical reasoner now | 
| 2813 | allows for selected deletion of wrappers, by introduction of names for | |
| 2814 | wrapper functionals. This implies that addbefore, addSbefore, | |
| 2815 | addaltern, and addSaltern now take a pair (name, tactic) as argument, | |
| 2816 | and that adding two tactics with the same name overwrites the first | |
| 2817 | one (emitting a warning). | |
| 4824 | 2818 | type wrapper = (int -> tactic) -> (int -> tactic) | 
| 4649 | 2819 | setWrapper, setSWrapper, compWrapper and compSWrapper are replaced by | 
| 4824 | 2820 | addWrapper, addSWrapper: claset * (string * wrapper) -> claset | 
| 2821 | delWrapper, delSWrapper: claset * string -> claset | |
| 4649 | 2822 | getWrapper is renamed to appWrappers, getSWrapper to appSWrappers; | 
| 2823 | ||
| 5705 
56f2030c46c6
tuned (all proofs are INSTABLE by David's definition of instability);
 wenzelm parents: 
5671diff
changeset | 2824 | * Classical reasoner: addbefore/addSbefore now have APPEND/ORELSE | 
| 5726 | 2825 | semantics; addbefore now affects only the unsafe part of step_tac | 
| 2826 | etc.; this affects addss/auto_tac/force_tac, so EXISTING PROOFS MAY | |
| 2827 | FAIL, but proofs should be fixable easily, e.g. by replacing Auto_tac | |
| 2828 | by Force_tac; | |
| 5524 | 2829 | |
| 5726 | 2830 | * Classical reasoner: setwrapper to setWrapper and compwrapper to | 
| 2831 | compWrapper; added safe wrapper (and access functions for it); | |
| 5524 | 2832 | |
| 5127 | 2833 | * HOL/split_all_tac is now much faster and fails if there is nothing | 
| 5726 | 2834 | to split. Some EXISTING PROOFS MAY REQUIRE ADAPTION because the order | 
| 2835 | and the names of the automatically generated variables have changed. | |
| 2836 | split_all_tac has moved within claset() from unsafe wrappers to safe | |
| 2837 | wrappers, which means that !!-bound variables are split much more | |
| 2838 | aggressively, and safe_tac and clarify_tac now split such variables. | |
| 2839 | If this splitting is not appropriate, use delSWrapper "split_all_tac". | |
| 2840 | Note: the same holds for record_split_tac, which does the job of | |
| 2841 | split_all_tac for record fields. | |
| 5127 | 2842 | |
| 5726 | 2843 | * HOL/Simplifier: Rewrite rules for case distinctions can now be added | 
| 2844 | permanently to the default simpset using Addsplits just like | |
| 2845 | Addsimps. They can be removed via Delsplits just like | |
| 2846 | Delsimps. Lower-case versions are also available. | |
| 5127 | 2847 | |
| 5726 | 2848 | * HOL/Simplifier: The rule split_if is now part of the default | 
| 2849 | simpset. This means that the simplifier will eliminate all occurrences | |
| 2850 | of if-then-else in the conclusion of a goal. To prevent this, you can | |
| 2851 | either remove split_if completely from the default simpset by | |
| 2852 | `Delsplits [split_if]' or remove it in a specific call of the | |
| 2853 | simplifier using `... delsplits [split_if]'. You can also add/delete | |
| 2854 | other case splitting rules to/from the default simpset: every datatype | |
| 2855 | generates suitable rules `split_t_case' and `split_t_case_asm' (where | |
| 2856 | t is the name of the datatype). | |
| 5127 | 2857 | |
| 5726 | 2858 | * Classical reasoner / Simplifier combination: new force_tac (and | 
| 5127 | 2859 | derivatives Force_tac, force) combines rewriting and classical | 
| 2860 | reasoning (and whatever other tools) similarly to auto_tac, but is | |
| 5726 | 2861 | aimed to solve the given subgoal completely. | 
| 5127 | 2862 | |
| 2863 | ||
| 2864 | *** General *** | |
| 2865 | ||
| 5217 | 2866 | * new top-level commands `Goal' and `Goalw' that improve upon `goal' | 
| 5127 | 2867 | and `goalw': the theory is no longer needed as an explicit argument - | 
| 2868 | the current theory context is used; assumptions are no longer returned | |
| 2869 | at the ML-level unless one of them starts with ==> or !!; it is | |
| 5217 | 2870 | recommended to convert to these new commands using isatool fixgoal | 
| 2871 | (backup your sources first!); | |
| 4842 | 2872 | |
| 5217 | 2873 | * new top-level commands 'thm' and 'thms' for retrieving theorems from | 
| 5207 | 2874 | the current theory context, and 'theory' to lookup stored theories; | 
| 4806 | 2875 | |
| 5722 | 2876 | * new theory section 'locale' for declaring constants, assumptions and | 
| 2877 | definitions that have local scope; | |
| 2878 | ||
| 5127 | 2879 | * new theory section 'nonterminals' for purely syntactic types; | 
| 4858 | 2880 | |
| 5127 | 2881 | * new theory section 'setup' for generic ML setup functions | 
| 2882 | (e.g. package initialization); | |
| 4869 | 2883 | |
| 5131 | 2884 | * the distribution now includes Isabelle icons: see | 
| 2885 | lib/logo/isabelle-{small,tiny}.xpm;
 | |
| 2886 | ||
| 5363 | 2887 | * isatool install - install binaries with absolute references to | 
| 2888 | ISABELLE_HOME/bin; | |
| 2889 | ||
| 5572 | 2890 | * isatool logo -- create instances of the Isabelle logo (as EPS); | 
| 2891 | ||
| 5407 | 2892 | * print mode 'emacs' reserved for Isamode; | 
| 2893 | ||
| 5726 | 2894 | * support multiple print (ast) translations per constant name; | 
| 2895 | ||
| 6925 
8d4d45ec6a3d
theorems involving oracles are now printed with a suffixed [!];
 wenzelm parents: 
6922diff
changeset | 2896 | * theorems involving oracles are now printed with a suffixed [!]; | 
| 
8d4d45ec6a3d
theorems involving oracles are now printed with a suffixed [!];
 wenzelm parents: 
6922diff
changeset | 2897 | |
| 4711 | 2898 | |
| 4661 | 2899 | *** HOL *** | 
| 2900 | ||
| 5710 | 2901 | * there is now a tutorial on Isabelle/HOL (do 'isatool doc tutorial'); | 
| 5709 | 2902 | |
| 5217 | 2903 | * HOL/inductive package reorganized and improved: now supports mutual | 
| 5267 | 2904 | definitions such as | 
| 5217 | 2905 | |
| 2906 | inductive EVEN ODD | |
| 2907 | intrs | |
| 2908 | null "0 : EVEN" | |
| 2909 | oddI "n : EVEN ==> Suc n : ODD" | |
| 2910 | evenI "n : ODD ==> Suc n : EVEN" | |
| 2911 | ||
| 2912 | new theorem list "elims" contains an elimination rule for each of the | |
| 2913 | recursive sets; inductive definitions now handle disjunctive premises | |
| 2914 | correctly (also ZF); | |
| 5214 | 2915 | |
| 5217 | 2916 | INCOMPATIBILITIES: requires Inductive as an ancestor; component | 
| 2917 | "mutual_induct" no longer exists - the induction rule is always | |
| 2918 | contained in "induct"; | |
| 2919 | ||
| 2920 | ||
| 2921 | * HOL/datatype package re-implemented and greatly improved: now | |
| 5267 | 2922 | supports mutually recursive datatypes such as | 
| 5217 | 2923 | |
| 2924 | datatype | |
| 2925 |     'a aexp = IF_THEN_ELSE ('a bexp) ('a aexp) ('a aexp)
 | |
| 2926 |             | SUM ('a aexp) ('a aexp)
 | |
| 2927 |             | DIFF ('a aexp) ('a aexp)
 | |
| 2928 | | NUM 'a | |
| 2929 | and | |
| 2930 |     'a bexp = LESS ('a aexp) ('a aexp)
 | |
| 2931 |             | AND ('a bexp) ('a bexp)
 | |
| 2932 |             | OR ('a bexp) ('a bexp)
 | |
| 2933 | ||
| 5267 | 2934 | as well as indirectly recursive datatypes such as | 
| 5214 | 2935 | |
| 5217 | 2936 | datatype | 
| 2937 |     ('a, 'b) term = Var 'a
 | |
| 2938 |                   | App 'b ((('a, 'b) term) list)
 | |
| 5214 | 2939 | |
| 5217 | 2940 | The new tactic mutual_induct_tac [<var_1>, ..., <var_n>] i performs | 
| 2941 | induction on mutually / indirectly recursive datatypes. | |
| 2942 | ||
| 2943 | Primrec equations are now stored in theory and can be accessed via | |
| 2944 | <function_name>.simps. | |
| 2945 | ||
| 2946 | INCOMPATIBILITIES: | |
| 5214 | 2947 | |
| 5217 | 2948 | - Theories using datatypes must now have theory Datatype as an | 
| 2949 | ancestor. | |
| 2950 | - The specific <typename>.induct_tac no longer exists - use the | |
| 2951 | generic induct_tac instead. | |
| 5226 | 2952 | - natE has been renamed to nat.exhaust - use exhaust_tac | 
| 5217 | 2953 | instead of res_inst_tac ... natE. Note that the variable | 
| 5226 | 2954 | names in nat.exhaust differ from the names in natE, this | 
| 5217 | 2955 | may cause some "fragile" proofs to fail. | 
| 2956 | - The theorems split_<typename>_case and split_<typename>_case_asm | |
| 2957 | have been renamed to <typename>.split and <typename>.split_asm. | |
| 2958 | - Since default sorts of type variables are now handled correctly, | |
| 2959 | some datatype definitions may have to be annotated with explicit | |
| 2960 | sort constraints. | |
| 2961 | - Primrec definitions no longer require function name and type | |
| 2962 | of recursive argument. | |
| 5214 | 2963 | |
| 5217 | 2964 | Consider using isatool fixdatatype to adapt your theories and proof | 
| 2965 | scripts to the new package (backup your sources first!). | |
| 2966 | ||
| 2967 | ||
| 5726 | 2968 | * HOL/record package: considerably improved implementation; now | 
| 2969 | includes concrete syntax for record types, terms, updates; theorems | |
| 2970 | for surjective pairing and splitting !!-bound record variables; proof | |
| 2971 | support is as follows: | |
| 2972 | ||
| 2973 | 1) standard conversions (selectors or updates applied to record | |
| 2974 | constructor terms) are part of the standard simpset; | |
| 2975 | ||
| 2976 | 2) inject equations of the form ((x, y) = (x', y')) == x=x' & y=y' are | |
| 2977 | made part of standard simpset and claset via addIffs; | |
| 2978 | ||
| 2979 | 3) a tactic for record field splitting (record_split_tac) is part of | |
| 2980 | the standard claset (addSWrapper); | |
| 2981 | ||
| 2982 | To get a better idea about these rules you may retrieve them via | |
| 2983 | something like 'thms "foo.simps"' or 'thms "foo.iffs"', where "foo" is | |
| 2984 | the name of your record type. | |
| 2985 | ||
| 2986 | The split tactic 3) conceptually simplifies by the following rule: | |
| 2987 | ||
| 2988 | "(!!x. PROP ?P x) == (!!a b. PROP ?P (a, b))" | |
| 2989 | ||
| 2990 | Thus any record variable that is bound by meta-all will automatically | |
| 2991 | blow up into some record constructor term, consequently the | |
| 2992 | simplifications of 1), 2) apply. Thus force_tac, auto_tac etc. shall | |
| 2993 | solve record problems automatically. | |
| 2994 | ||
| 5214 | 2995 | |
| 5125 | 2996 | * reorganized the main HOL image: HOL/Integ and String loaded by | 
| 2997 | default; theory Main includes everything; | |
| 2998 | ||
| 5650 | 2999 | * automatic simplification of integer sums and comparisons, using cancellation; | 
| 3000 | ||
| 5526 | 3001 | * added option_map_eq_Some and not_Some_eq to the default simpset and claset; | 
| 5127 | 3002 | |
| 3003 | * added disj_not1 = "(~P | Q) = (P --> Q)" to the default simpset; | |
| 3004 | ||
| 3005 | * many new identities for unions, intersections, set difference, etc.; | |
| 3006 | ||
| 3007 | * expand_if, expand_split, expand_sum_case and expand_nat_case are now | |
| 3008 | called split_if, split_split, split_sum_case and split_nat_case (to go | |
| 3009 | with add/delsplits); | |
| 5125 | 3010 | |
| 5127 | 3011 | * HOL/Prod introduces simplification procedure unit_eq_proc rewriting | 
| 3012 | (?x::unit) = (); this is made part of the default simpset, which COULD | |
| 3013 | MAKE EXISTING PROOFS FAIL under rare circumstances (consider | |
| 5207 | 3014 | 'Delsimprocs [unit_eq_proc];' as last resort); also note that | 
| 3015 | unit_abs_eta_conv is added in order to counter the effect of | |
| 3016 | unit_eq_proc on (%u::unit. f u), replacing it by f rather than by | |
| 3017 | %u.f(); | |
| 5125 | 3018 | |
| 5217 | 3019 | * HOL/Fun INCOMPATIBILITY: `inj_onto' is now called `inj_on' (which | 
| 3020 | makes more sense); | |
| 5109 | 3021 | |
| 5475 | 3022 | * HOL/Set INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule; | 
| 3023 | It and 'sym RS equals0D' are now in the default claset, giving automatic | |
| 3024 | disjointness reasoning but breaking a few old proofs. | |
| 5267 | 3025 | |
| 5217 | 3026 | * HOL/Relation INCOMPATIBILITY: renamed the relational operator r^-1 | 
| 3027 | to 'converse' from 'inverse' (for compatibility with ZF and some | |
| 3028 | literature); | |
| 5085 
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
 wenzelm parents: 
5077diff
changeset | 3029 | |
| 5127 | 3030 | * HOL/recdef can now declare non-recursive functions, with {} supplied as
 | 
| 3031 | the well-founded relation; | |
| 4838 | 3032 | |
| 5490 | 3033 | * HOL/Set INCOMPATIBILITY: the complement of set A is now written -A instead of | 
| 3034 | Compl A. The "Compl" syntax remains available as input syntax for this | |
| 3035 | release ONLY. | |
| 3036 | ||
| 5127 | 3037 | * HOL/Update: new theory of function updates: | 
| 3038 | f(a:=b) == %x. if x=a then b else f x | |
| 3039 | may also be iterated as in f(a:=b,c:=d,...); | |
| 5077 
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
 nipkow parents: 
5075diff
changeset | 3040 | |
| 5127 | 3041 | * HOL/Vimage: new theory for inverse image of a function, syntax f-``B; | 
| 4899 | 3042 | |
| 5282 | 3043 | * HOL/List: | 
| 3044 | - new function list_update written xs[i:=v] that updates the i-th | |
| 3045 | list position. May also be iterated as in xs[i:=a,j:=b,...]. | |
| 5428 | 3046 | - new function `upt' written [i..j(] which generates the list | 
| 3047 | [i,i+1,...,j-1], i.e. the upper bound is excluded. To include the upper | |
| 3048 | bound write [i..j], which is a shorthand for [i..j+1(]. | |
| 5282 | 3049 | - new lexicographic orderings and corresponding wellfoundedness theorems. | 
| 4779 | 3050 | |
| 5127 | 3051 | * HOL/Arith: | 
| 3052 | - removed 'pred' (predecessor) function; | |
| 3053 | - generalized some theorems about n-1; | |
| 3054 | - many new laws about "div" and "mod"; | |
| 3055 | - new laws about greatest common divisors (see theory ex/Primes); | |
| 4766 | 3056 | |
| 5127 | 3057 | * HOL/Relation: renamed the relational operator r^-1 "converse" | 
| 4842 | 3058 | instead of "inverse"; | 
| 4711 | 3059 | |
| 5651 | 3060 | * HOL/Induct/Multiset: a theory of multisets, including the wellfoundedness | 
| 3061 | of the multiset ordering; | |
| 3062 | ||
| 5127 | 3063 | * directory HOL/Real: a construction of the reals using Dedekind cuts | 
| 5651 | 3064 | (not included by default); | 
| 4835 | 3065 | |
| 5127 | 3066 | * directory HOL/UNITY: Chandy and Misra's UNITY formalism; | 
| 4711 | 3067 | |
| 5651 | 3068 | * directory HOL/Hoare: a new version of Hoare logic which permits many-sorted | 
| 3069 | programs, i.e. different program variables may have different types. | |
| 3070 | ||
| 5142 | 3071 | * calling (stac rew i) now fails if "rew" has no effect on the goal | 
| 3072 | [previously, this check worked only if the rewrite rule was unconditional] | |
| 5308 | 3073 | Now rew can involve either definitions or equalities (either == or =). | 
| 5002 
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
 wenzelm parents: 
4981diff
changeset | 3074 | |
| 5363 | 3075 | |
| 4879 
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
 paulson parents: 
4869diff
changeset | 3076 | *** ZF *** | 
| 
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
 paulson parents: 
4869diff
changeset | 3077 | |
| 5332 | 3078 | * theory Main includes everything; INCOMPATIBILITY: theory ZF.thy contains | 
| 3079 | only the theorems proved on ZF.ML; | |
| 5160 | 3080 | |
| 5475 | 3081 | * ZF INCOMPATIBILITY: rule `equals0D' is now a well-formed destruct rule; | 
| 3082 | It and 'sym RS equals0D' are now in the default claset, giving automatic | |
| 3083 | disjointness reasoning but breaking a few old proofs. | |
| 5267 | 3084 | |
| 5160 | 3085 | * ZF/Update: new theory of function updates | 
| 3086 | with default rewrite rule f(x:=y) ` z = if(z=x, y, f`z) | |
| 3087 | may also be iterated as in f(a:=b,c:=d,...); | |
| 3088 | ||
| 4879 
58656c6a3551
"let" is no longer restricted to FOL terms and allows any logical terms
 paulson parents: 
4869diff
changeset | 3089 | * in let x=t in u(x), neither t nor u(x) has to be an FOL term. | 
| 4649 | 3090 | |
| 5142 | 3091 | * calling (stac rew i) now fails if "rew" has no effect on the goal | 
| 3092 | [previously, this check worked only if the rewrite rule was unconditional] | |
| 5308 | 3093 | Now rew can involve either definitions or equalities (either == or =). | 
| 5142 | 3094 | |
| 5160 | 3095 | * case_tac provided for compatibility with HOL | 
| 3096 | (like the old excluded_middle_tac, but with subgoals swapped) | |
| 3097 | ||
| 4842 | 3098 | |
| 5127 | 3099 | *** Internal programming interfaces *** | 
| 5002 
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
 wenzelm parents: 
4981diff
changeset | 3100 | |
| 5251 | 3101 | * Pure: several new basic modules made available for general use, see | 
| 3102 | also src/Pure/README; | |
| 5207 | 3103 | |
| 5008 | 3104 | * improved the theory data mechanism to support encapsulation (data | 
| 3105 | kind name replaced by private Object.kind, acting as authorization | |
| 5373 | 3106 | key); new type-safe user interface via functor TheoryDataFun; generic | 
| 3107 | print_data function becomes basically useless; | |
| 5002 
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
 wenzelm parents: 
4981diff
changeset | 3108 | |
| 5251 | 3109 | * removed global_names compatibility flag -- all theory declarations | 
| 3110 | are qualified by default; | |
| 3111 | ||
| 5085 
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
 wenzelm parents: 
5077diff
changeset | 3112 | * module Pure/Syntax now offers quote / antiquote translation | 
| 
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
 wenzelm parents: 
5077diff
changeset | 3113 | functions (useful for Hoare logic etc. with implicit dependencies); | 
| 5373 | 3114 | see HOL/ex/Antiquote for an example use; | 
| 5085 
8e5a7942fdea
simplification procedure unit_eq_proc rewrites (?x::unit) = ();
 wenzelm parents: 
5077diff
changeset | 3115 | |
| 5127 | 3116 | * Simplifier now offers conversions (asm_)(full_)rewrite: simpset -> | 
| 3117 | cterm -> thm; | |
| 3118 | ||
| 5207 | 3119 | * new tactical CHANGED_GOAL for checking that a tactic modifies a | 
| 3120 | subgoal; | |
| 5142 | 3121 | |
| 5251 | 3122 | * Display.print_goals function moved to Locale.print_goals; | 
| 3123 | ||
| 5731 | 3124 | * standard print function for goals supports current_goals_markers | 
| 3125 | variable for marking begin of proof, end of proof, start of goal; the | |
| 3126 | default is ("", "", ""); setting current_goals_markers := ("<proof>",
 | |
| 3127 | "</proof>", "<goal>") causes SGML like tagged proof state printing, | |
| 3128 | for example; | |
| 3129 | ||
| 5002 
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
 wenzelm parents: 
4981diff
changeset | 3130 | |
| 
7b4c2a153738
* improved the theory data mechanism to support real encapsulation;
 wenzelm parents: 
4981diff
changeset | 3131 | |
| 4410 | 3132 | New in Isabelle98 (January 1998) | 
| 3133 | -------------------------------- | |
| 3134 | ||
| 3135 | *** Overview of INCOMPATIBILITIES (see below for more details) *** | |
| 3136 | ||
| 3137 | * changed lexical syntax of terms / types: dots made part of long | |
| 3138 | identifiers, e.g. "%x.x" no longer possible, should be "%x. x"; | |
| 3139 | ||
| 3140 | * simpset (and claset) reference variable replaced by functions | |
| 3141 | simpset / simpset_ref; | |
| 3142 | ||
| 3143 | * no longer supports theory aliases (via merge) and non-trivial | |
| 3144 | implicit merge of thms' signatures; | |
| 3145 | ||
| 3146 | * most internal names of constants changed due to qualified names; | |
| 3147 | ||
| 3148 | * changed Pure/Sequence interface (see Pure/seq.ML); | |
| 3149 | ||
| 3454 | 3150 | |
| 3715 | 3151 | *** General Changes *** | 
| 3152 | ||
| 4174 | 3153 | * hierachically structured name spaces (for consts, types, axms, thms | 
| 3943 | 3154 | etc.); new lexical class 'longid' (e.g. Foo.bar.x) may render much of | 
| 4108 | 3155 | old input syntactically incorrect (e.g. "%x.x"); COMPATIBILITY: | 
| 3156 | isatool fixdots ensures space after dots (e.g. "%x. x"); set | |
| 4174 | 3157 | long_names for fully qualified output names; NOTE: ML programs | 
| 3158 | (special tactics, packages etc.) referring to internal names may have | |
| 3159 | to be adapted to cope with fully qualified names; in case of severe | |
| 3160 | backward campatibility problems try setting 'global_names' at compile | |
| 3161 | time to have enrything declared within a flat name space; one may also | |
| 3162 | fine tune name declarations in theories via the 'global' and 'local' | |
| 3163 | section; | |
| 4108 | 3164 | |
| 3165 | * reimplemented the implicit simpset and claset using the new anytype | |
| 3166 | data filed in signatures; references simpset:simpset ref etc. are | |
| 3167 | replaced by functions simpset:unit->simpset and | |
| 3168 | simpset_ref:unit->simpset ref; COMPATIBILITY: use isatool fixclasimp | |
| 3169 | to patch your ML files accordingly; | |
| 3856 | 3170 | |
| 3857 | 3171 | * HTML output now includes theory graph data for display with Java | 
| 3172 | applet or isatool browser; data generated automatically via isatool | |
| 3901 | 3173 | usedir (see -i option, ISABELLE_USEDIR_OPTIONS); | 
| 3857 | 3174 | |
| 3856 | 3175 | * defs may now be conditional; improved rewrite_goals_tac to handle | 
| 3176 | conditional equations; | |
| 3177 | ||
| 4174 | 3178 | * defs now admits additional type arguments, using TYPE('a) syntax;
 | 
| 3179 | ||
| 3901 | 3180 | * theory aliases via merge (e.g. M=A+B+C) no longer supported, always | 
| 3181 | creates a new theory node; implicit merge of thms' signatures is | |
| 4112 | 3182 | restricted to 'trivial' ones; COMPATIBILITY: one may have to use | 
| 3901 | 3183 | transfer:theory->thm->thm in (rare) cases; | 
| 3184 | ||
| 3968 
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
 wenzelm parents: 
3964diff
changeset | 3185 | * improved handling of draft signatures / theories; draft thms (and | 
| 
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
 wenzelm parents: 
3964diff
changeset | 3186 | ctyps, cterms) are automatically promoted to real ones; | 
| 
ec138de716d9
improved handling of draft signatures / theories; draft thms (and
 wenzelm parents: 
3964diff
changeset | 3187 | |
| 3901 | 3188 | * slightly changed interfaces for oracles: admit many per theory, named | 
| 3189 | (e.g. oracle foo = mlfun), additional name argument for invoke_oracle; | |
| 3190 | ||
| 3191 | * print_goals: optional output of const types (set show_consts and | |
| 3192 | show_types); | |
| 3851 
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
 wenzelm parents: 
3846diff
changeset | 3193 | |
| 4388 | 3194 | * improved output of warnings (###) and errors (***); | 
| 3697 
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
 wenzelm parents: 
3671diff
changeset | 3195 | |
| 4178 
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
 paulson parents: 
4174diff
changeset | 3196 | * subgoal_tac displays a warning if the new subgoal has type variables; | 
| 
e64ff1c1bc70
subgoal_tac displays a warning if the new subgoal has type variables
 paulson parents: 
4174diff
changeset | 3197 | |
| 3715 | 3198 | * removed old README and Makefiles; | 
| 3697 
c5833dfcc2cc
Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories;
 wenzelm parents: 
3671diff
changeset | 3199 | |
| 3856 | 3200 | * replaced print_goals_ref hook by print_current_goals_fn and result_error_fn; | 
| 3670 
9fea3562f8c7
replaced print_goals_ref hook by print_current_goals_fn and
 wenzelm parents: 
3658diff
changeset | 3201 | |
| 3715 | 3202 | * removed obsolete init_pps and init_database; | 
| 3203 | ||
| 3204 | * deleted the obsolete tactical STATE, which was declared by | |
| 3205 | fun STATE tacfun st = tacfun st st; | |
| 3206 | ||
| 4388 | 3207 | * cd and use now support path variables, e.g. $ISABELLE_HOME, or ~ | 
| 3208 | (which abbreviates $HOME); | |
| 4269 | 3209 | |
| 3210 | * changed Pure/Sequence interface (see Pure/seq.ML); COMPATIBILITY: | |
| 3211 | use isatool fixseq to adapt your ML programs (this works for fully | |
| 3212 | qualified references to the Sequence structure only!); | |
| 3213 | ||
| 4381 | 3214 | * use_thy no longer requires writable current directory; it always | 
| 3215 | reloads .ML *and* .thy file, if either one is out of date; | |
| 4269 | 3216 | |
| 3715 | 3217 | |
| 3218 | *** Classical Reasoner *** | |
| 3219 | ||
| 3744 | 3220 | * Clarify_tac, clarify_tac, clarify_step_tac, Clarify_step_tac: new | 
| 3221 | tactics that use classical reasoning to simplify a subgoal without | |
| 3222 | splitting it into several subgoals; | |
| 3715 | 3223 | |
| 3719 | 3224 | * Safe_tac: like safe_tac but uses the default claset; | 
| 3225 | ||
| 3715 | 3226 | |
| 3227 | *** Simplifier *** | |
| 3228 | ||
| 3229 | * added simplification meta rules: | |
| 3230 | (asm_)(full_)simplify: simpset -> thm -> thm; | |
| 3231 | ||
| 3232 | * simplifier.ML no longer part of Pure -- has to be loaded by object | |
| 3233 | logics (again); | |
| 3234 | ||
| 3235 | * added prems argument to simplification procedures; | |
| 3236 | ||
| 4325 | 3237 | * HOL, FOL, ZF: added infix function `addsplits': | 
| 3238 | instead of `<simpset> setloop (split_tac <thms>)' | |
| 3239 | you can simply write `<simpset> addsplits <thms>' | |
| 3240 | ||
| 3715 | 3241 | |
| 3242 | *** Syntax *** | |
| 3243 | ||
| 4174 | 3244 | * TYPE('a) syntax for type reflection terms;
 | 
| 3245 | ||
| 3985 | 3246 | * no longer handles consts with name "" -- declare as 'syntax' instead; | 
| 3856 | 3247 | |
| 3248 | * pretty printer: changed order of mixfix annotation preference (again!); | |
| 3846 | 3249 | |
| 3715 | 3250 | * Pure: fixed idt/idts vs. pttrn/pttrns syntactic categories; | 
| 3251 | ||
| 3252 | ||
| 3253 | *** HOL *** | |
| 3254 | ||
| 5726 | 3255 | * HOL: there is a new splitter `split_asm_tac' that can be used e.g. | 
| 4189 | 3256 | with `addloop' of the simplifier to faciliate case splitting in premises. | 
| 3257 | ||
| 4035 | 3258 | * HOL/TLA: Stephan Merz's formalization of Lamport's Temporal Logic of Actions; | 
| 3985 | 3259 | |
| 3260 | * HOL/Auth: new protocol proofs including some for the Internet | |
| 4035 | 3261 | protocol TLS; | 
| 3985 | 3262 | |
| 4125 | 3263 | * HOL/Map: new theory of `maps' a la VDM; | 
| 3982 | 3264 | |
| 4335 | 3265 | * HOL/simplifier: simplification procedures nat_cancel_sums for | 
| 3266 | cancelling out common nat summands from =, <, <= (in)equalities, or | |
| 3267 | differences; simplification procedures nat_cancel_factor for | |
| 3268 | cancelling common factor from =, <, <= (in)equalities over natural | |
| 4373 | 3269 | sums; nat_cancel contains both kinds of procedures, it is installed by | 
| 3270 | default in Arith.thy -- this COULD MAKE EXISTING PROOFS FAIL; | |
| 4335 | 3271 | |
| 3580 | 3272 | * HOL/simplifier: terms of the form | 
| 4325 | 3273 | `? x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x)' (or t=x) | 
| 3580 | 3274 | are rewritten to | 
| 4035 | 3275 | `P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t)', | 
| 3276 | and those of the form | |
| 4325 | 3277 | `! x. P1(x) & ... & Pn(x) & x=t & Q1(x) & ... Qn(x) --> R(x)' (or t=x) | 
| 4035 | 3278 | are rewritten to | 
| 3279 | `P1(t) & ... & Pn(t) & Q1(t) & ... Qn(t) --> R(t)', | |
| 3280 | ||
| 3281 | * HOL/datatype | |
| 3282 | Each datatype `t' now comes with a theorem `split_t_case' of the form | |
| 3580 | 3283 | |
| 4035 | 3284 | P(t_case f1 ... fn x) = | 
| 3285 | ( (!y1 ... ym1. x = C1 y1 ... ym1 --> P(f1 y1 ... ym1)) & | |
| 3286 | ... | |
| 4189 | 3287 | (!y1 ... ymn. x = Cn y1 ... ymn --> P(f1 y1 ... ymn)) | 
| 4035 | 3288 | ) | 
| 3289 | ||
| 4930 
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
 oheimb parents: 
4915diff
changeset | 3290 | and a theorem `split_t_case_asm' of the form | 
| 4189 | 3291 | |
| 3292 | P(t_case f1 ... fn x) = | |
| 3293 | ~( (? y1 ... ym1. x = C1 y1 ... ym1 & ~P(f1 y1 ... ym1)) | | |
| 3294 | ... | |
| 3295 | (? y1 ... ymn. x = Cn y1 ... ymn & ~P(f1 y1 ... ymn)) | |
| 3296 | ) | |
| 4930 
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
 oheimb parents: 
4915diff
changeset | 3297 | which can be added to a simpset via `addsplits'. The existing theorems | 
| 
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
 oheimb parents: 
4915diff
changeset | 3298 | expand_list_case and expand_option_case have been renamed to | 
| 
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
 oheimb parents: 
4915diff
changeset | 3299 | split_list_case and split_option_case. | 
| 4189 | 3300 | |
| 4361 | 3301 | * HOL/Arithmetic: | 
| 3302 | - `pred n' is automatically converted to `n-1'. | |
| 3303 | Users are strongly encouraged not to use `pred' any longer, | |
| 3304 | because it will disappear altogether at some point. | |
| 3305 | - Users are strongly encouraged to write "0 < n" rather than | |
| 3306 | "n ~= 0". Theorems and proof tools have been modified towards this | |
| 3307 | `standard'. | |
| 4357 | 3308 | |
| 4502 | 3309 | * HOL/Lists: | 
| 3310 | the function "set_of_list" has been renamed "set" (and its theorems too); | |
| 3311 | the function "nth" now takes its arguments in the reverse order and | |
| 3312 | has acquired the infix notation "!" as in "xs!n". | |
| 3570 | 3313 | |
| 4154 | 3314 | * HOL/Set: UNIV is now a constant and is no longer translated to Compl{};
 | 
| 3315 | ||
| 3316 | * HOL/Set: The operator (UN x.B x) now abbreviates (UN x:UNIV. B x) and its | |
| 3317 | specialist theorems (like UN1_I) are gone. Similarly for (INT x.B x); | |
| 3318 | ||
| 4575 | 3319 | * HOL/record: extensible records with schematic structural subtyping | 
| 3320 | (single inheritance); EXPERIMENTAL version demonstrating the encoding, | |
| 3321 | still lacks various theorems and concrete record syntax; | |
| 3322 | ||
| 4125 | 3323 | |
| 3715 | 3324 | *** HOLCF *** | 
| 3535 | 3325 | |
| 4125 | 3326 | * removed "axioms" and "generated by" sections; | 
| 3327 | ||
| 4123 | 3328 | * replaced "ops" section by extended "consts" section, which is capable of | 
| 4125 | 3329 | handling the continuous function space "->" directly; | 
| 3330 | ||
| 3331 | * domain package: | |
| 3332 | . proves theorems immediately and stores them in the theory, | |
| 3333 | . creates hierachical name space, | |
| 3334 | . now uses normal mixfix annotations (instead of cinfix...), | |
| 3335 | . minor changes to some names and values (for consistency), | |
| 3336 | . e.g. cases -> casedist, dists_eq -> dist_eqs, [take_lemma] -> take_lemmas, | |
| 3337 | . separator between mutual domain defs: changed "," to "and", | |
| 3338 | . improved handling of sort constraints; now they have to | |
| 3339 | appear on the left-hand side of the equations only; | |
| 4123 | 3340 | |
| 3341 | * fixed LAM <x,y,zs>.b syntax; | |
| 3567 | 3342 | |
| 3744 | 3343 | * added extended adm_tac to simplifier in HOLCF -- can now discharge | 
| 3344 | adm (%x. P (t x)), where P is chainfinite and t continuous; | |
| 3579 | 3345 | |
| 3346 | ||
| 3719 | 3347 | *** FOL and ZF *** | 
| 3348 | ||
| 5726 | 3349 | * FOL: there is a new splitter `split_asm_tac' that can be used e.g. | 
| 4189 | 3350 | with `addloop' of the simplifier to faciliate case splitting in premises. | 
| 3351 | ||
| 3744 | 3352 | * qed_spec_mp, qed_goal_spec_mp, qed_goalw_spec_mp are available, as | 
| 3353 | in HOL, they strip ALL and --> from proved theorems; | |
| 3354 | ||
| 3719 | 3355 | |
| 3579 | 3356 | |
| 3006 | 3357 | New in Isabelle94-8 (May 1997) | 
| 3358 | ------------------------------ | |
| 2654 | 3359 | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3360 | *** General Changes *** | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3361 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3362 | * new utilities to build / run / maintain Isabelle etc. (in parts | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3363 | still somewhat experimental); old Makefiles etc. still functional; | 
| 2971 | 3364 | |
| 3205 | 3365 | * new 'Isabelle System Manual'; | 
| 3366 | ||
| 2825 | 3367 | * INSTALL text, together with ./configure and ./build scripts; | 
| 2773 | 3368 | |
| 3006 | 3369 | * reimplemented type inference for greater efficiency, better error | 
| 3370 | messages and clean internal interface; | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3371 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3372 | * prlim command for dealing with lots of subgoals (an easier way of | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3373 | setting goals_limit); | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3374 | |
| 3006 | 3375 | |
| 3376 | *** Syntax *** | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3377 | |
| 3116 | 3378 | * supports alternative (named) syntax tables (parser and pretty | 
| 3379 | printer); internal interface is provided by add_modesyntax(_i); | |
| 3380 | ||
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3381 | * Pure, FOL, ZF, HOL, HOLCF now support symbolic input and output; to | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3382 | be used in conjunction with the Isabelle symbol font; uses the | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3383 | "symbols" syntax table; | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3384 | |
| 2705 | 3385 | * added token_translation interface (may translate name tokens in | 
| 2756 | 3386 | arbitrary ways, dependent on their type (free, bound, tfree, ...) and | 
| 3116 | 3387 | the current print_mode); IMPORTANT: user print translation functions | 
| 3388 | are responsible for marking newly introduced bounds | |
| 3389 | (Syntax.mark_boundT); | |
| 2705 | 3390 | |
| 2730 | 3391 | * token translations for modes "xterm" and "xterm_color" that display | 
| 3006 | 3392 | names in bold, underline etc. or colors (which requires a color | 
| 3393 | version of xterm); | |
| 2730 | 3394 | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3395 | * infixes may now be declared with names independent of their syntax; | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3396 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3397 | * added typed_print_translation (like print_translation, but may | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3398 | access type of constant); | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3399 | |
| 3006 | 3400 | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3401 | *** Classical Reasoner *** | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3402 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3403 | Blast_tac: a new tactic! It is often more powerful than fast_tac, but has | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3404 | some limitations. Blast_tac... | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3405 | + ignores addss, addbefore, addafter; this restriction is intrinsic | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3406 | + ignores elimination rules that don't have the correct format | 
| 5726 | 3407 | (the conclusion MUST be a formula variable) | 
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3408 | + ignores types, which can make HOL proofs fail | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3409 | + rules must not require higher-order unification, e.g. apply_type in ZF | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3410 | [message "Function Var's argument not a bound variable" relates to this] | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3411 | + its proof strategy is more general but can actually be slower | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3412 | |
| 3107 | 3413 | * substitution with equality assumptions no longer permutes other | 
| 3414 | assumptions; | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3415 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3416 | * minor changes in semantics of addafter (now called addaltern); renamed | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3417 | setwrapper to setWrapper and compwrapper to compWrapper; added safe wrapper | 
| 3107 | 3418 | (and access functions for it); | 
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3419 | |
| 5726 | 3420 | * improved combination of classical reasoner and simplifier: | 
| 3317 | 3421 | + functions for handling clasimpsets | 
| 3422 | + improvement of addss: now the simplifier is called _after_ the | |
| 3423 | safe steps. | |
| 3424 | + safe variant of addss called addSss: uses safe simplifications | |
| 5726 | 3425 | _during_ the safe steps. It is more complete as it allows multiple | 
| 3317 | 3426 | instantiations of unknowns (e.g. with slow_tac). | 
| 3006 | 3427 | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3428 | *** Simplifier *** | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3429 | |
| 3006 | 3430 | * added interface for simplification procedures (functions that | 
| 3431 | produce *proven* rewrite rules on the fly, depending on current | |
| 3432 | redex); | |
| 3433 | ||
| 3434 | * ordering on terms as parameter (used for ordered rewriting); | |
| 3435 | ||
| 3107 | 3436 | * new functions delcongs, deleqcongs, and Delcongs. richer rep_ss; | 
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3437 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3438 | * the solver is now split into a safe and an unsafe part. | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3439 | This should be invisible for the normal user, except that the | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3440 | functions setsolver and addsolver have been renamed to setSolver and | 
| 3107 | 3441 | addSolver; added safe_asm_full_simp_tac; | 
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3442 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3443 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3444 | *** HOL *** | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3445 | |
| 3042 | 3446 | * a generic induction tactic `induct_tac' which works for all datatypes and | 
| 3107 | 3447 | also for type `nat'; | 
| 3042 | 3448 | |
| 3316 | 3449 | * a generic case distinction tactic `exhaust_tac' which works for all | 
| 3450 | datatypes and also for type `nat'; | |
| 3451 | ||
| 3452 | * each datatype comes with a function `size'; | |
| 3453 | ||
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3454 | * patterns in case expressions allow tuple patterns as arguments to | 
| 3107 | 3455 | constructors, for example `case x of [] => ... | (x,y,z)#ps => ...'; | 
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3456 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3457 | * primrec now also works with type nat; | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3458 | |
| 3338 | 3459 | * recdef: a new declaration form, allows general recursive functions to be | 
| 3460 | defined in theory files. See HOL/ex/Fib, HOL/ex/Primes, HOL/Subst/Unify. | |
| 3461 | ||
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3462 | * the constant for negation has been renamed from "not" to "Not" to | 
| 3107 | 3463 | harmonize with FOL, ZF, LK, etc.; | 
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3464 | |
| 3107 | 3465 | * HOL/ex/LFilter theory of a corecursive "filter" functional for | 
| 3466 | infinite lists; | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3467 | |
| 3227 | 3468 | * HOL/Modelcheck demonstrates invocation of model checker oracle; | 
| 3469 | ||
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3470 | * HOL/ex/Ring.thy declares cring_simp, which solves equational | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3471 | problems in commutative rings, using axiomatic type classes for + and *; | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3472 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3473 | * more examples in HOL/MiniML and HOL/Auth; | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3474 | |
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3475 | * more default rewrite rules for quantifiers, union/intersection; | 
| 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3476 | |
| 3321 | 3477 | * a new constant `arbitrary == @x.False'; | 
| 3478 | ||
| 3107 | 3479 | * HOLCF/IOA replaces old HOL/IOA; | 
| 3480 | ||
| 5726 | 3481 | * HOLCF changes: derived all rules and arities | 
| 3482 | + axiomatic type classes instead of classes | |
| 2653 
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
 slotosch parents: 
2649diff
changeset | 3483 | + typedef instead of faking type definitions | 
| 2747 | 3484 | + eliminated the internal constants less_fun, less_cfun, UU_fun, UU_cfun etc. | 
| 2730 | 3485 | + new axclasses cpo, chfin, flat with flat < chfin < pcpo < cpo < po | 
| 2653 
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
 slotosch parents: 
2649diff
changeset | 3486 | + eliminated the types void, one, tr | 
| 
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
 slotosch parents: 
2649diff
changeset | 3487 | + use unit lift and bool lift (with translations) instead of one and tr | 
| 
f1a6997cdc06
described changes for HOLCF-Version without rules and arities
 slotosch parents: 
2649diff
changeset | 3488 | + eliminated blift from Lift3.thy (use Def instead of blift) | 
| 3107 | 3489 | all eliminated rules are derived as theorems --> no visible changes ; | 
| 2649 | 3490 | |
| 3006 | 3491 | |
| 3002 
223e5d65faaa
Reorganized under headings.  Also documented Blast_tac and LFilter
 paulson parents: 
2993diff
changeset | 3492 | *** ZF *** | 
| 2553 | 3493 | |
| 2865 | 3494 | * ZF now has Fast_tac, Simp_tac and Auto_tac. Union_iff is a now a default | 
| 3495 | rewrite rule; this may affect some proofs. eq_cs is gone but can be put back | |
| 3496 | as ZF_cs addSIs [equalityI]; | |
| 2553 | 3497 | |
| 2554 | 3498 | |
| 2732 | 3499 | |
| 2553 | 3500 | New in Isabelle94-7 (November 96) | 
| 3501 | --------------------------------- | |
| 3502 | ||
| 3503 | * allowing negative levels (as offsets) in prlev and choplev; | |
| 3504 | ||
| 2554 | 3505 | * super-linear speedup for large simplifications; | 
| 3506 | ||
| 3507 | * FOL, ZF and HOL now use miniscoping: rewriting pushes | |
| 3508 | quantifications in as far as possible (COULD MAKE EXISTING PROOFS | |
| 3509 | FAIL); can suppress it using the command Delsimps (ex_simps @ | |
| 3510 | all_simps); De Morgan laws are also now included, by default; | |
| 3511 | ||
| 3512 | * improved printing of ==> : ~: | |
| 3513 | ||
| 3514 | * new object-logic "Sequents" adds linear logic, while replacing LK | |
| 3515 | and Modal (thanks to Sara Kalvala); | |
| 3516 | ||
| 3517 | * HOL/Auth: correctness proofs for authentication protocols; | |
| 3518 | ||
| 3519 | * HOL: new auto_tac combines rewriting and classical reasoning (many | |
| 3520 | examples on HOL/Auth); | |
| 3521 | ||
| 3522 | * HOL: new command AddIffs for declaring theorems of the form P=Q to | |
| 3523 | the rewriter and classical reasoner simultaneously; | |
| 3524 | ||
| 3525 | * function uresult no longer returns theorems in "standard" format; | |
| 3526 | regain previous version by: val uresult = standard o uresult; | |
| 3527 | ||
| 3528 | ||
| 3529 | ||
| 3530 | New in Isabelle94-6 | |
| 3531 | ------------------- | |
| 3532 | ||
| 3533 | * oracles -- these establish an interface between Isabelle and trusted | |
| 3534 | external reasoners, which may deliver results as theorems; | |
| 3535 | ||
| 3536 | * proof objects (in particular record all uses of oracles); | |
| 3537 | ||
| 3538 | * Simp_tac, Fast_tac, etc. that refer to implicit simpset / claset; | |
| 3539 | ||
| 3540 | * "constdefs" section in theory files; | |
| 3541 | ||
| 3542 | * "primrec" section (HOL) no longer requires names; | |
| 3543 | ||
| 3544 | * internal type "tactic" now simply "thm -> thm Sequence.seq"; | |
| 3545 | ||
| 3546 | ||
| 3547 | ||
| 3548 | New in Isabelle94-5 | |
| 3549 | ------------------- | |
| 3550 | ||
| 3551 | * reduced space requirements; | |
| 3552 | ||
| 3553 | * automatic HTML generation from theories; | |
| 3554 | ||
| 3555 | * theory files no longer require "..." (quotes) around most types; | |
| 3556 | ||
| 3557 | * new examples, including two proofs of the Church-Rosser theorem; | |
| 3558 | ||
| 3559 | * non-curried (1994) version of HOL is no longer distributed; | |
| 3560 | ||
| 2553 | 3561 | |
| 2557 | 3562 | |
| 3563 | New in Isabelle94-4 | |
| 3564 | ------------------- | |
| 3565 | ||
| 2747 | 3566 | * greatly reduced space requirements; | 
| 2557 | 3567 | |
| 3568 | * theory files (.thy) no longer require \...\ escapes at line breaks; | |
| 3569 | ||
| 5726 | 3570 | * searchable theorem database (see the section "Retrieving theorems" on | 
| 2557 | 3571 | page 8 of the Reference Manual); | 
| 3572 | ||
| 3573 | * new examples, including Grabczewski's monumental case study of the | |
| 3574 | Axiom of Choice; | |
| 3575 | ||
| 3576 | * The previous version of HOL renamed to Old_HOL; | |
| 3577 | ||
| 5726 | 3578 | * The new version of HOL (previously called CHOL) uses a curried syntax | 
| 2557 | 3579 | for functions. Application looks like f a b instead of f(a,b); | 
| 3580 | ||
| 3581 | * Mutually recursive inductive definitions finally work in HOL; | |
| 3582 | ||
| 3583 | * In ZF, pattern-matching on tuples is now available in all abstractions and | |
| 3584 | translates to the operator "split"; | |
| 3585 | ||
| 3586 | ||
| 3587 | ||
| 3588 | New in Isabelle94-3 | |
| 3589 | ------------------- | |
| 3590 | ||
| 5726 | 3591 | * new infix operator, addss, allowing the classical reasoner to | 
| 2557 | 3592 | perform simplification at each step of its search. Example: | 
| 5726 | 3593 | fast_tac (cs addss ss) | 
| 2557 | 3594 | |
| 5726 | 3595 | * a new logic, CHOL, the same as HOL, but with a curried syntax | 
| 3596 | for functions. Application looks like f a b instead of f(a,b). Also pairs | |
| 2557 | 3597 | look like (a,b) instead of <a,b>; | 
| 3598 | ||
| 3599 | * PLEASE NOTE: CHOL will eventually replace HOL! | |
| 3600 | ||
| 3601 | * In CHOL, pattern-matching on tuples is now available in all abstractions. | |
| 3602 | It translates to the operator "split". A new theory of integers is available; | |
| 3603 | ||
| 3604 | * In ZF, integer numerals now denote two's-complement binary integers. | |
| 3605 | Arithmetic operations can be performed by rewriting. See ZF/ex/Bin.ML; | |
| 3606 | ||
| 5726 | 3607 | * Many new examples: I/O automata, Church-Rosser theorem, equivalents | 
| 2557 | 3608 | of the Axiom of Choice; | 
| 3609 | ||
| 3610 | ||
| 3611 | ||
| 3612 | New in Isabelle94-2 | |
| 3613 | ------------------- | |
| 3614 | ||
| 5726 | 3615 | * Significantly faster resolution; | 
| 2557 | 3616 | |
| 3617 | * the different sections in a .thy file can now be mixed and repeated | |
| 3618 | freely; | |
| 3619 | ||
| 3620 | * Database of theorems for FOL, HOL and ZF. New | |
| 3621 | commands including qed, qed_goal and bind_thm store theorems in the database. | |
| 3622 | ||
| 3623 | * Simple database queries: return a named theorem (get_thm) or all theorems of | |
| 3624 | a given theory (thms_of), or find out what theory a theorem was proved in | |
| 3625 | (theory_of_thm); | |
| 3626 | ||
| 3627 | * Bugs fixed in the inductive definition and datatype packages; | |
| 3628 | ||
| 3629 | * The classical reasoner provides deepen_tac and depth_tac, making FOL_dup_cs | |
| 3630 | and HOL_dup_cs obsolete; | |
| 3631 | ||
| 3632 | * Syntactic ambiguities caused by the new treatment of syntax in Isabelle94-1 | |
| 3633 | have been removed; | |
| 3634 | ||
| 3635 | * Simpler definition of function space in ZF; | |
| 3636 | ||
| 3637 | * new results about cardinal and ordinal arithmetic in ZF; | |
| 3638 | ||
| 3639 | * 'subtype' facility in HOL for introducing new types as subsets of existing | |
| 3640 | types; | |
| 3641 | ||
| 3642 | ||
| 2553 | 3643 | $Id$ |