NEWS
author wenzelm
Wed, 21 Sep 2005 11:50:52 +0200
changeset 17548 4949ab06913c
parent 17538 9b089c63f088
child 17564 0350ac95c4b6
permissions -rw-r--r--
tunes;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5363
0cf15843b82f isatool install;
wenzelm
parents: 5332
diff changeset
     1
Isabelle NEWS -- history user-relevant changes
0cf15843b82f isatool install;
wenzelm
parents: 5332
diff changeset
     2
==============================================
2553
ed941505cab7 Isabelle NEWS -- history of user-visible changes;
wenzelm
parents:
diff changeset
     3
17398
wenzelm
parents: 17397
diff changeset
     4
New in Isabelle2005 (September 2005)
wenzelm
parents: 17397
diff changeset
     5
------------------------------------
14655
8a95abf87dd3 Pure: considerably improved version of 'constdefs' command;
wenzelm
parents: 14624
diff changeset
     6
8a95abf87dd3 Pure: considerably improved version of 'constdefs' command;
wenzelm
parents: 14624
diff changeset
     7
*** General ***
8a95abf87dd3 Pure: considerably improved version of 'constdefs' command;
wenzelm
parents: 14624
diff changeset
     8
15130
dc6be28d7f4e *** empty log message ***
nipkow
parents: 15127
diff changeset
     9
* Theory headers: the new header syntax for Isar theories is
dc6be28d7f4e *** empty log message ***
nipkow
parents: 15127
diff changeset
    10
dc6be28d7f4e *** empty log message ***
nipkow
parents: 15127
diff changeset
    11
  theory <name>
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    12
  imports <theory1> ... <theoryN>
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    13
  uses <file1> ... <fileM>
15130
dc6be28d7f4e *** empty log message ***
nipkow
parents: 15127
diff changeset
    14
  begin
dc6be28d7f4e *** empty log message ***
nipkow
parents: 15127
diff changeset
    15
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    16
where the 'uses' part is optional.  The previous syntax
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    17
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    18
  theory <name> = <theory1> + ... + <theoryN>:
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    19
16717
710a7a7a2b65 isatool fixheaders;
wenzelm
parents: 16690
diff changeset
    20
will disappear in the next release.  Use isatool fixheaders to convert
710a7a7a2b65 isatool fixheaders;
wenzelm
parents: 16690
diff changeset
    21
existing theory files.  Note that there is no change in ancient
17371
wenzelm
parents: 17275
diff changeset
    22
non-Isar theories now, but these will disappear soon.
15130
dc6be28d7f4e *** empty log message ***
nipkow
parents: 15127
diff changeset
    23
15475
fdf9434b04ea - Proofs are now hidden by default when generating documents
berghofe
parents: 15454
diff changeset
    24
* Theory loader: parent theories can now also be referred to via
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    25
relative and absolute paths.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    26
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
    27
* 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: 17402
diff changeset
    28
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: 17402
diff changeset
    29
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: 17402
diff changeset
    30
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: 17402
diff changeset
    31
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: 17402
diff changeset
    32
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: 17402
diff changeset
    33
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: 17402
diff changeset
    34
all theorems matching the pattern. Available in ProofGeneral under
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
    35
'ProofGeneral -> Find Theorems' or C-c C-f.  Example:
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    36
17275
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
    37
  C-c C-f (100) "(_::nat) + _ + _" intro -name: "HOL."
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    38
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    39
prints the last 100 theorems matching the pattern "(_::nat) + _ + _",
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    40
matching the current goal as introduction rule and not having "HOL."
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    41
in their name (i.e. not being defined in theory HOL).
16013
3010430d894d removed find_rewrites (superceded by improved thms_containing);
wenzelm
parents: 16000
diff changeset
    42
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
    43
* Command 'thms_containing' has been discontinued in favour of
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
    44
'find_theorems'; INCOMPATIBILITY.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
    45
17385
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
    46
* Communication with Proof General is now 8bit clean, which means that
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
    47
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: 17402
diff changeset
    48
formal and informal parts).  Cf. option -U of the Isabelle Proof
17538
wenzelm
parents: 17535
diff changeset
    49
General interface.  Here are some simple examples (cf. src/HOL/ex):
wenzelm
parents: 17535
diff changeset
    50
wenzelm
parents: 17535
diff changeset
    51
  http://isabelle.in.tum.de/library/HOL/ex/Hebrew.html
wenzelm
parents: 17535
diff changeset
    52
  http://isabelle.in.tum.de/library/HOL/ex/Chinese.html
17385
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
    53
17425
67c84a7d29f7 * Improved efficiency of the Simplifier etc.;
wenzelm
parents: 17423
diff changeset
    54
* Improved efficiency of the Simplifier and, to a lesser degree, the
67c84a7d29f7 * Improved efficiency of the Simplifier etc.;
wenzelm
parents: 17423
diff changeset
    55
Classical Reasoner.  Typical big applications run around 2 times
67c84a7d29f7 * Improved efficiency of the Simplifier etc.;
wenzelm
parents: 17423
diff changeset
    56
faster.
67c84a7d29f7 * Improved efficiency of the Simplifier etc.;
wenzelm
parents: 17423
diff changeset
    57
17519
9c10585a238c HOL/ex/Chinese.thy;
wenzelm
parents: 17495
diff changeset
    58
* ProofGeneral interface: the default settings no longer prefer xemacs
9c10585a238c HOL/ex/Chinese.thy;
wenzelm
parents: 17495
diff changeset
    59
over GNU emacs.  Users typically need to experiment with various
9c10585a238c HOL/ex/Chinese.thy;
wenzelm
parents: 17495
diff changeset
    60
variations on PROOFGENERAL_OPTIONS="... -p emacs" to find the most
9c10585a238c HOL/ex/Chinese.thy;
wenzelm
parents: 17495
diff changeset
    61
stable Emacs version on their platform.
9c10585a238c HOL/ex/Chinese.thy;
wenzelm
parents: 17495
diff changeset
    62
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    63
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    64
*** Document preparation ***
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    65
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    66
* Commands 'display_drafts' and 'print_drafts' perform simple output
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    67
of raw sources.  Only those symbols that do not require additional
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    68
LaTeX packages (depending on comments in isabellesym.sty) are
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    69
displayed properly, everything else is left verbatim.  isatool display
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    70
and isatool print are used as front ends (these are subject to the
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    71
DVI/PDF_VIEWER and PRINT_COMMAND settings, respectively).
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    72
17047
e2e2d75bb37b * Command tags control specific markup of certain regions of text (replaces usedir -H);
wenzelm
parents: 17016
diff changeset
    73
* 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: 17016
diff changeset
    74
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: 17016
diff changeset
    75
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: 17016
diff changeset
    76
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: 17016
diff changeset
    77
"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: 17016
diff changeset
    78
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: 17016
diff changeset
    79
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: 17016
diff changeset
    80
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: 17016
diff changeset
    81
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: 17016
diff changeset
    82
\isadroptag.
e2e2d75bb37b * Command tags control specific markup of certain regions of text (replaces usedir -H);
wenzelm
parents: 17016
diff changeset
    83
e2e2d75bb37b * Command tags control specific markup of certain regions of text (replaces usedir -H);
wenzelm
parents: 17016
diff changeset
    84
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: 17016
diff changeset
    85
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: 17016
diff changeset
    86
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: 17016
diff changeset
    87
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: 17016
diff changeset
    88
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: 17016
diff changeset
    89
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: 17016
diff changeset
    90
default settings produce ''document'' and ''outline'' versions as
e2e2d75bb37b * Command tags control specific markup of certain regions of text (replaces usedir -H);
wenzelm
parents: 17016
diff changeset
    91
specified above.
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    92
17402
41f1249bce37 AList, the_*
haftmann
parents: 17398
diff changeset
    93
* Several new antiquotations:
15979
wenzelm
parents: 15973
diff changeset
    94
wenzelm
parents: 15973
diff changeset
    95
  @{term_type term} prints a term with its type annotated;
wenzelm
parents: 15973
diff changeset
    96
wenzelm
parents: 15973
diff changeset
    97
  @{typeof term} prints the type of a term;
wenzelm
parents: 15973
diff changeset
    98
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
    99
  @{const const} is the same as @{term const}, but checks that the
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   100
  argument is a known logical constant;
15979
wenzelm
parents: 15973
diff changeset
   101
wenzelm
parents: 15973
diff changeset
   102
  @{term_style style term} and @{thm_style style thm} print a term or
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   103
  theorem applying a "style" to it
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   104
17117
e2bed9e82454 * The ML antiquotation prints type-checked ML expressions verbatim.
wenzelm
parents: 17097
diff changeset
   105
  @{ML text}
e2bed9e82454 * The ML antiquotation prints type-checked ML expressions verbatim.
wenzelm
parents: 17097
diff changeset
   106
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   107
Predefined styles are 'lhs' and 'rhs' printing the lhs/rhs of
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   108
definitions, equations, inequations etc., 'concl' printing only the
17393
23b7e14ce640 ... prem19
schirmer
parents: 17389
diff changeset
   109
conclusion of a meta-logical statement theorem, and 'prem1' .. 'prem19'
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   110
to print the specified premise.  TermStyle.add_style provides an ML
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   111
interface for introducing further styles.  See also the "LaTeX Sugar"
17117
e2bed9e82454 * The ML antiquotation prints type-checked ML expressions verbatim.
wenzelm
parents: 17097
diff changeset
   112
document practical applications.  The ML antiquotation prints
e2bed9e82454 * The ML antiquotation prints type-checked ML expressions verbatim.
wenzelm
parents: 17097
diff changeset
   113
type-checked ML expressions verbatim.
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   114
17259
dda237f1d299 Markup commands 'chapter' .. 'text' support optional locale specification;
wenzelm
parents: 17228
diff changeset
   115
* Markup commands 'chapter', 'section', 'subsection', 'subsubsection',
dda237f1d299 Markup commands 'chapter' .. 'text' support optional locale specification;
wenzelm
parents: 17228
diff changeset
   116
and 'text' support optional locale specification '(in loc)', which
17269
wenzelm
parents: 17259
diff changeset
   117
specifies the default context for interpreting antiquotations.  For
wenzelm
parents: 17259
diff changeset
   118
example: 'text (in lattice) {* @{thm inf_assoc}*}'.
17259
dda237f1d299 Markup commands 'chapter' .. 'text' support optional locale specification;
wenzelm
parents: 17228
diff changeset
   119
dda237f1d299 Markup commands 'chapter' .. 'text' support optional locale specification;
wenzelm
parents: 17228
diff changeset
   120
* Option 'locale=NAME' of antiquotations specifies an alternative
dda237f1d299 Markup commands 'chapter' .. 'text' support optional locale specification;
wenzelm
parents: 17228
diff changeset
   121
context interpreting the subsequent argument.  For example: @{thm
17269
wenzelm
parents: 17259
diff changeset
   122
[locale=lattice] inf_assoc}.
17259
dda237f1d299 Markup commands 'chapter' .. 'text' support optional locale specification;
wenzelm
parents: 17228
diff changeset
   123
17097
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   124
* Proper output of proof terms (@{prf ...} and @{full_prf ...}) within
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   125
a proof context.
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   126
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   127
* Proper output of antiquotations for theory commands involving a
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   128
proof context (such as 'locale' or 'theorem (in loc) ...').
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   129
17193
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   130
* Delimiters of outer tokens (string etc.) now produce separate LaTeX
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   131
macros (\isachardoublequoteopen, isachardoublequoteclose etc.).
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   132
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   133
* isatool usedir: new option -C (default true) controls whether option
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   134
-D should include a copy of the original document directory; -C false
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   135
prevents unwanted effects such as copying of administrative CVS data.
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   136
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   137
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   138
*** Pure ***
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   139
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   140
* Considerably improved version of 'constdefs' command.  Now performs
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   141
automatic type-inference of declared constants; additional support for
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   142
local structure declarations (cf. locales and HOL records), see also
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   143
isar-ref manual.  Potential INCOMPATIBILITY: need to observe strictly
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   144
sequential dependencies of definitions within a single 'constdefs'
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   145
section; moreover, the declared name needs to be an identifier.  If
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   146
all fails, consider to fall back on 'consts' and 'defs' separately.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   147
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   148
* Improved indexed syntax and implicit structures.  First of all,
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   149
indexed syntax provides a notational device for subscripted
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   150
application, using the new syntax \<^bsub>term\<^esub> for arbitrary
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   151
expressions.  Secondly, in a local context with structure
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   152
declarations, number indexes \<^sub>n or the empty index (default
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   153
number 1) refer to a certain fixed variable implicitly; option
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   154
show_structs controls printing of implicit structures.  Typical
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   155
applications of these concepts involve record types and locales.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   156
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   157
* New command 'no_syntax' removes grammar declarations (and
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   158
translations) resulting from the given syntax specification, which is
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   159
interpreted in the same manner as for the 'syntax' command.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   160
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   161
* 'Advanced' translation functions (parse_translation etc.) may depend
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   162
on the signature of the theory context being presently used for
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   163
parsing/printing, see also isar-ref manual.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   164
16856
6468a5d6a16e * Improved 'oracle' command -- type-safe;
wenzelm
parents: 16799
diff changeset
   165
* Improved 'oracle' command provides a type-safe interface to turn an
6468a5d6a16e * Improved 'oracle' command -- type-safe;
wenzelm
parents: 16799
diff changeset
   166
ML expression of type theory -> T -> term into a primitive rule of
6468a5d6a16e * Improved 'oracle' command -- type-safe;
wenzelm
parents: 16799
diff changeset
   167
type theory -> T -> thm (i.e. the functionality of Thm.invoke_oracle
6468a5d6a16e * Improved 'oracle' command -- type-safe;
wenzelm
parents: 16799
diff changeset
   168
is already included here); see also FOL/ex/IffExample.thy;
6468a5d6a16e * Improved 'oracle' command -- type-safe;
wenzelm
parents: 16799
diff changeset
   169
INCOMPATIBILITY.
6468a5d6a16e * Improved 'oracle' command -- type-safe;
wenzelm
parents: 16799
diff changeset
   170
17275
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   171
* 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: 17269
diff changeset
   172
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: 17269
diff changeset
   173
INCOMPATIBILITY.  This change avoids clashes of fact bindings for
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   174
axclasses vs. locales.
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   175
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   176
* Improved internal renaming of symbolic identifiers -- attach primes
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   177
instead of base 26 numbers.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   178
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   179
* New flag show_question_marks controls printing of leading question
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   180
marks in schematic variable names.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   181
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   182
* In schematic variable names, *any* symbol following \<^isub> or
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   183
\<^isup> is now treated as part of the base name.  For example, the
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   184
following works without printing of awkward ".0" indexes:
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   185
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   186
  lemma "x\<^isub>1 = x\<^isub>2 ==> x\<^isub>2 = x\<^isub>1"
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   187
    by simp
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   188
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   189
* Inner syntax includes (*(*nested*) comments*).
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   190
17548
wenzelm
parents: 17538
diff changeset
   191
* Pretty printer now supports unbreakable blocks, specified in mixfix
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   192
annotations as "(00...)".
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   193
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   194
* Clear separation of logical types and nonterminals, where the latter
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   195
may only occur in 'syntax' specifications or type abbreviations.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   196
Before that distinction was only partially implemented via type class
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   197
"logic" vs. "{}".  Potential INCOMPATIBILITY in rare cases of improper
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   198
use of 'types'/'consts' instead of 'nonterminals'/'syntax'.  Some very
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   199
exotic syntax specifications may require further adaption
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   200
(e.g. Cube/Base.thy).
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   201
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   202
* Removed obsolete type class "logic", use the top sort {} instead.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   203
Note that non-logical types should be declared as 'nonterminals'
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   204
rather than 'types'.  INCOMPATIBILITY for new object-logic
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   205
specifications.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   206
17535
wenzelm
parents: 17533
diff changeset
   207
* 'defs': more well-formedness checks of overloaded definitions.
wenzelm
parents: 17533
diff changeset
   208
17095
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   209
* Attributes 'induct' and 'cases': type or set names may now be
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   210
locally fixed variables as well.
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   211
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   212
* Simplifier: can now control the depth to which conditional rewriting
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   213
is traced via the PG menu Isabelle -> Settings -> Trace Simp Depth
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   214
Limit.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   215
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   216
* Simplifier: simplification procedures may now take the current
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   217
simpset into account (cf. Simplifier.simproc(_i) / mk_simproc
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   218
interface), which is very useful for calling the Simplifier
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   219
recursively.  Minor INCOMPATIBILITY: the 'prems' argument of simprocs
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   220
is gone -- use prems_of_ss on the simpset instead.  Moreover, the
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   221
low-level mk_simproc no longer applies Logic.varify internally, to
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   222
allow for use in a context of fixed variables.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   223
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   224
* thin_tac now works even if the assumption being deleted contains !!
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   225
or ==>.  More generally, erule now works even if the major premise of
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   226
the elimination rule contains !! or ==>.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   227
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   228
* Reorganized bootstrapping of the Pure theories; CPure is now derived
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   229
from Pure, which contains all common declarations already.  Both
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   230
theories are defined via plain Isabelle/Isar .thy files.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   231
INCOMPATIBILITY: elements of CPure (such as the CPure.intro /
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   232
CPure.elim / CPure.dest attributes) now appear in the Pure name space;
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   233
use isatool fixcpure to adapt your theory and ML sources.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   235
* New syntax 'name(i-j, i-, i, ...)' for referring to specific
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   236
selections of theorems in named facts via index ranges.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   237
17097
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   238
* 'print_theorems': in theory mode, really print the difference
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   239
wrt. the last state (works for interactive theory development only),
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   240
in proof mode print all local facts (cf. 'print_facts');
78f1b66f70a4 * Proper output of proof terms within a proof context;
wenzelm
parents: 17095
diff changeset
   241
17397
4ef3da248c48 hide: added option '(open)';
wenzelm
parents: 17393
diff changeset
   242
* 'hide': option '(open)' hides only base names.
4ef3da248c48 hide: added option '(open)';
wenzelm
parents: 17393
diff changeset
   243
17275
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   244
* More efficient treatment of intermediate checkpoints in interactive
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   245
theory development.
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   246
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   247
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   248
*** Locales ***
17095
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   249
17385
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   250
* New commands for the interpretation of locale expressions in
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   251
theories (1), locales (2) and proof contexts (3).  These generate
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   252
proof obligations from the expression specification.  After the
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   253
obligations have been discharged, theorems of the expression are added
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   254
to the theory, target locale or proof context.  The synopsis of the
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   255
commands is a follows:
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   256
17095
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   257
  (1) interpretation expr inst
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   258
  (2) interpretation target < expr
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   259
  (3) interpret expr inst
17385
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   260
17095
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   261
Interpretation in theories and proof contexts require a parameter
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   262
instantiation of terms from the current context.  This is applied to
17385
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   263
specifications and theorems of the interpreted expression.
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   264
Interpretation in locales only permits parameter renaming through the
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   265
locale expression.  Interpretation is smart in that interpretations
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   266
that are active already do not occur in proof obligations, neither are
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   267
instantiated theorems stored in duplicate.  Use 'print_interps' to
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   268
inspect active interpretations of a particular locale.  For details,
17436
ballarin
parents: 17425
diff changeset
   269
see the Isar Reference manual.  Examples can be found in
ballarin
parents: 17425
diff changeset
   270
HOL/Finite_Set.thy and HOL/Algebra/UnivPoly.thy.
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   271
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   272
INCOMPATIBILITY: former 'instantiate' has been withdrawn, use
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   273
'interpret' instead.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   274
17385
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   275
* New context element 'constrains' for adding type constraints to
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   276
parameters.
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   277
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   278
* Context expressions: renaming of parameters with syntax
4dcae6e62268 HOL: method comm_ring;
wenzelm
parents: 17371
diff changeset
   279
redeclaration.
17095
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   280
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   281
* Locale declaration: 'includes' disallowed.
669005f73b81 Interpretation in locales.
ballarin
parents: 17092
diff changeset
   282
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   283
* Proper static binding of attribute syntax -- i.e. types / terms /
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   284
facts mentioned as arguments are always those of the locale definition
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   285
context, independently of the context of later invocations.  Moreover,
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   286
locale operations (renaming and type / term instantiation) are applied
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   287
to attribute arguments as expected.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   288
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   289
INCOMPATIBILITY of the ML interface: always pass Attrib.src instead of
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   290
actual attributes; rare situations may require Attrib.attribute to
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   291
embed those attributes into Attrib.src that lack concrete syntax.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   292
Attribute implementations need to cooperate properly with the static
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   293
binding mechanism.  Basic parsers Args.XXX_typ/term/prop and
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   294
Attrib.XXX_thm etc. already do the right thing without further
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   295
intervention.  Only unusual applications -- such as "where" or "of"
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   296
(cf. src/Pure/Isar/attrib.ML), which process arguments depending both
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   297
on the context and the facts involved -- may have to assign parsed
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   298
values to argument tokens explicitly.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   299
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   300
* Changed parameter management in theorem generation for long goal
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   301
statements with 'includes'.  INCOMPATIBILITY: produces a different
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   302
theorem statement in rare situations.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   303
17228
19b460b39dad print_locale omits facts by default
ballarin
parents: 17193
diff changeset
   304
* Locale inspection command 'print_locale' omits notes elements.  Use
19b460b39dad print_locale omits facts by default
ballarin
parents: 17193
diff changeset
   305
'print_locale!' to have them included in the output.
19b460b39dad print_locale omits facts by default
ballarin
parents: 17193
diff changeset
   306
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   307
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   308
*** Provers ***
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   309
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   310
* Provers/hypsubst.ML: improved version of the subst method, for
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   311
single-step rewriting: it now works in bound variable contexts. New is
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   312
'subst (asm)', for rewriting an assumption.  INCOMPATIBILITY: may
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   313
rewrite a different subterm than the original subst method, which is
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   314
still available as 'simplesubst'.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   315
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   316
* Provers/quasi.ML: new transitivity reasoners for transitivity only
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   317
and quasi orders.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   318
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   319
* Provers/trancl.ML: new transitivity reasoner for transitive and
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   320
reflexive-transitive closure of relations.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   321
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   322
* Provers/blast.ML: new reference depth_limit to make blast's depth
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   323
limit (previously hard-coded with a value of 20) user-definable.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   324
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   325
* Provers/simplifier.ML has been moved to Pure, where Simplifier.setup
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   326
is peformed already.  Object-logics merely need to finish their
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   327
initial simpset configuration as before.  INCOMPATIBILITY.
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   328
15475
fdf9434b04ea - Proofs are now hidden by default when generating documents
berghofe
parents: 15454
diff changeset
   329
14700
2f885b7e5ba7 reimplementation of HOL records; only one type is created for
schirmer
parents: 14699
diff changeset
   330
*** HOL ***
2f885b7e5ba7 reimplementation of HOL records; only one type is created for
schirmer
parents: 14699
diff changeset
   331
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   332
* Symbolic syntax of Hilbert Choice Operator is now as follows:
14878
b884a7ba7238 HOL: symbolic syntax of Eps;
wenzelm
parents: 14854
diff changeset
   333
b884a7ba7238 HOL: symbolic syntax of Eps;
wenzelm
parents: 14854
diff changeset
   334
  syntax (epsilon)
b884a7ba7238 HOL: symbolic syntax of Eps;
wenzelm
parents: 14854
diff changeset
   335
    "_Eps" :: "[pttrn, bool] => 'a"    ("(3\<some>_./ _)" [0, 10] 10)
b884a7ba7238 HOL: symbolic syntax of Eps;
wenzelm
parents: 14854
diff changeset
   336
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   337
The symbol \<some> is displayed as the alternative epsilon of LaTeX
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   338
and x-symbol; use option '-m epsilon' to get it actually printed.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   339
Moreover, the mathematically important symbolic identifier \<epsilon>
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   340
becomes available as variable, constant etc.  INCOMPATIBILITY,
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   341
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   342
* "x > y" abbreviates "y < x" and "x >= y" abbreviates "y <= x".
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   343
Similarly for all quantifiers: "ALL x > y" etc.  The x-symbol for >=
17371
wenzelm
parents: 17275
diff changeset
   344
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: 16997
diff changeset
   345
support corresponding Isar calculations.
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   346
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   347
* "{x:A. P}" abbreviates "{x. x:A & P}", and similarly for "\<in>"
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   348
instead of ":".
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   349
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   350
* theory SetInterval: changed the syntax for open intervals:
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   351
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   352
  Old       New
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   353
  {..n(}    {..<n}
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   354
  {)n..}    {n<..}
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   355
  {m..n(}   {m..<n}
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   356
  {)m..n}   {m<..n}
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   357
  {)m..n(}  {m<..<n}
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   358
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   359
The old syntax is still supported but will disappear in the next
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   360
release.  For conversion use the following Emacs search and replace
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   361
patterns (these are not perfect but work quite well):
15046
d6a4c3992e9d *** empty log message ***
nipkow
parents: 15044
diff changeset
   362
d6a4c3992e9d *** empty log message ***
nipkow
parents: 15044
diff changeset
   363
  {)\([^\.]*\)\.\.  ->  {\1<\.\.}
d6a4c3992e9d *** empty log message ***
nipkow
parents: 15044
diff changeset
   364
  \.\.\([^(}]*\)(}  ->  \.\.<\1}
d6a4c3992e9d *** empty log message ***
nipkow
parents: 15044
diff changeset
   365
17533
wenzelm
parents: 17519
diff changeset
   366
* Theory Commutative_Ring (in Library): method comm_ring for proving
wenzelm
parents: 17519
diff changeset
   367
equalities in commutative rings; method 'algebra' provides a generic
wenzelm
parents: 17519
diff changeset
   368
interface.
17389
b4743198b939 Method comm_ring for proving equalities in commutative rings.
wenzelm
parents: 17385
diff changeset
   369
b4743198b939 Method comm_ring for proving equalities in commutative rings.
wenzelm
parents: 17385
diff changeset
   370
* Theory Finite_Set: changed the syntax for 'setsum', summation over
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   371
finite sets: "setsum (%x. e) A", which used to be "\<Sum>x:A. e", is
17371
wenzelm
parents: 17275
diff changeset
   372
now either "SUM x:A. e" or "\<Sum>x \<in> A. e". The bound variable can
17189
b15f8e094874 patterns in setsum and setprod
paulson
parents: 17172
diff changeset
   373
be a tuple pattern.
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   374
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   375
Some new syntax forms are available:
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   376
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   377
  "\<Sum>x | P. e"      for     "setsum (%x. e) {x. P}"
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   378
  "\<Sum>x = a..b. e"   for     "setsum (%x. e) {a..b}"
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   379
  "\<Sum>x = a..<b. e"  for     "setsum (%x. e) {a..<b}"
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   380
  "\<Sum>x < k. e"      for     "setsum (%x. e) {..<k}"
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   381
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   382
The latter form "\<Sum>x < k. e" used to be based on a separate
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   383
function "Summation", which has been discontinued.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   384
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   385
* theory Finite_Set: in structured induction proofs, the insert case
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   386
is now 'case (insert x F)' instead of the old counterintuitive 'case
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   387
(insert F x)'.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   388
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   389
* The 'refute' command has been extended to support a much larger
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   390
fragment of HOL, including axiomatic type classes, constdefs and
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   391
typedefs, inductive datatypes and recursion.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   392
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   393
* Datatype induction via method 'induct' now preserves the name of the
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   394
induction variable. For example, when proving P(xs::'a list) by
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   395
induction on xs, the induction step is now P(xs) ==> P(a#xs) rather
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   396
than P(list) ==> P(a#list) as previously.  Potential INCOMPATIBILITY
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   397
in unstructured proof scripts.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   398
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   399
* Reworked implementation of records.  Improved scalability for
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   400
records with many fields, avoiding performance problems for type
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   401
inference. Records are no longer composed of nested field types, but
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   402
of nested extension types. Therefore the record type only grows linear
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   403
in the number of extensions and not in the number of fields.  The
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   404
top-level (users) view on records is preserved.  Potential
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   405
INCOMPATIBILITY only in strange cases, where the theory depends on the
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   406
old record representation. The type generated for a record is called
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   407
<record_name>_ext_type.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   408
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   409
Flag record_quick_and_dirty_sensitive can be enabled to skip the
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   410
proofs triggered by a record definition or a simproc (if
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   411
quick_and_dirty is enabled).  Definitions of large records can take
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   412
quite long.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   413
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   414
New simproc record_upd_simproc for simplification of multiple record
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   415
updates enabled by default.  Moreover, trivial updates are also
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   416
removed: r(|x := x r|) = r.  INCOMPATIBILITY: old proofs break
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   417
occasionally, since simplification is more powerful by default.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   418
17275
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   419
* typedef: proper support for polymorphic sets, which contain extra
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   420
type-variables in the term.
44d8fbc2e52d axclass: name space prefix is now "c_class" instead of just "c";
wenzelm
parents: 17269
diff changeset
   421
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   422
* Simplifier: automatically reasons about transitivity chains
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   423
involving "trancl" (r^+) and "rtrancl" (r^*) by setting up tactics
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   424
provided by Provers/trancl.ML as additional solvers.  INCOMPATIBILITY:
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   425
old proofs break occasionally as simplification may now solve more
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   426
goals than previously.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   427
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   428
* Simplifier: converts x <= y into x = y if assumption y <= x is
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   429
present.  Works for all partial orders (class "order"), in particular
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   430
numbers and sets.  For linear orders (e.g. numbers) it treats ~ x < y
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   431
just like y <= x.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   432
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   433
* Simplifier: new simproc for "let x = a in f x".  If a is a free or
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   434
bound variable or a constant then the let is unfolded.  Otherwise
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   435
first a is simplified to b, and then f b is simplified to g. If
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   436
possible we abstract b from g arriving at "let x = b in h x",
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   437
otherwise we unfold the let and arrive at g.  The simproc can be
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   438
enabled/disabled by the reference use_let_simproc.  Potential
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   439
INCOMPATIBILITY since simplification is more powerful by default.
15776
e2f45df0696f refute extended
webertj
parents: 15763
diff changeset
   440
16563
a92f96951355 meson method taking an argument list
paulson
parents: 16547
diff changeset
   441
* Classical reasoning: the meson method now accepts theorems as arguments.
a92f96951355 meson method taking an argument list
paulson
parents: 16547
diff changeset
   442
16891
wenzelm
parents: 16888
diff changeset
   443
* Theory OrderedGroup and Ring_and_Field: various additions and
wenzelm
parents: 16888
diff changeset
   444
improvements to faciliate calculations involving equalities and
wenzelm
parents: 16888
diff changeset
   445
inequalities.
wenzelm
parents: 16888
diff changeset
   446
wenzelm
parents: 16888
diff changeset
   447
The following theorems have been eliminated or modified
wenzelm
parents: 16888
diff changeset
   448
(INCOMPATIBILITY):
16888
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   449
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   450
  abs_eq             now named abs_of_nonneg
17371
wenzelm
parents: 17275
diff changeset
   451
  abs_of_ge_0        now named abs_of_nonneg
wenzelm
parents: 17275
diff changeset
   452
  abs_minus_eq       now named abs_of_nonpos
16888
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   453
  imp_abs_id         now named abs_of_nonneg
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   454
  imp_abs_neg_id     now named abs_of_nonpos
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   455
  mult_pos           now named mult_pos_pos
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   456
  mult_pos_le        now named mult_nonneg_nonneg
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   457
  mult_pos_neg_le    now named mult_nonneg_nonpos
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   458
  mult_pos_neg2_le   now named mult_nonneg_nonpos2
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   459
  mult_neg           now named mult_neg_neg
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   460
  mult_neg_le        now named mult_nonpos_nonpos
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   461
16891
wenzelm
parents: 16888
diff changeset
   462
* Theory Parity: added rules for simplifying exponents.
wenzelm
parents: 16888
diff changeset
   463
17092
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   464
* Theory List:
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   465
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   466
The following theorems have been eliminated or modified
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   467
(INCOMPATIBILITY):
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   468
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   469
  list_all_Nil       now named list_all.simps(1)
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   470
  list_all_Cons      now named list_all.simps(2)
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   471
  list_all_conv      now named list_all_iff
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   472
  set_mem_eq         now named mem_iff
16971afe75f6 *** empty log message ***
nipkow
parents: 17047
diff changeset
   473
16929
wenzelm
parents: 16908
diff changeset
   474
* Theories SetsAndFunctions and BigO (see HOL/Library) support
wenzelm
parents: 16908
diff changeset
   475
asymptotic "big O" calculations.  See the notes in BigO.thy.
wenzelm
parents: 16908
diff changeset
   476
16888
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   477
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   478
*** HOL-Complex ***
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   479
16891
wenzelm
parents: 16888
diff changeset
   480
* Theory RealDef: better support for embedding natural numbers and
wenzelm
parents: 16888
diff changeset
   481
integers in the reals.
wenzelm
parents: 16888
diff changeset
   482
wenzelm
parents: 16888
diff changeset
   483
The following theorems have been eliminated or modified
wenzelm
parents: 16888
diff changeset
   484
(INCOMPATIBILITY):
wenzelm
parents: 16888
diff changeset
   485
17016
73c74cb1d744 mentioned change to exp_ge_add_one_self, new transitivity rules
avigad
parents: 16997
diff changeset
   486
  exp_ge_add_one_self  now requires no hypotheses
73c74cb1d744 mentioned change to exp_ge_add_one_self, new transitivity rules
avigad
parents: 16997
diff changeset
   487
  real_of_int_add      reversed direction of equality (use [symmetric])
73c74cb1d744 mentioned change to exp_ge_add_one_self, new transitivity rules
avigad
parents: 16997
diff changeset
   488
  real_of_int_minus    reversed direction of equality (use [symmetric])
73c74cb1d744 mentioned change to exp_ge_add_one_self, new transitivity rules
avigad
parents: 16997
diff changeset
   489
  real_of_int_diff     reversed direction of equality (use [symmetric])
73c74cb1d744 mentioned change to exp_ge_add_one_self, new transitivity rules
avigad
parents: 16997
diff changeset
   490
  real_of_int_mult     reversed direction of equality (use [symmetric])
16891
wenzelm
parents: 16888
diff changeset
   491
wenzelm
parents: 16888
diff changeset
   492
* Theory RComplete: expanded support for floor and ceiling functions.
16888
7cb4bcfa058e added list of theorem changes to NEWS
avigad
parents: 16869
diff changeset
   493
16962
f99dd1274c5f mentioned Ln in NEWS
avigad
parents: 16929
diff changeset
   494
* Theory Ln is new, with properties of the natural logarithm
f99dd1274c5f mentioned Ln in NEWS
avigad
parents: 16929
diff changeset
   495
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   496
* Hyperreal: There is a new type constructor "star" for making
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   497
nonstandard types.  The old type names are now type synonyms:
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   498
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   499
  hypreal = real star
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   500
  hypnat = nat star
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   501
  hcomplex = complex star
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   502
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   503
* Hyperreal: Many groups of similarly-defined constants have been
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   504
replaced by polymorphic versions (INCOMPATIBILITY):
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   505
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   506
  star_of <-- hypreal_of_real, hypnat_of_nat, hcomplex_of_complex
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   507
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   508
  starset      <-- starsetNat, starsetC
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   509
  *s*          <-- *sNat*, *sc*
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   510
  starset_n    <-- starsetNat_n, starsetC_n
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   511
  *sn*         <-- *sNatn*, *scn*
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   512
  InternalSets <-- InternalNatSets, InternalCSets
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   513
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   514
  starfun      <-- starfun{Nat,Nat2,C,RC,CR}
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   515
  *f*          <-- *fNat*, *fNat2*, *fc*, *fRc*, *fcR*
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   516
  starfun_n    <-- starfun{Nat,Nat2,C,RC,CR}_n
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   517
  *fn*         <-- *fNatn*, *fNat2n*, *fcn*, *fRcn*, *fcRn*
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   518
  InternalFuns <-- InternalNatFuns, InternalNatFuns2, Internal{C,RC,CR}Funs
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   519
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   520
* Hyperreal: Many type-specific theorems have been removed in favor of
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   521
theorems specific to various axiomatic type classes (INCOMPATIBILITY):
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   522
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   523
  add_commute <-- {hypreal,hypnat,hcomplex}_add_commute
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   524
  add_assoc   <-- {hypreal,hypnat,hcomplex}_add_assocs
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   525
  OrderedGroup.add_0 <-- {hypreal,hypnat,hcomplex}_add_zero_left
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   526
  OrderedGroup.add_0_right <-- {hypreal,hcomplex}_add_zero_right
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   527
  right_minus <-- hypreal_add_minus
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   528
  left_minus <-- {hypreal,hcomplex}_add_minus_left
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   529
  mult_commute <-- {hypreal,hypnat,hcomplex}_mult_commute
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   530
  mult_assoc <-- {hypreal,hypnat,hcomplex}_mult_assoc
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   531
  mult_1_left <-- {hypreal,hypnat}_mult_1, hcomplex_mult_one_left
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   532
  mult_1_right <-- hcomplex_mult_one_right
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   533
  mult_zero_left <-- hcomplex_mult_zero_left
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   534
  left_distrib <-- {hypreal,hypnat,hcomplex}_add_mult_distrib
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   535
  right_distrib <-- hypnat_add_mult_distrib2
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   536
  zero_neq_one <-- {hypreal,hypnat,hcomplex}_zero_not_eq_one
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   537
  right_inverse <-- hypreal_mult_inverse
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   538
  left_inverse <-- hypreal_mult_inverse_left, hcomplex_mult_inv_left
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   539
  order_refl <-- {hypreal,hypnat}_le_refl
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   540
  order_trans <-- {hypreal,hypnat}_le_trans
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   541
  order_antisym <-- {hypreal,hypnat}_le_anti_sym
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   542
  order_less_le <-- {hypreal,hypnat}_less_le
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   543
  linorder_linear <-- {hypreal,hypnat}_le_linear
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   544
  add_left_mono <-- {hypreal,hypnat}_add_left_mono
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   545
  mult_strict_left_mono <-- {hypreal,hypnat}_mult_less_mono2
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   546
  add_nonneg_nonneg <-- hypreal_le_add_order
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   547
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   548
* Hyperreal: Separate theorems having to do with type-specific
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   549
versions of constants have been merged into theorems that apply to the
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   550
new polymorphic constants (INCOMPATIBILITY):
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   551
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   552
  STAR_UNIV_set <-- {STAR_real,NatStar_real,STARC_complex}_set
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   553
  STAR_empty_set <-- {STAR,NatStar,STARC}_empty_set
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   554
  STAR_Un <-- {STAR,NatStar,STARC}_Un
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   555
  STAR_Int <-- {STAR,NatStar,STARC}_Int
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   556
  STAR_Compl <-- {STAR,NatStar,STARC}_Compl
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   557
  STAR_subset <-- {STAR,NatStar,STARC}_subset
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   558
  STAR_mem <-- {STAR,NatStar,STARC}_mem
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   559
  STAR_mem_Compl <-- {STAR,STARC}_mem_Compl
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   560
  STAR_diff <-- {STAR,STARC}_diff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   561
  STAR_star_of_image_subset <-- {STAR_hypreal_of_real, NatStar_hypreal_of_real,
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   562
    STARC_hcomplex_of_complex}_image_subset
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   563
  starset_n_Un <-- starset{Nat,C}_n_Un
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   564
  starset_n_Int <-- starset{Nat,C}_n_Int
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   565
  starset_n_Compl <-- starset{Nat,C}_n_Compl
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   566
  starset_n_diff <-- starset{Nat,C}_n_diff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   567
  InternalSets_Un <-- Internal{Nat,C}Sets_Un
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   568
  InternalSets_Int <-- Internal{Nat,C}Sets_Int
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   569
  InternalSets_Compl <-- Internal{Nat,C}Sets_Compl
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   570
  InternalSets_diff <-- Internal{Nat,C}Sets_diff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   571
  InternalSets_UNIV_diff <-- Internal{Nat,C}Sets_UNIV_diff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   572
  InternalSets_starset_n <-- Internal{Nat,C}Sets_starset{Nat,C}_n
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   573
  starset_starset_n_eq <-- starset{Nat,C}_starset{Nat,C}_n_eq
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   574
  starset_n_starset <-- starset{Nat,C}_n_starset{Nat,C}
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   575
  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: 17436
diff changeset
   576
  starfun <-- starfun{Nat,Nat2,C,RC,CR}
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   577
  starfun_mult <-- starfun{Nat,Nat2,C,RC,CR}_mult
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   578
  starfun_add <-- starfun{Nat,Nat2,C,RC,CR}_add
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   579
  starfun_minus <-- starfun{Nat,Nat2,C,RC,CR}_minus
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   580
  starfun_diff <-- starfun{C,RC,CR}_diff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   581
  starfun_o <-- starfun{NatNat2,Nat2,_stafunNat,C,C_starfunRC,_starfunCR}_o
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   582
  starfun_o2 <-- starfun{NatNat2,_stafunNat,C,C_starfunRC,_starfunCR}_o2
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   583
  starfun_const_fun <-- starfun{Nat,Nat2,C,RC,CR}_const_fun
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   584
  starfun_inverse <-- starfun{Nat,C,RC,CR}_inverse
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   585
  starfun_eq <-- starfun{Nat,Nat2,C,RC,CR}_eq
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   586
  starfun_eq_iff <-- starfun{C,RC,CR}_eq_iff
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   587
  starfun_Id <-- starfunC_Id
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   588
  starfun_approx <-- starfun{Nat,CR}_approx
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   589
  starfun_capprox <-- starfun{C,RC}_capprox
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   590
  starfun_abs <-- starfunNat_rabs
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   591
  starfun_lambda_cancel <-- starfun{C,CR,RC}_lambda_cancel
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   592
  starfun_lambda_cancel2 <-- starfun{C,CR,RC}_lambda_cancel2
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   593
  starfun_mult_HFinite_approx <-- starfunCR_mult_HFinite_capprox
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   594
  starfun_mult_CFinite_capprox <-- starfun{C,RC}_mult_CFinite_capprox
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   595
  starfun_add_capprox <-- starfun{C,RC}_add_capprox
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   596
  starfun_add_approx <-- starfunCR_add_approx
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   597
  starfun_inverse_inverse <-- starfunC_inverse_inverse
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   598
  starfun_divide <-- starfun{C,CR,RC}_divide
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   599
  starfun_n <-- starfun{Nat,C}_n
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   600
  starfun_n_mult <-- starfun{Nat,C}_n_mult
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   601
  starfun_n_add <-- starfun{Nat,C}_n_add
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   602
  starfun_n_add_minus <-- starfunNat_n_add_minus
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   603
  starfun_n_const_fun <-- starfun{Nat,C}_n_const_fun
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   604
  starfun_n_minus <-- starfun{Nat,C}_n_minus
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   605
  starfun_n_eq <-- starfun{Nat,C}_n_eq
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   606
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   607
  star_n_add <-- {hypreal,hypnat,hcomplex}_add
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   608
  star_n_minus <-- {hypreal,hcomplex}_minus
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   609
  star_n_diff <-- {hypreal,hcomplex}_diff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   610
  star_n_mult <-- {hypreal,hcomplex}_mult
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   611
  star_n_inverse <-- {hypreal,hcomplex}_inverse
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   612
  star_n_le <-- {hypreal,hypnat}_le
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   613
  star_n_less <-- {hypreal,hypnat}_less
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   614
  star_n_zero_num <-- {hypreal,hypnat,hcomplex}_zero_num
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   615
  star_n_one_num <-- {hypreal,hypnat,hcomplex}_one_num
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   616
  star_n_abs <-- hypreal_hrabs
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   617
  star_n_divide <-- hcomplex_divide
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   618
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   619
  star_of_add <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_add
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   620
  star_of_minus <-- {hypreal_of_real,hcomplex_of_complex}_minus
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   621
  star_of_diff <-- hypreal_of_real_diff
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   622
  star_of_mult <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_mult
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   623
  star_of_one <-- {hypreal_of_real,hcomplex_of_complex}_one
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   624
  star_of_zero <-- {hypreal_of_real,hypnat_of_nat,hcomplex_of_complex}_zero
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   625
  star_of_le <-- {hypreal_of_real,hypnat_of_nat}_le_iff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   626
  star_of_less <-- {hypreal_of_real,hypnat_of_nat}_less_iff
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   627
  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: 17436
diff changeset
   628
  star_of_inverse <-- {hypreal_of_real,hcomplex_of_complex}_inverse
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   629
  star_of_divide <-- {hypreal_of_real,hcomplex_of_complex}_divide
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   630
  star_of_of_nat <-- {hypreal_of_real,hcomplex_of_complex}_of_nat
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   631
  star_of_of_int <-- {hypreal_of_real,hcomplex_of_complex}_of_int
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   632
  star_of_number_of <-- {hypreal,hcomplex}_number_of
17423
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   633
  star_of_number_less <-- number_of_less_hypreal_of_real_iff
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   634
  star_of_number_le <-- number_of_le_hypreal_of_real_iff
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   635
  star_of_eq_number <-- hypreal_of_real_eq_number_of_iff
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   636
  star_of_less_number <-- hypreal_of_real_less_number_of_iff
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   637
  star_of_le_number <-- hypreal_of_real_le_number_of_iff
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   638
  star_of_power <-- hypreal_of_real_power
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   639
  star_of_eq_0 <-- hcomplex_of_complex_zero_iff
de6b33a4efda incorporated HOL/Hyperreal/CHANGES;
wenzelm
parents: 17408
diff changeset
   640
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   641
* Hyperreal: new method "transfer" that implements the transfer
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   642
principle of nonstandard analysis. With a subgoal that mentions
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   643
nonstandard types like "'a star", the command "apply transfer"
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   644
replaces it with an equivalent one that mentions only standard types.
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   645
To be successful, all free variables must have standard types; non-
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   646
standard variables must have explicit universal quantifiers.
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   647
14655
8a95abf87dd3 Pure: considerably improved version of 'constdefs' command;
wenzelm
parents: 14624
diff changeset
   648
14682
a5072752114c HOLCF: discontinued special version of 'constdefs';
wenzelm
parents: 14655
diff changeset
   649
*** HOLCF ***
a5072752114c HOLCF: discontinued special version of 'constdefs';
wenzelm
parents: 14655
diff changeset
   650
17533
wenzelm
parents: 17519
diff changeset
   651
* Discontinued special version of 'constdefs' (which used to support
wenzelm
parents: 17519
diff changeset
   652
continuous functions) in favor of the general Pure one with full
wenzelm
parents: 17519
diff changeset
   653
type-inference.
wenzelm
parents: 17519
diff changeset
   654
wenzelm
parents: 17519
diff changeset
   655
* New simplification procedure for solving continuity conditions; it
wenzelm
parents: 17519
diff changeset
   656
is much faster on terms with many nested lambda abstractions (cubic
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   657
instead of exponential time).
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   658
17533
wenzelm
parents: 17519
diff changeset
   659
* New syntax for domain package: selector names are now optional.
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   660
Parentheses should be omitted unless argument is lazy, for example:
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   661
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   662
  domain 'a stream = cons "'a" (lazy "'a stream")
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   663
17533
wenzelm
parents: 17519
diff changeset
   664
* New command 'fixrec' for defining recursive functions with pattern
wenzelm
parents: 17519
diff changeset
   665
matching; defining multiple functions with mutual recursion is also
wenzelm
parents: 17519
diff changeset
   666
supported.  Patterns may include the constants cpair, spair, up, sinl,
wenzelm
parents: 17519
diff changeset
   667
sinr, or any data constructor defined by the domain package. The given
wenzelm
parents: 17519
diff changeset
   668
equations are proven as rewrite rules. See HOLCF/ex/Fixrec_ex.thy for
wenzelm
parents: 17519
diff changeset
   669
syntax and examples.
wenzelm
parents: 17519
diff changeset
   670
wenzelm
parents: 17519
diff changeset
   671
* New commands 'cpodef' and 'pcpodef' for defining predicate subtypes
wenzelm
parents: 17519
diff changeset
   672
of cpo and pcpo types. Syntax is exactly like the 'typedef' command,
wenzelm
parents: 17519
diff changeset
   673
but the proof obligation additionally includes an admissibility
wenzelm
parents: 17519
diff changeset
   674
requirement. The packages generate instances of class cpo or pcpo,
wenzelm
parents: 17519
diff changeset
   675
with continuity and strictness theorems for Rep and Abs.
17442
c0f0b92c198c add HOLCF entries for pcpodef, cont_proc, fixrec;
huffman
parents: 17436
diff changeset
   676
14682
a5072752114c HOLCF: discontinued special version of 'constdefs';
wenzelm
parents: 14655
diff changeset
   677
14885
0a840138dcd7 Groups, Rings and supporting lemmas in ZF
paulson
parents: 14878
diff changeset
   678
*** ZF ***
0a840138dcd7 Groups, Rings and supporting lemmas in ZF
paulson
parents: 14878
diff changeset
   679
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   680
* ZF/ex: theories Group and Ring provide examples in abstract algebra,
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   681
including the First Isomorphism Theorem (on quotienting by the kernel
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   682
of a homomorphism).
15089
430264838064 ZF/Simplifier: second copy of context type solver;
wenzelm
parents: 15076
diff changeset
   683
430264838064 ZF/Simplifier: second copy of context type solver;
wenzelm
parents: 15076
diff changeset
   684
* ZF/Simplifier: install second copy of type solver that actually
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   685
makes use of TC rules declared to Isar proof contexts (or locales);
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   686
the old version is still required for ML proof scripts.
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   687
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   688
17445
3c9c46b820f5 Cube: converted to Isar, use locales;
wenzelm
parents: 17442
diff changeset
   689
*** Cube ***
3c9c46b820f5 Cube: converted to Isar, use locales;
wenzelm
parents: 17442
diff changeset
   690
3c9c46b820f5 Cube: converted to Isar, use locales;
wenzelm
parents: 17442
diff changeset
   691
* Converted to Isar theory format; use locales instead of axiomatic
3c9c46b820f5 Cube: converted to Isar, use locales;
wenzelm
parents: 17442
diff changeset
   692
theories.
3c9c46b820f5 Cube: converted to Isar, use locales;
wenzelm
parents: 17442
diff changeset
   693
3c9c46b820f5 Cube: converted to Isar, use locales;
wenzelm
parents: 17442
diff changeset
   694
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   695
*** ML ***
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   696
15973
wenzelm
parents: 15931
diff changeset
   697
* Pure/library.ML no longer defines its own option datatype, but uses
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   698
that of the SML basis, which has constructors NONE and SOME instead of
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   699
None and Some, as well as exception Option.Option instead of OPTION.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   700
The functions the, if_none, is_some, is_none have been adapted
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   701
accordingly, while Option.map replaces apsome.
15973
wenzelm
parents: 15931
diff changeset
   702
16860
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   703
* 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: 16856
diff changeset
   704
the standard exceptions Empty and Subscript, as well as
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   705
Library.UnequalLengths.  Function like Library.hd and Library.tl are
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   706
superceded by the standard hd and tl functions etc.
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   707
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   708
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: 16856
diff changeset
   709
toplevel, as they are variants of predefined functions.  The following
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   710
suggests how one can translate existing code:
15973
wenzelm
parents: 15931
diff changeset
   711
wenzelm
parents: 15931
diff changeset
   712
    rev_append xs ys = List.revAppend (xs, ys)
wenzelm
parents: 15931
diff changeset
   713
    nth_elem (i, xs) = List.nth (xs, i)
wenzelm
parents: 15931
diff changeset
   714
    last_elem xs = List.last xs
wenzelm
parents: 15931
diff changeset
   715
    flat xss = List.concat xss
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   716
    seq fs = List.app fs
15973
wenzelm
parents: 15931
diff changeset
   717
    partition P xs = List.partition P xs
wenzelm
parents: 15931
diff changeset
   718
    mapfilter f xs = List.mapPartial f xs
wenzelm
parents: 15931
diff changeset
   719
16860
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   720
* Pure/library.ML: several combinators for linear functional
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   721
transformations, notably reverse application and composition:
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   722
17371
wenzelm
parents: 17275
diff changeset
   723
  x |> f                f #> g
wenzelm
parents: 17275
diff changeset
   724
  (x, y) |-> f          f #-> g
16860
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   725
17495
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   726
* Pure/library.ML: introduced/changed precedence of infix operators:
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   727
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   728
  infix 1 |> |-> ||> ||>> |>> |>>> #> #->;
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   729
  infix 2 ?;
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   730
  infix 3 o oo ooo oooo;
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   731
  infix 4 ~~ upto downto;
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   732
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   733
Maybe INCOMPATIBILITY when any of those is used in conjunction with other
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   734
infix operators.
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   735
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   736
* Pure/library.ML: natural list combinators fold, fold_rev, and
16869
bc98da5727be reverted from fold_yield to fold_map
haftmann
parents: 16868
diff changeset
   737
fold_map support linear functional transformations and nesting.  For
16860
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   738
example:
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   739
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   740
  fold f [x1, ..., xN] y =
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   741
    y |> f x1 |> ... |> f xN
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   742
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   743
  (fold o fold) f [xs1, ..., xsN] y =
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   744
    y |> fold f xs1 |> ... |> fold f xsN
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   745
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   746
  fold f [x1, ..., xN] =
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   747
    f x1 #> ... #> f xN
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   748
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   749
  (fold o fold) f [xs1, ..., xsN] =
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   750
    fold f xs1 #> ... #> fold f xsN
43abdba4da5c * Pure/library.ML: several combinators for linear functional transformations;
wenzelm
parents: 16856
diff changeset
   751
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   752
* 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: 17402
diff changeset
   753
available:
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   754
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   755
  the:               'a option -> 'a  (*partial*)
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   756
  these:             'a option -> 'a  where 'a = 'b list
17402
41f1249bce37 AList, the_*
haftmann
parents: 17398
diff changeset
   757
  the_default: 'a -> 'a option -> 'a
41f1249bce37 AList, the_*
haftmann
parents: 17398
diff changeset
   758
  the_list:          'a option -> 'a list
41f1249bce37 AList, the_*
haftmann
parents: 17398
diff changeset
   759
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   760
* Pure/General: structure AList (cf. Pure/General/alist.ML) provides
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   761
basic operations for association lists, following natural argument
17495
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   762
order; ; moreover the explicit equality predicate passed here avoids
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   763
potentially expensive polymorphic runtime equality checks.
ddb14cbec6a2 infix operator precedence
haftmann
parents: 17457
diff changeset
   764
The old functions may be expressed as follows:
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   765
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   766
  assoc = uncurry (AList.lookup (op =))
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   767
  assocs = these oo AList.lookup (op =)
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   768
  overwrite = uncurry (AList.update (op =)) o swap
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   769
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   770
* Pure/General: structure OrdList (cf. Pure/General/ord_list.ML)
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   771
provides a reasonably efficient light-weight implementation of sets as
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   772
lists.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   773
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   774
* 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: 17402
diff changeset
   775
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: 17402
diff changeset
   776
follow natural argument order (for use with fold etc.);
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   777
INCOMPATIBILITY, use (uncurry Symtab.lookup) etc. as last resort.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   778
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   779
* Pure/General: output via the Isabelle channels of
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   780
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: 17402
diff changeset
   781
hook for arbitrary transformations depending on the print_mode
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   782
(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: 17402
diff changeset
   783
function wins).  Already formatted output may be embedded into further
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   784
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: 17402
diff changeset
   785
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: 17402
diff changeset
   786
accommodate easy composition of diagnostic messages etc.  Programmers
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   787
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: 17402
diff changeset
   788
some notable exceptions: Output.output is required when bypassing the
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   789
standard channels (writeln etc.), or in token translations to produce
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   790
properly formatted results; Output.raw is required when capturing
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   791
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: 17402
diff changeset
   792
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: 17402
diff changeset
   793
Output.raw have no effect.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   794
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   795
* Pure/General: Output.time_accumulator NAME creates an operator ('a
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   796
-> 'b) -> 'a -> 'b to measure runtime and count invocations; the
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   797
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: 17402
diff changeset
   798
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   799
* 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: 17402
diff changeset
   800
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: 17402
diff changeset
   801
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: 17402
diff changeset
   802
internal and external process view of file names are different.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   803
16689
05b986733a59 * Pure: structure OrdList (cf. Pure/General/ord_list.ML);
wenzelm
parents: 16662
diff changeset
   804
* Pure: more efficient orders for basic syntactic entities: added
05b986733a59 * Pure: structure OrdList (cf. Pure/General/ord_list.ML);
wenzelm
parents: 16662
diff changeset
   805
fast_string_ord, fast_indexname_ord, fast_term_ord; changed sort_ord
05b986733a59 * Pure: structure OrdList (cf. Pure/General/ord_list.ML);
wenzelm
parents: 16662
diff changeset
   806
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: 16662
diff changeset
   807
NOT affected); structures Symtab, Vartab, Typtab, Termtab use the fast
05b986733a59 * Pure: structure OrdList (cf. Pure/General/ord_list.ML);
wenzelm
parents: 16662
diff changeset
   808
orders now -- potential INCOMPATIBILITY for code that depends on a
05b986733a59 * Pure: structure OrdList (cf. Pure/General/ord_list.ML);
wenzelm
parents: 16662
diff changeset
   809
particular order for Symtab.keys, Symtab.dest, etc. (consider using
05b986733a59 * Pure: structure OrdList (cf. Pure/General/ord_list.ML);
wenzelm
parents: 16662
diff changeset
   810
Library.sort_strings on result).
05b986733a59 * Pure: structure OrdList (cf. Pure/General/ord_list.ML);
wenzelm
parents: 16662
diff changeset
   811
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   812
* 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: 17402
diff changeset
   813
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: 17402
diff changeset
   814
argument order.  Supercedes previous foldl_XXX versions, add_frees,
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   815
add_vars etc. have been adapted as well: INCOMPATIBILITY.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   816
16151
cf7f146086bc ML Pure: name spaces have been refined;
wenzelm
parents: 16112
diff changeset
   817
* Pure: name spaces have been refined, with significant changes of the
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   818
internal interfaces -- INCOMPATIBILITY.  Renamed cond_extern(_table)
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   819
to extern(_table).  The plain name entry path is superceded by a
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   820
general 'naming' context, which also includes the 'policy' to produce
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   821
a fully qualified name and external accesses of a fully qualified
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   822
name; NameSpace.extend is superceded by context dependent
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   823
Sign.declare_name.  Several theory and proof context operations modify
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   824
the naming context.  Especially note Theory.restore_naming and
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   825
ProofContext.restore_naming to get back to a sane state; note that
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   826
Theory.add_path is no longer sufficient to recover from
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   827
Theory.absolute_path in particular.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   828
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   829
* Pure: new flags short_names (default false) and unique_names
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   830
(default true) for controlling output of qualified names.  If
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   831
short_names is set, names are printed unqualified.  If unique_names is
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   832
reset, the name prefix is reduced to the minimum required to achieve
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   833
the original result when interning again, even if there is an overlap
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   834
with earlier declarations.
16151
cf7f146086bc ML Pure: name spaces have been refined;
wenzelm
parents: 16112
diff changeset
   835
16456
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   836
* Pure/TheoryDataFun: change of the argument structure; 'prep_ext' is
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   837
now 'extend', and 'merge' gets an additional Pretty.pp argument
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   838
(useful for printing error messages).  INCOMPATIBILITY.
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   839
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   840
* Pure: major reorganization of the theory context.  Type Sign.sg and
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   841
Theory.theory are now identified, referring to the universal
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   842
Context.theory (see Pure/context.ML).  Actual signature and theory
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   843
content is managed as theory data.  The old code and interfaces were
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   844
spread over many files and structures; the new arrangement introduces
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   845
considerable INCOMPATIBILITY to gain more clarity:
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   846
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   847
  Context -- theory management operations (name, identity, inclusion,
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   848
    parents, ancestors, merge, etc.), plus generic theory data;
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   849
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   850
  Sign -- logical signature and syntax operations (declaring consts,
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   851
    types, etc.), plus certify/read for common entities;
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   852
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   853
  Theory -- logical theory operations (stating axioms, definitions,
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   854
    oracles), plus a copy of logical signature operations (consts,
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   855
    types, etc.); also a few basic management operations (Theory.copy,
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   856
    Theory.merge, etc.)
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   857
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   858
The most basic sign_of operations (Theory.sign_of, Thm.sign_of_thm
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   859
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: 16373
diff changeset
   860
for convenience -- they merely return the theory.
451f1c46d4ca * Pure/TheoryDataFun: change of the argument structure;
wenzelm
parents: 16373
diff changeset
   861
17193
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   862
* Pure: type Type.tsig is superceded by theory in most interfaces.
83708f724822 * Delimiters of outer tokens now produce separate LaTeX macros;
wenzelm
parents: 17189
diff changeset
   863
16547
09f7a953d2d6 * Pure: the Isar proof context type is already defined early in Pure
wenzelm
parents: 16506
diff changeset
   864
* 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: 16506
diff changeset
   865
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: 16506
diff changeset
   866
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: 16506
diff changeset
   867
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: 16506
diff changeset
   868
16373
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   869
* Pure/sign/theory: discontinued named name spaces (i.e. classK,
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   870
typeK, constK, axiomK, oracleK), but provide explicit operations for
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   871
any of these kinds.  For example, Sign.intern typeK is now
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   872
Sign.intern_type, Theory.hide_space Sign.typeK is now
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   873
Theory.hide_types.  Also note that former
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   874
Theory.hide_classes/types/consts are now
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   875
Theory.hide_classes_i/types_i/consts_i, while the non '_i' versions
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   876
internalize their arguments!  INCOMPATIBILITY.
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   877
16506
b2687ce38433 * Pure: get_thm interface expects datatype thmref;
wenzelm
parents: 16456
diff changeset
   878
* Pure: get_thm interface (of PureThy and ProofContext) expects
b2687ce38433 * Pure: get_thm interface expects datatype thmref;
wenzelm
parents: 16456
diff changeset
   879
datatype thmref (with constructors Name and NameSelection) instead of
b2687ce38433 * Pure: get_thm interface expects datatype thmref;
wenzelm
parents: 16456
diff changeset
   880
plain string -- INCOMPATIBILITY;
b2687ce38433 * Pure: get_thm interface expects datatype thmref;
wenzelm
parents: 16456
diff changeset
   881
16151
cf7f146086bc ML Pure: name spaces have been refined;
wenzelm
parents: 16112
diff changeset
   882
* Pure: cases produced by proof methods specify options, where NONE
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   883
means to remove case bindings -- INCOMPATIBILITY in
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   884
(RAW_)METHOD_CASES.
16151
cf7f146086bc ML Pure: name spaces have been refined;
wenzelm
parents: 16112
diff changeset
   885
16373
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   886
* Pure: the following operations retrieve axioms or theorems from a
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   887
theory node or theory hierarchy, respectively:
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   888
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   889
  Theory.axioms_of: theory -> (string * term) list
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   890
  Theory.all_axioms_of: theory -> (string * term) list
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   891
  PureThy.thms_of: theory -> (string * thm) list
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   892
  PureThy.all_thms_of: theory -> (string * thm) list
9d020423093b * Pure/sign/theory: discontinued named name spaces;
wenzelm
parents: 16251
diff changeset
   893
16718
70c94b82c556 * Pure: Output.time_accumulator;
wenzelm
parents: 16717
diff changeset
   894
* Pure: print_tac now outputs the goal through the trace channel.
70c94b82c556 * Pure: Output.time_accumulator;
wenzelm
parents: 16717
diff changeset
   895
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   896
* Isar toplevel: improved diagnostics, mostly for Poly/ML only.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   897
Reference Toplevel.debug (default false) controls detailed printing
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   898
and tracing of low-level exceptions; Toplevel.profiling (default 0)
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   899
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: 17402
diff changeset
   900
(both increase the runtime).
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   901
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   902
* 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: 17402
diff changeset
   903
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: 17402
diff changeset
   904
elapsed wall-clock time that the outer shell wrapper produces.
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   905
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   906
* Simplifier: improved handling of bound variables (nameless
16997
7dfc99f62dd9 * Pure/Simplifier: improved handling of bound variables;
wenzelm
parents: 16962
diff changeset
   907
representation, avoid allocating new strings).  Simprocs that invoke
7dfc99f62dd9 * Pure/Simplifier: improved handling of bound variables;
wenzelm
parents: 16962
diff changeset
   908
the Simplifier recursively should use Simplifier.inherit_bounds to
7dfc99f62dd9 * Pure/Simplifier: improved handling of bound variables;
wenzelm
parents: 16962
diff changeset
   909
avoid local name clashes.
7dfc99f62dd9 * Pure/Simplifier: improved handling of bound variables;
wenzelm
parents: 16962
diff changeset
   910
17408
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   911
* Provers: Simplifier and Classical Reasoner now support proof context
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   912
dependent plug-ins (simprocs, solvers, wrappers etc.).  These extra
551c9a4dd693 command 'thms_containing' has been discontinued in favour of 'find_theorems';
wenzelm
parents: 17402
diff changeset
   913
components are stored in the theory and patched into the
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   914
simpset/claset when used in an Isar proof context.  Context dependent
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   915
components are maintained by the following theory operations:
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   916
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   917
  Simplifier.add_context_simprocs
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   918
  Simplifier.del_context_simprocs
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   919
  Simplifier.set_context_subgoaler
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   920
  Simplifier.reset_context_subgoaler
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   921
  Simplifier.add_context_looper
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   922
  Simplifier.del_context_looper
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   923
  Simplifier.add_context_unsafe_solver
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   924
  Simplifier.add_context_safe_solver
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   925
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   926
  Classical.add_context_safe_wrapper
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   927
  Classical.del_context_safe_wrapper
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   928
  Classical.add_context_unsafe_wrapper
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   929
  Classical.del_context_unsafe_wrapper
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   930
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   931
IMPORTANT NOTE: proof tools (methods etc.) need to use
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   932
local_simpset_of and local_claset_of to instead of the primitive
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   933
Simplifier.get_local_simpset and Classical.get_local_claset,
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   934
respectively, in order to see the context dependent fields!
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   935
17166
wenzelm
parents: 17139
diff changeset
   936
* ML functions legacy_bindings and use_legacy_bindings produce ML fact
wenzelm
parents: 17139
diff changeset
   937
bindings for all theorems stored within a given theory; this may help
wenzelm
parents: 17139
diff changeset
   938
in porting non-Isar theories to Isar ones, while keeping ML proof
wenzelm
parents: 17139
diff changeset
   939
scripts for the time being.
wenzelm
parents: 17139
diff changeset
   940
17457
5b9538fc6d67 HTML.with_charset;
wenzelm
parents: 17445
diff changeset
   941
* ML operator HTML.with_charset specifies the charset begin used for
5b9538fc6d67 HTML.with_charset;
wenzelm
parents: 17445
diff changeset
   942
generated HTML files.  For example:
5b9538fc6d67 HTML.with_charset;
wenzelm
parents: 17445
diff changeset
   943
5b9538fc6d67 HTML.with_charset;
wenzelm
parents: 17445
diff changeset
   944
  HTML.with_charset "utf-8" use_thy "Hebrew";
17538
wenzelm
parents: 17535
diff changeset
   945
  HTML.with_charset "utf-8" use_thy "Chinese";
17457
5b9538fc6d67 HTML.with_charset;
wenzelm
parents: 17445
diff changeset
   946
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   947
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   948
*** System ***
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   949
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   950
* Allow symlinks to all proper Isabelle executables (Isabelle,
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   951
isabelle, isatool etc.).
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   952
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   953
* ISABELLE_DOC_FORMAT setting specifies preferred document format (for
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   954
isatool doc, isatool mkdir, display_drafts etc.).
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   955
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   956
* isatool usedir: option -f allows specification of the ML file to be
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   957
used by Isabelle; default is ROOT.ML.
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   958
16251
121dc80d120a * ML: replaced File.sysify_path/quote_sysify_path by File.platform_path/shell_path;
wenzelm
parents: 16234
diff changeset
   959
* 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: 16234
diff changeset
   960
distribution being used.
121dc80d120a * ML: replaced File.sysify_path/quote_sysify_path by File.platform_path/shell_path;
wenzelm
parents: 16234
diff changeset
   961
121dc80d120a * ML: replaced File.sysify_path/quote_sysify_path by File.platform_path/shell_path;
wenzelm
parents: 16234
diff changeset
   962
* HOL: new isatool dimacs2hol converts files in DIMACS CNF format
16234
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   963
(containing Boolean satisfiability problems) into Isabelle/HOL
421c3522f160 major reorganization and cleanup;
wenzelm
parents: 16181
diff changeset
   964
theories.
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   965
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   966
14655
8a95abf87dd3 Pure: considerably improved version of 'constdefs' command;
wenzelm
parents: 14624
diff changeset
   967
14606
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
   968
New in Isabelle2004 (April 2004)
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
   969
--------------------------------
13280
306ef3aef61b * improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents: 13190
diff changeset
   970
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 14136
diff changeset
   971
*** General ***
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 14136
diff changeset
   972
14398
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
   973
* Provers/order.ML:  new efficient reasoner for partial and linear orders.
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
   974
  Replaces linorder.ML.
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
   975
14606
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
   976
* Pure: Greek letters (except small lambda, \<lambda>), as well as Gothic
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
   977
  (\<aa>...\<zz>\<AA>...\<ZZ>), calligraphic (\<A>...\<Z>), and Euler
14173
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   978
  (\<a>...\<z>), are now considered normal letters, and can therefore
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   979
  be used anywhere where an ASCII letter (a...zA...Z) has until
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   980
  now. COMPATIBILITY: This obviously changes the parsing of some
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   981
  terms, especially where a symbol has been used as a binder, say
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   982
  '\<Pi>x. ...', which is now a type error since \<Pi>x will be parsed
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   983
  as an identifier.  Fix it by inserting a space around former
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   984
  symbols.  Call 'isatool fixgreek' to try to fix parsing errors in
a3690aeb79d4 Removed the extended digits again.
skalberg
parents: 14172
diff changeset
   985
  existing theory and ML files.
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 14136
diff changeset
   986
14237
a486123e24a5 line-breaks; rewording
paulson
parents: 14234
diff changeset
   987
* Pure: Macintosh and Windows line-breaks are now allowed in theory files.
a486123e24a5 line-breaks; rewording
paulson
parents: 14234
diff changeset
   988
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
   989
* Pure: single letter sub/superscripts (\<^isub> and \<^isup>) are now
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
   990
  allowed in identifiers. Similar to Greek letters \<^isub> is now considered
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
   991
  a normal (but invisible) letter. For multiple letter subscripts repeat
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
   992
  \<^isub> like this: x\<^isub>1\<^isub>2.
14233
f6b6b2c55141 allow \<^sub> in identifiers
kleing
parents: 14224
diff changeset
   993
14333
14f29eb097a3 \<^bsub> .. \<^esub>
kleing
parents: 14285
diff changeset
   994
* Pure: There are now sub-/superscripts that can span more than one
14f29eb097a3 \<^bsub> .. \<^esub>
kleing
parents: 14285
diff changeset
   995
  character. Text between \<^bsub> and \<^esub> is set in subscript in
14606
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
   996
  ProofGeneral and LaTeX, text between \<^bsup> and \<^esup> in
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
   997
  superscript. The new control characters are not identifier parts.
14333
14f29eb097a3 \<^bsub> .. \<^esub>
kleing
parents: 14285
diff changeset
   998
14561
c53396af770e * raw control symbols are of the form \<^raw:...> now.
schirmer
parents: 14556
diff changeset
   999
* Pure: Control-symbols of the form \<^raw:...> will literally print the
14606
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
  1000
  content of "..." to the latex file instead of \isacntrl... . The "..."
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
  1001
  may consist of any printable characters excluding the end bracket >.
14361
ad2f5da643b4 * Support for raw latex output in control symbols: \<^raw...>
schirmer
parents: 14333
diff changeset
  1002
14237
a486123e24a5 line-breaks; rewording
paulson
parents: 14234
diff changeset
  1003
* Pure: Using new Isar command "finalconsts" (or the ML functions
a486123e24a5 line-breaks; rewording
paulson
parents: 14234
diff changeset
  1004
  Theory.add_finals or Theory.add_finals_i) it is now possible to
a486123e24a5 line-breaks; rewording
paulson
parents: 14234
diff changeset
  1005
  declare constants "final", which prevents their being given a definition
a486123e24a5 line-breaks; rewording
paulson
parents: 14234
diff changeset
  1006
  later.  It is useful for constants whose behaviour is fixed axiomatically
14224
442c097c1437 Added info on the new 'finalconsts' command.
skalberg
parents: 14211
diff changeset
  1007
  rather than definitionally, such as the meta-logic connectives.
442c097c1437 Added info on the new 'finalconsts' command.
skalberg
parents: 14211
diff changeset
  1008
14606
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
  1009
* Pure: 'instance' now handles general arities with general sorts
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
  1010
  (i.e. intersections of classes),
14503
255ad604e08e Added check that Theory.ML does not occur in the files section of the theory
skalberg
parents: 14480
diff changeset
  1011
14547
e0c0179100c9 isabelle.css
kleing
parents: 14536
diff changeset
  1012
* Presentation: generated HTML now uses a CSS style sheet to make layout
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1013
  (somewhat) independent of content. It is copied from lib/html/isabelle.css.
14547
e0c0179100c9 isabelle.css
kleing
parents: 14536
diff changeset
  1014
  It can be changed to alter the colors/layout of generated pages.
e0c0179100c9 isabelle.css
kleing
parents: 14536
diff changeset
  1015
14556
c5078f6c99a9 * Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents: 14551
diff changeset
  1016
14175
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1017
*** Isar ***
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1018
14508
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14503
diff changeset
  1019
* Tactic emulation methods rule_tac, erule_tac, drule_tac, frule_tac,
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14503
diff changeset
  1020
  cut_tac, subgoal_tac and thin_tac:
14175
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1021
  - Now understand static (Isar) contexts.  As a consequence, users of Isar
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1022
    locales are no longer forced to write Isar proof scripts.
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1023
    For details see Isar Reference Manual, paragraph 4.3.2: Further tactic
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1024
    emulations.
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1025
  - INCOMPATIBILITY: names of variables to be instantiated may no
14211
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1026
    longer be enclosed in quotes.  Instead, precede variable name with `?'.
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1027
    This is consistent with the instantiation attribute "where".
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1028
14257
a7ef3f7588c5 Type inference bug in Isar attributes "where" and "of" fixed.
ballarin
parents: 14255
diff changeset
  1029
* Attributes "where" and "of":
14285
92ed032e83a1 Isar: where attribute supports instantiation of type vars.
ballarin
parents: 14283
diff changeset
  1030
  - Now take type variables of instantiated theorem into account when reading
92ed032e83a1 Isar: where attribute supports instantiation of type vars.
ballarin
parents: 14283
diff changeset
  1031
    the instantiation string.  This fixes a bug that caused instantiated
92ed032e83a1 Isar: where attribute supports instantiation of type vars.
ballarin
parents: 14283
diff changeset
  1032
    theorems to have too special types in some circumstances.
92ed032e83a1 Isar: where attribute supports instantiation of type vars.
ballarin
parents: 14283
diff changeset
  1033
  - "where" permits explicit instantiations of type variables.
14257
a7ef3f7588c5 Type inference bug in Isar attributes "where" and "of" fixed.
ballarin
parents: 14255
diff changeset
  1034
14556
c5078f6c99a9 * Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents: 14551
diff changeset
  1035
* Calculation commands "moreover" and "also" no longer interfere with
c5078f6c99a9 * Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents: 14551
diff changeset
  1036
  current facts ("this"), admitting arbitrary combinations with "then"
c5078f6c99a9 * Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents: 14551
diff changeset
  1037
  and derived forms.
14283
516358ca7b42 moreover and also do not reset facts any more
kleing
parents: 14257
diff changeset
  1038
14211
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1039
* Locales:
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1040
  - Goal statements involving the context element "includes" no longer
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1041
    generate theorems with internal delta predicates (those ending on
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1042
    "_axioms") in the premise.
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1043
    Resolve particular premise with <locale>.intro to obtain old form.
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1044
  - Fixed bug in type inference ("unify_frozen") that prevented mix of target
7286c187596d Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 14199
diff changeset
  1045
    specification and "includes" elements in goal statement.
14254
342634f38451 Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
ballarin
parents: 14243
diff changeset
  1046
  - 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: 14243
diff changeset
  1047
    [intro?] and [elim?] (respectively) by default.
14508
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14503
diff changeset
  1048
  - Experimental command for instantiation of locales in proof contexts:
14551
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1049
        instantiate <label>[<attrs>]: <loc>
14508
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14503
diff changeset
  1050
    Instantiates locale <loc> and adds all its theorems to the current context
14551
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1051
    taking into account their attributes.  Label and attrs are optional
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1052
    modifiers, like in theorem declarations.  If present, names of
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1053
    instantiated theorems are qualified with <label>, and the attributes
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1054
    <attrs> are applied after any attributes these theorems might have already.
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1055
      If the locale has assumptions, a chained fact of the form
14508
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14503
diff changeset
  1056
    "<loc> t1 ... tn" is expected from which instantiations of the parameters
14551
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1057
    are derived.  The command does not support old-style locales declared
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1058
    with "locale (open)".
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14547
diff changeset
  1059
      A few (very simple) examples can be found in FOL/ex/LocaleInst.thy.
14175
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1060
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1061
* HOL: Tactic emulation methods induct_tac and case_tac understand static
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1062
  (Isar) contexts.
dbd16ebaf907 Method rule_tac understands Isar contexts: documentation.
ballarin
parents: 14173
diff changeset
  1063
14556
c5078f6c99a9 * Calculation commands "moreover" and "also" no longer interfere with
wenzelm
parents: 14551
diff changeset
  1064
14136
9b7a62788dac opened new section for next Isabelle release
kleing
parents: 14119
diff changeset
  1065
*** HOL ***
9b7a62788dac opened new section for next Isabelle release
kleing
parents: 14119
diff changeset
  1066
14624
9b3397a848c3 add HOL4
kleing
parents: 14610
diff changeset
  1067
* Proof import: new image HOL4 contains the imported library from
9b3397a848c3 add HOL4
kleing
parents: 14610
diff changeset
  1068
  the HOL4 system with about 2500 theorems. It is imported by
9b3397a848c3 add HOL4
kleing
parents: 14610
diff changeset
  1069
  replaying proof terms produced by HOL4 in Isabelle. The HOL4 image
9b3397a848c3 add HOL4
kleing
parents: 14610
diff changeset
  1070
  can be used like any other Isabelle image.  See
9b3397a848c3 add HOL4
kleing
parents: 14610
diff changeset
  1071
  HOL/Import/HOL/README for more information.
9b3397a848c3 add HOL4
kleing
parents: 14610
diff changeset
  1072
14398
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1073
* Simplifier:
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1074
  - Much improved handling of linear and partial orders.
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1075
    Reasoners for linear and partial orders are set up for type classes
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1076
    "linorder" and "order" respectively, and are added to the default simpset
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1077
    as solvers.  This means that the simplifier can build transitivity chains
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1078
    to solve goals from the assumptions.
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1079
  - INCOMPATIBILITY: old proofs break occasionally.  Typically, applications
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1080
    of blast or auto after simplification become unnecessary because the goal
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1081
    is solved by simplification already.
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14389
diff changeset
  1082
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1083
* Numerics: new theory Ring_and_Field contains over 250 basic numerical laws,
14389
paulson
parents: 14380
diff changeset
  1084
    all proved in axiomatic type classes for semirings, rings and fields.
paulson
parents: 14380
diff changeset
  1085
paulson
parents: 14380
diff changeset
  1086
* Numerics:
paulson
parents: 14380
diff changeset
  1087
  - Numeric types (nat, int, and in HOL-Complex rat, real, complex, etc.) are
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1088
    now formalized using the Ring_and_Field theory mentioned above.
14389
paulson
parents: 14380
diff changeset
  1089
  - INCOMPATIBILITY: simplification and arithmetic behaves somewhat differently
paulson
parents: 14380
diff changeset
  1090
    than before, because now they are set up once in a generic manner.
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1091
  - INCOMPATIBILITY: many type-specific arithmetic laws have gone.
14480
14b7923b3307 clarified
paulson
parents: 14464
diff changeset
  1092
    Look for the general versions in Ring_and_Field (and Power if they concern
14b7923b3307 clarified
paulson
parents: 14464
diff changeset
  1093
    exponentiation).
14389
paulson
parents: 14380
diff changeset
  1094
14401
477380c74c1d removal of the legacy ML structure List
paulson
parents: 14399
diff changeset
  1095
* Type "rat" of the rational numbers is now available in HOL-Complex.
14389
paulson
parents: 14380
diff changeset
  1096
14255
e6e3e3f0deed Records:
schirmer
parents: 14254
diff changeset
  1097
* Records:
e6e3e3f0deed Records:
schirmer
parents: 14254
diff changeset
  1098
  - Record types are now by default printed with their type abbreviation
e6e3e3f0deed Records:
schirmer
parents: 14254
diff changeset
  1099
    instead of the list of all field types. This can be configured via
e6e3e3f0deed Records:
schirmer
parents: 14254
diff changeset
  1100
    the reference "print_record_type_abbr".
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1101
  - Simproc "record_upd_simproc" for simplification of multiple updates added
14255
e6e3e3f0deed Records:
schirmer
parents: 14254
diff changeset
  1102
    (not enabled by default).
14427
cea7d2f76112 added record_ex_sel_eq_simproc
schirmer
parents: 14418
diff changeset
  1103
  - Simproc "record_ex_sel_eq_simproc" to simplify EX x. sel r = x resp.
cea7d2f76112 added record_ex_sel_eq_simproc
schirmer
parents: 14418
diff changeset
  1104
    EX x. x = sel r to True (not enabled by default).
14255
e6e3e3f0deed Records:
schirmer
parents: 14254
diff changeset
  1105
  - Tactic "record_split_simp_tac" to split and simplify records added.
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1106
14136
9b7a62788dac opened new section for next Isabelle release
kleing
parents: 14119
diff changeset
  1107
* 'specification' command added, allowing for definition by
14224
442c097c1437 Added info on the new 'finalconsts' command.
skalberg
parents: 14211
diff changeset
  1108
  specification.  There is also an 'ax_specification' command that
442c097c1437 Added info on the new 'finalconsts' command.
skalberg
parents: 14211
diff changeset
  1109
  introduces the new constants axiomatically.
14136
9b7a62788dac opened new section for next Isabelle release
kleing
parents: 14119
diff changeset
  1110
14375
a545da363b23 *** empty log message ***
nipkow
parents: 14361
diff changeset
  1111
* arith(_tac) is now able to generate counterexamples for reals as well.
a545da363b23 *** empty log message ***
nipkow
parents: 14361
diff changeset
  1112
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14398
diff changeset
  1113
* HOL-Algebra: new locale "ring" for non-commutative rings.
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14398
diff changeset
  1114
14243
0e2ec694784d recursion
paulson
parents: 14237
diff changeset
  1115
* HOL-ex: InductiveInvariant_examples illustrates advanced recursive function
14610
9c2e31e483b2 added HOL-Matrix, added HOL/Matrix/ROOT.ML
kleing
parents: 14606
diff changeset
  1116
  definitions, thanks to Sava Krsti\'{c} and John Matthews.
9c2e31e483b2 added HOL-Matrix, added HOL/Matrix/ROOT.ML
kleing
parents: 14606
diff changeset
  1117
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1118
* HOL-Matrix: a first theory for matrices in HOL with an application of
14610
9c2e31e483b2 added HOL-Matrix, added HOL/Matrix/ROOT.ML
kleing
parents: 14606
diff changeset
  1119
  matrix theory to linear programming.
14136
9b7a62788dac opened new section for next Isabelle release
kleing
parents: 14119
diff changeset
  1120
14380
04b603a6f17d *** empty log message ***
nipkow
parents: 14375
diff changeset
  1121
* Unions and Intersections:
15119
e5f167042c1d undid UN/INT xsymbol syntax with subscripts.
nipkow
parents: 15103
diff changeset
  1122
  The latex output syntax of UN and INT has been changed
e5f167042c1d undid UN/INT xsymbol syntax with subscripts.
nipkow
parents: 15103
diff changeset
  1123
  from "\Union x \in A. B" to "\Union_{x \in A} B"
e5f167042c1d undid UN/INT xsymbol syntax with subscripts.
nipkow
parents: 15103
diff changeset
  1124
  i.e. the index formulae has become a subscript.
e5f167042c1d undid UN/INT xsymbol syntax with subscripts.
nipkow
parents: 15103
diff changeset
  1125
  Similarly for "\Union x. B", and for \Inter instead of \Union.
14380
04b603a6f17d *** empty log message ***
nipkow
parents: 14375
diff changeset
  1126
14418
b62323c85134 union/intersection over intervals
kleing
parents: 14401
diff changeset
  1127
* Unions and Intersections over Intervals:
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1128
  There is new short syntax "UN i<=n. A" for "UN i:{0..n}. A". There is
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1129
  also an x-symbol version with subscripts "\<Union>\<^bsub>i <= n\<^esub>. A"
14418
b62323c85134 union/intersection over intervals
kleing
parents: 14401
diff changeset
  1130
  like in normal math, and corresponding versions for < and for intersection.
b62323c85134 union/intersection over intervals
kleing
parents: 14401
diff changeset
  1131
15677
8770edbf8f28 *** empty log message ***
nipkow
parents: 15570
diff changeset
  1132
* HOL/List: Ordering "lexico" is renamed "lenlex" and the standard
8770edbf8f28 *** empty log message ***
nipkow
parents: 15570
diff changeset
  1133
  lexicographic dictonary ordering has been added as "lexord".
8770edbf8f28 *** empty log message ***
nipkow
parents: 15570
diff changeset
  1134
14401
477380c74c1d removal of the legacy ML structure List
paulson
parents: 14399
diff changeset
  1135
* ML: the legacy theory structures Int and List have been removed. They had
477380c74c1d removal of the legacy ML structure List
paulson
parents: 14399
diff changeset
  1136
  conflicted with ML Basis Library structures having the same names.
14380
04b603a6f17d *** empty log message ***
nipkow
parents: 14375
diff changeset
  1137
14464
webertj
parents: 14427
diff changeset
  1138
* 'refute' command added to search for (finite) countermodels.  Only works
webertj
parents: 14427
diff changeset
  1139
  for a fragment of HOL.  The installation of an external SAT solver is
webertj
parents: 14427
diff changeset
  1140
  highly recommended.  See "HOL/Refute.thy" for details.
webertj
parents: 14427
diff changeset
  1141
14602
e06ded775eca Added entry for quickcheck command.
berghofe
parents: 14572
diff changeset
  1142
* 'quickcheck' command: Allows to find counterexamples by evaluating
e06ded775eca Added entry for quickcheck command.
berghofe
parents: 14572
diff changeset
  1143
  formulae under an assignment of free variables to random values.
e06ded775eca Added entry for quickcheck command.
berghofe
parents: 14572
diff changeset
  1144
  In contrast to 'refute', it can deal with inductive datatypes,
e06ded775eca Added entry for quickcheck command.
berghofe
parents: 14572
diff changeset
  1145
  but cannot handle quantifiers. See "HOL/ex/Quickcheck_Examples.thy"
e06ded775eca Added entry for quickcheck command.
berghofe
parents: 14572
diff changeset
  1146
  for examples.
14464
webertj
parents: 14427
diff changeset
  1147
14606
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
  1148
14536
43e436a4f293 added HOLCF/Streams.thy (with concatenation etc.)
oheimb
parents: 14508
diff changeset
  1149
*** HOLCF ***
43e436a4f293 added HOLCF/Streams.thy (with concatenation etc.)
oheimb
parents: 14508
diff changeset
  1150
43e436a4f293 added HOLCF/Streams.thy (with concatenation etc.)
oheimb
parents: 14508
diff changeset
  1151
* Streams now come with concatenation and are part of the HOLCF image
43e436a4f293 added HOLCF/Streams.thy (with concatenation etc.)
oheimb
parents: 14508
diff changeset
  1152
14572
wenzelm
parents: 14561
diff changeset
  1153
wenzelm
parents: 14561
diff changeset
  1154
14136
9b7a62788dac opened new section for next Isabelle release
kleing
parents: 14119
diff changeset
  1155
New in Isabelle2003 (May 2003)
14606
0be6c11e7128 Pure: 'instance' now handles general arities;
wenzelm
parents: 14602
diff changeset
  1156
------------------------------
14136
9b7a62788dac opened new section for next Isabelle release
kleing
parents: 14119
diff changeset
  1157
13280
306ef3aef61b * improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents: 13190
diff changeset
  1158
*** General ***
306ef3aef61b * improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents: 13190
diff changeset
  1159
13618
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1160
* Provers/simplifier:
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1161
13781
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1162
  - Completely reimplemented method simp (ML: Asm_full_simp_tac):
13618
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1163
    Assumptions are now subject to complete mutual simplification,
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1164
    not just from left to right. The simplifier now preserves
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1165
    the order of assumptions.
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1166
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1167
    Potential INCOMPATIBILITY:
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1168
13781
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1169
    -- simp sometimes diverges where the old version did
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1170
       not, e.g. invoking simp on the goal
13618
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1171
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1172
        [| P (f x); y = x; f x = f y |] ==> Q
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1173
13781
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1174
       now gives rise to the infinite reduction sequence
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1175
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1176
        P(f x) --(f x = f y)--> P(f y) --(y = x)--> P(f x) --(f x = f y)--> ...
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1177
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1178
       Using "simp (asm_lr)" (ML: Asm_lr_simp_tac) instead often solves this
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1179
       kind of problem.
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1180
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1181
    -- Tactics combining classical reasoner and simplification (such as auto)
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1182
       are also affected by this change, because many of them rely on
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1183
       simp. They may sometimes diverge as well or yield a different numbers
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1184
       of subgoals. Try to use e.g. force, fastsimp, or safe instead of auto
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1185
       in case of problems. Sometimes subsequent calls to the classical
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1186
       reasoner will fail because a preceeding call to the simplifier too
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1187
       eagerly simplified the goal, e.g. deleted redundant premises.
13618
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1188
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1189
  - The simplifier trace now shows the names of the applied rewrite rules
12290bdce807 Added some comments on new simplifier.
berghofe
parents: 13613
diff changeset
  1190
13829
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1191
  - You can limit the number of recursive invocations of the simplifier
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1192
    during conditional rewriting (where the simplifie tries to solve the
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1193
    conditions before applying the rewrite rule):
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1194
    ML "simp_depth_limit := n"
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1195
    where n is an integer. Thus you can force termination where previously
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1196
    the simplifier would diverge.
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1197
13835
12b2ffbe543a Change to meta simplifier: congruence rules may now have frees as head of term.
ballarin
parents: 13829
diff changeset
  1198
  - Accepts free variables as head terms in congruence rules.  Useful in Isar.
13829
af0218406395 *** empty log message ***
nipkow
parents: 13824
diff changeset
  1199
13938
b033b53d0c1e Simplifier: congruence rule update.
ballarin
parents: 13899
diff changeset
  1200
  - No longer aborts on failed congruence proof.  Instead, the
b033b53d0c1e Simplifier: congruence rule update.
ballarin
parents: 13899
diff changeset
  1201
    congruence is ignored.
b033b53d0c1e Simplifier: congruence rule update.
ballarin
parents: 13899
diff changeset
  1202
14008
f843528b9f3c Program extraction framework.
berghofe
parents: 13995
diff changeset
  1203
* Pure: New generic framework for extracting programs from constructive
f843528b9f3c Program extraction framework.
berghofe
parents: 13995
diff changeset
  1204
  proofs. See HOL/Extraction.thy for an example instantiation, as well
f843528b9f3c Program extraction framework.
berghofe
parents: 13995
diff changeset
  1205
  as HOL/Extraction for some case studies.
f843528b9f3c Program extraction framework.
berghofe
parents: 13995
diff changeset
  1206
13868
01b516b64233 *** empty log message ***
nipkow
parents: 13835
diff changeset
  1207
* Pure: The main goal of the proof state is no longer shown by default, only
01b516b64233 *** empty log message ***
nipkow
parents: 13835
diff changeset
  1208
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: 13829
diff changeset
  1209
   PG menu: Isabelle/Isar -> Settings -> Show Main Goal
13815
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1210
(ML: Proof.show_main_goal).
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1211
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1212
* Pure: You can find all matching introduction rules for subgoal 1, i.e. all
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1213
rules whose conclusion matches subgoal 1:
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1214
      PG menu: Isabelle/Isar -> Show me -> matching rules
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1215
The rules are ordered by how closely they match the subgoal.
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1216
In particular, rules that solve a subgoal outright are displayed first
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1217
(or rather last, the way they are printed).
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1218
(ML: ProofGeneral.print_intros())
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1219
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1220
* Pure: New flag trace_unify_fail causes unification to print
13781
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1221
diagnostic information (PG: in trace buffer) when it fails. This is
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1222
useful for figuring out why single step proofs like rule, erule or
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1223
assumption failed.
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1224
13815
0832792725db *** empty log message ***
nipkow
parents: 13781
diff changeset
  1225
* Pure: Locale specifications now produce predicate definitions
13410
f2cd09766864 * Pure: locale specifications now produce predicate definitions;
wenzelm
parents: 13344
diff changeset
  1226
according to the body of text (covering assumptions modulo local
f2cd09766864 * Pure: locale specifications now produce predicate definitions;
wenzelm
parents: 13344
diff changeset
  1227
definitions); predicate "loc_axioms" covers newly introduced text,
f2cd09766864 * Pure: locale specifications now produce predicate definitions;
wenzelm
parents: 13344
diff changeset
  1228
while "loc" is cumulative wrt. all included locale expressions; the
f2cd09766864 * Pure: locale specifications now produce predicate definitions;
wenzelm
parents: 13344
diff changeset
  1229
latter view is presented only on export into the global theory
f2cd09766864 * Pure: locale specifications now produce predicate definitions;
wenzelm
parents: 13344
diff changeset
  1230
context; potential INCOMPATIBILITY, use "(open)" option to fall back
f2cd09766864 * Pure: locale specifications now produce predicate definitions;
wenzelm
parents: 13344
diff changeset
  1231
on the old view without predicates;
f2cd09766864 * Pure: locale specifications now produce predicate definitions;
wenzelm
parents: 13344
diff changeset
  1232
13459
83f41b047a39 * Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents: 13443
diff changeset
  1233
* Pure: predefined locales "var" and "struct" are useful for sharing
83f41b047a39 * Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents: 13443
diff changeset
  1234
parameters (as in CASL, for example); just specify something like
83f41b047a39 * Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents: 13443
diff changeset
  1235
``var x + var y + struct M'' as import;
83f41b047a39 * Pure: predefined locales "var" and "struct" are useful for sharing
wenzelm
parents: 13443
diff changeset
  1236
13463
07747943c626 * Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents: 13459
diff changeset
  1237
* Pure: improved thms_containing: proper indexing of facts instead of
07747943c626 * Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents: 13459
diff changeset
  1238
raw theorems; check validity of results wrt. current name space;
07747943c626 * Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents: 13459
diff changeset
  1239
include local facts of proof configuration (also covers active
13541
44efea0e21fa *** empty log message ***
wenzelm
parents: 13540
diff changeset
  1240
locales), cover fixed variables in index; may use "_" in term
44efea0e21fa *** empty log message ***
wenzelm
parents: 13540
diff changeset
  1241
specification; an optional limit for the number of printed facts may
44efea0e21fa *** empty log message ***
wenzelm
parents: 13540
diff changeset
  1242
be given (the default is 40);
44efea0e21fa *** empty log message ***
wenzelm
parents: 13540
diff changeset
  1243
44efea0e21fa *** empty log message ***
wenzelm
parents: 13540
diff changeset
  1244
* Pure: disallow duplicate fact bindings within new-style theory files
44efea0e21fa *** empty log message ***
wenzelm
parents: 13540
diff changeset
  1245
(batch-mode only);
13540
aede0306e214 * Pure: disallow duplicate fact bindings within new-style theory files;
wenzelm
parents: 13522
diff changeset
  1246
13463
07747943c626 * Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents: 13459
diff changeset
  1247
* Provers: improved induct method: assumptions introduced by case
07747943c626 * Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents: 13459
diff changeset
  1248
"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: 13459
diff changeset
  1249
the goal statement); "foo" still refers to all facts collectively;
07747943c626 * Provers: Simplifier.simproc(_i) now provide sane interface for
wenzelm
parents: 13459
diff changeset
  1250
13550
5a176b8dda84 removal of blast.overloaded
paulson
parents: 13549
diff changeset
  1251
* Provers: the function blast.overloaded has been removed: all constants
5a176b8dda84 removal of blast.overloaded
paulson
parents: 13549
diff changeset
  1252
are regarded as potentially overloaded, which improves robustness in exchange
5a176b8dda84 removal of blast.overloaded
paulson
parents: 13549
diff changeset
  1253
for slight decrease in efficiency;
5a176b8dda84 removal of blast.overloaded
paulson
parents: 13549
diff changeset
  1254
13781
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1255
* Provers/linorder: New generic prover for transitivity reasoning over
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1256
linear orders.  Note: this prover is not efficient!
ecb2df44253e *** empty log message ***
nipkow
parents: 13745
diff changeset
  1257
13522
934fffeb6f38 * Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents: 13518
diff changeset
  1258
* 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: 13518
diff changeset
  1259
rather than just a warning (in interactive mode);
934fffeb6f38 * Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents: 13518
diff changeset
  1260
13280
306ef3aef61b * improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents: 13190
diff changeset
  1261
13158
8e86582a90d1 *** empty log message ***
nipkow
parents: 13042
diff changeset
  1262
*** HOL ***
8e86582a90d1 *** empty log message ***
nipkow
parents: 13042
diff changeset
  1263
13899
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1264
* arith(_tac)
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1265
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1266
 - Produces a counter example if it cannot prove a goal.
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1267
   Note that the counter example may be spurious if the goal is not a formula
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1268
   of quantifier-free linear arithmetic.
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1269
   In ProofGeneral the counter example appears in the trace buffer.
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1270
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1271
 - Knows about div k and mod k where k is a numeral of type nat or int.
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1272
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1273
 - Calls full Presburger arithmetic (by Amine Chaieb) if quantifier-free
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1274
   linear arithmetic fails. This takes account of quantifiers and divisibility.
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1275
   Presburger arithmetic can also be called explicitly via presburger(_tac).
13899
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1276
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1277
* simp's arithmetic capabilities have been enhanced a bit: it now
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1278
takes ~= in premises into account (by performing a case split);
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1279
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1280
* simp reduces "m*(n div m) + n mod m" to n, even if the two summands
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1281
are distributed over a sum of terms;
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1282
13735
7de9342aca7a HOL-Algebra partially ported to Isar.
ballarin
parents: 13648
diff changeset
  1283
* New tactic "trans_tac" and method "trans" instantiate
7de9342aca7a HOL-Algebra partially ported to Isar.
ballarin
parents: 13648
diff changeset
  1284
Provers/linorder.ML for axclasses "order" and "linorder" (predicates
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1285
"<=", "<" and "=").
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1286
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1287
* function INCOMPATIBILITIES: Pi-sets have been redefined and moved from main
13587
659813a3f879 GroupTheory and FuncSet
paulson
parents: 13570
diff changeset
  1288
HOL to Library/FuncSet; constant "Fun.op o" is now called "Fun.comp";
659813a3f879 GroupTheory and FuncSet
paulson
parents: 13570
diff changeset
  1289
13443
1c3327c348b3 typedef: "open" option;
wenzelm
parents: 13425
diff changeset
  1290
* 'typedef' command has new option "open" to suppress the set
1c3327c348b3 typedef: "open" option;
wenzelm
parents: 13425
diff changeset
  1291
definition;
1c3327c348b3 typedef: "open" option;
wenzelm
parents: 13425
diff changeset
  1292
13522
934fffeb6f38 * Isar: preview of problems to finish 'show' now produce an error
wenzelm
parents: 13518
diff changeset
  1293
* 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: 13518
diff changeset
  1294
Finite_Set);
13492
6aae8eb39a18 *** empty log message ***
nipkow
parents: 13478
diff changeset
  1295
13443
1c3327c348b3 typedef: "open" option;
wenzelm
parents: 13425
diff changeset
  1296
* attribute [symmetric] now works for relations as well; it turns
1c3327c348b3 typedef: "open" option;
wenzelm
parents: 13425
diff changeset
  1297
(x,y) : R^-1 into (y,x) : R, and vice versa;
1c3327c348b3 typedef: "open" option;
wenzelm
parents: 13425
diff changeset
  1298
13613
531f1f524848 *** empty log message ***
nipkow
parents: 13587
diff changeset
  1299
* induct over a !!-quantified statement (say !!x1..xn):
531f1f524848 *** empty log message ***
nipkow
parents: 13587
diff changeset
  1300
  each "case" automatically performs "fix x1 .. xn" with exactly those names.
531f1f524848 *** empty log message ***
nipkow
parents: 13587
diff changeset
  1301
13899
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1302
* Map: `empty' is no longer a constant but a syntactic abbreviation for
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1303
%x. None. Warning: empty_def now refers to the previously hidden definition
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1304
of the empty set.
12c7029d278b *** empty log message ***
nipkow
parents: 13881
diff changeset
  1305
14018
3ef6c509f29c Improved entry on Algebra.
ballarin
parents: 14011
diff changeset
  1306
* Algebra: formalization of classical algebra.  Intended as base for
3ef6c509f29c Improved entry on Algebra.
ballarin
parents: 14011
diff changeset
  1307
any algebraic development in Isabelle.  Currently covers group theory
3ef6c509f29c Improved entry on Algebra.
ballarin
parents: 14011
diff changeset
  1308
(up to Sylow's theorem) and ring theory (Universal Property of
3ef6c509f29c Improved entry on Algebra.
ballarin
parents: 14011
diff changeset
  1309
Univariate Polynomials).  Contributions welcome;
13960
70f9158b6695 Complex, etc
paulson
parents: 13954
diff changeset
  1310
70f9158b6695 Complex, etc
paulson
parents: 13954
diff changeset
  1311
* GroupTheory: deleted, since its material has been moved to Algebra;
70f9158b6695 Complex, etc
paulson
parents: 13954
diff changeset
  1312
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1313
* Complex: new directory of the complex numbers with numeric constants,
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1314
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: 13960
diff changeset
  1315
nonstandard (Jacques Fleuriot);
2160abf7cfe7 removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents: 13960
diff changeset
  1316
2160abf7cfe7 removal of the image HOL-Real and merging of HOL-Real-ex with HOL-Complex-ex
paulson
parents: 13960
diff changeset
  1317
* 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: 13960
diff changeset
  1318
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1319
* 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: 13960
diff changeset
  1320
Fleuriot);
13960
70f9158b6695 Complex, etc
paulson
parents: 13954
diff changeset
  1321
13549
f1522b892a4c updated;
wenzelm
parents: 13541
diff changeset
  1322
* Real/HahnBanach: updated and adapted to locales;
f1522b892a4c updated;
wenzelm
parents: 13541
diff changeset
  1323
13995
ab988a7a8a3b NEWS updated for HOL-Algebra.
ballarin
parents: 13966
diff changeset
  1324
* NumberTheory: added Gauss's law of quadratic reciprocity (by Avigad,
ab988a7a8a3b NEWS updated for HOL-Algebra.
ballarin
parents: 13966
diff changeset
  1325
Gray and Kramer);
13872
601514e63534 Gauss, UNITY, ZF
paulson
parents: 13868
diff changeset
  1326
601514e63534 Gauss, UNITY, ZF
paulson
parents: 13868
diff changeset
  1327
* UNITY: added the Meier-Sanders theory of progress sets;
601514e63534 Gauss, UNITY, ZF
paulson
parents: 13868
diff changeset
  1328
14011
5fa103f5618c MicroJava LBV
kleing
parents: 14010
diff changeset
  1329
* MicroJava: bytecode verifier and lightweight bytecode verifier
5fa103f5618c MicroJava LBV
kleing
parents: 14010
diff changeset
  1330
as abstract algorithms, instantiated to the JVM;
5fa103f5618c MicroJava LBV
kleing
parents: 14010
diff changeset
  1331
14010
schirmer
parents: 14008
diff changeset
  1332
* Bali: Java source language formalization. Type system, operational
schirmer
parents: 14008
diff changeset
  1333
semantics, axiomatic semantics. Supported language features:
schirmer
parents: 14008
diff changeset
  1334
classes, interfaces, objects,virtual methods, static methods,
schirmer
parents: 14008
diff changeset
  1335
static/instance fields, arrays, access modifiers, definite
schirmer
parents: 14008
diff changeset
  1336
assignment, exceptions.
13549
f1522b892a4c updated;
wenzelm
parents: 13541
diff changeset
  1337
14011
5fa103f5618c MicroJava LBV
kleing
parents: 14010
diff changeset
  1338
13549
f1522b892a4c updated;
wenzelm
parents: 13541
diff changeset
  1339
*** ZF ***
f1522b892a4c updated;
wenzelm
parents: 13541
diff changeset
  1340
15154
db582d6e89de new isatool dimacs2hol
webertj
parents: 15148
diff changeset
  1341
* ZF/Constructible: consistency proof for AC (Gdel's constructible
13549
f1522b892a4c updated;
wenzelm
parents: 13541
diff changeset
  1342
universe, etc.);
f1522b892a4c updated;
wenzelm
parents: 13541
diff changeset
  1343
13872
601514e63534 Gauss, UNITY, ZF
paulson
parents: 13868
diff changeset
  1344
* Main ZF: virtually all theories converted to new-style format;
13518
a0749ce05100 *** empty log message ***
nipkow
parents: 13500
diff changeset
  1345
13280
306ef3aef61b * improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents: 13190
diff changeset
  1346
13478
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1347
*** ML ***
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1348
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1349
* Pure: Tactic.prove provides sane interface for internal proofs;
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1350
omits the infamous "standard" operation, so this is more appropriate
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1351
than prove_goalw_cterm in many situations (e.g. in simprocs);
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1352
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1353
* Pure: improved error reporting of simprocs;
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1354
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1355
* Provers: Simplifier.simproc(_i) provides sane interface for setting
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1356
up simprocs;
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1357
9cfbcb9acfef * Pure: improved error reporting of simprocs;
wenzelm
parents: 13463
diff changeset
  1358
13953
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1359
*** Document preparation ***
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1360
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1361
* uses \par instead of \\ for line breaks in theory text. This may
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1362
shift some page breaks in large documents. To get the old behaviour
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1363
use \renewcommand{\isanewline}{\mbox{}\\\mbox{}} in root.tex.
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1364
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1365
* minimized dependencies of isabelle.sty and isabellesym.sty on
13953
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1366
other packages
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1367
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1368
* \<euro> now needs package babel/greek instead of marvosym (which
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1369
broke \Rightarrow)
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1370
14731
5670fc027a3b Pure: nested comments in inner syntax;
wenzelm
parents: 14709
diff changeset
  1371
* normal size for \<zero>...\<nine> (uses \mathbf instead of
13954
2e989faba65a fixed \<0>..\<9> (-> \<zero>..\<nine>)
kleing
parents: 13953
diff changeset
  1372
textcomp package)
13953
65b76920e108 document preparation tuning
kleing
parents: 13938
diff changeset
  1373
13280
306ef3aef61b * improved thms_containing: proper indexing of facts instead of raw
wenzelm
parents: 13190
diff changeset
  1374
14572
wenzelm
parents: 14561
diff changeset
  1375
12984
6071200efbf6 fixed date;
wenzelm
parents: 12964
diff changeset
  1376
New in Isabelle2002 (March 2002)
6071200efbf6 fixed date;
wenzelm
parents: 12964
diff changeset
  1377
--------------------------------
11474
wenzelm
parents: 11437
diff changeset
  1378
11572
wenzelm
parents: 11551
diff changeset
  1379
*** Document preparation ***
wenzelm
parents: 11551
diff changeset
  1380
11842
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1381
* greatly simplified document preparation setup, including more
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1382
graceful interpretation of isatool usedir -i/-d/-D options, and more
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1383
instructive isatool mkdir; users should basically be able to get
12899
7d5b690253ee "isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents: 12889
diff changeset
  1384
started with "isatool mkdir HOL Test && isatool make"; alternatively,
7d5b690253ee "isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents: 12889
diff changeset
  1385
users may run a separate document processing stage manually like this:
7d5b690253ee "isatool usedir -D output HOL Test && isatool document Test/output";
wenzelm
parents: 12889
diff changeset
  1386
"isatool usedir -D output HOL Test && isatool document Test/output";
11842
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1387
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1388
* theory dependency graph may now be incorporated into documents;
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1389
isatool usedir -g true will produce session_graph.eps/.pdf for use
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1390
with \includegraphics of LaTeX;
b903d3dabbe2 * greatly simplified document preparation setup, including more
wenzelm
parents: 11817
diff changeset
  1391
11864
371ce685b0ec * proper spacing of consecutive markup elements, especially text
wenzelm
parents: 11842
diff changeset
  1392
* proper spacing of consecutive markup elements, especially text
371ce685b0ec * proper spacing of consecutive markup elements, especially text
wenzelm
parents: 11842
diff changeset
  1393
blocks after section headings;
371ce685b0ec * proper spacing of consecutive markup elements, especially text
wenzelm
parents: 11842
diff changeset
  1394
11572
wenzelm
parents: 11551
diff changeset
  1395
* support bold style (for single symbols only), input syntax is like
wenzelm
parents: 11551
diff changeset
  1396
this: "\<^bold>\<alpha>" or "\<^bold>A";
wenzelm
parents: 11551
diff changeset
  1397
11814
wenzelm
parents: 11802
diff changeset
  1398
* \<bullet> is now output as bold \cdot by default, which looks much
11572
wenzelm
parents: 11551
diff changeset
  1399
better in printed text;
wenzelm
parents: 11551
diff changeset
  1400
11712
deb8cac87063 * added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents: 11702
diff changeset
  1401
* added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
deb8cac87063 * added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents: 11702
diff changeset
  1402
note that these symbols are currently unavailable in Proof General /
12769
wenzelm
parents: 12754
diff changeset
  1403
X-Symbol; new symbols \<zero>, \<one>, ..., \<nine>, and \<euro>;
12690
ac3fa7c05e5a * added \<euro> symbol;
wenzelm
parents: 12622
diff changeset
  1404
ac3fa7c05e5a * added \<euro> symbol;
wenzelm
parents: 12622
diff changeset
  1405
* isatool latex no longer depends on changed TEXINPUTS, instead
ac3fa7c05e5a * added \<euro> symbol;
wenzelm
parents: 12622
diff changeset
  1406
isatool document copies the Isabelle style files to the target
ac3fa7c05e5a * added \<euro> symbol;
wenzelm
parents: 12622
diff changeset
  1407
location;
11712
deb8cac87063 * added default LaTeX bindings for \<tturnstile> and \<TTurnstile>;
wenzelm
parents: 11702
diff changeset
  1408
11572
wenzelm
parents: 11551