NEWS
author wenzelm
Mon, 26 Apr 2010 21:45:08 +0200
changeset 36356 5ab0f8859f9f
parent 36348 89c54f51f55a
child 36416 9459be72b89e
permissions -rw-r--r--
command 'example_proof' opens an empty proof body;
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
33993
haftmann
parents: 33873
diff changeset
     4
New in this Isabelle version
haftmann
parents: 33873
diff changeset
     5
----------------------------
haftmann
parents: 33873
diff changeset
     6
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
     7
*** General ***
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
     8
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36300
diff changeset
     9
* Schematic theorem statements need to be explicitly markup as such,
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36300
diff changeset
    10
via commands 'schematic_lemma', 'schematic_theorem',
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36300
diff changeset
    11
'schematic_corollary'.  Thus the relevance of the proof is made
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36300
diff changeset
    12
syntactically clear, which impacts performance in a parallel or
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36300
diff changeset
    13
asynchronous interactive environment.  Minor INCOMPATIBILITY.
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36300
diff changeset
    14
35436
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    15
* Authentic syntax for *all* logical entities (type classes, type
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    16
constructors, term constants): provides simple and robust
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    17
correspondence between formal entities and concrete syntax.  Within
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    18
the parse tree / AST representations, "constants" are decorated by
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    19
their category (class, type, const) and spelled out explicitly with
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    20
their full internal name.
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    21
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    22
Substantial INCOMPATIBILITY concerning low-level syntax declarations
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    23
and translations (translation rules and translation functions in ML).
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    24
Some hints on upgrading:
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    25
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    26
  - Many existing uses of 'syntax' and 'translations' can be replaced
35436
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    27
    by more modern 'type_notation', 'notation' and 'abbreviation',
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    28
    which are independent of this issue.
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    29
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    30
  - 'translations' require markup within the AST; the term syntax
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    31
    provides the following special forms:
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    32
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    33
      CONST c   -- produces syntax version of constant c from context
35261
wenzelm
parents: 35260
diff changeset
    34
      XCONST c  -- literally c, checked as constant from context
wenzelm
parents: 35260
diff changeset
    35
      c         -- literally c, if declared by 'syntax'
wenzelm
parents: 35260
diff changeset
    36
wenzelm
parents: 35260
diff changeset
    37
    Plain identifiers are treated as AST variables -- occasionally the
wenzelm
parents: 35260
diff changeset
    38
    system indicates accidental variables via the error "rhs contains
wenzelm
parents: 35260
diff changeset
    39
    extra variables".
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    40
35436
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    41
    Type classes and type constructors are marked according to their
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    42
    concrete syntax.  Some old translations rules need to be written
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    43
    for the "type" category, using type constructor application
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    44
    instead of pseudo-term application of the default category
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    45
    "logic".
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    46
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    47
  - 'parse_translation' etc. in ML may use the following
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    48
    antiquotations:
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    49
35436
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    50
      @{class_syntax c}   -- type class c within parse tree / AST
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    51
      @{term_syntax c}    -- type constructor c within parse tree / AST
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    52
      @{const_syntax c}   -- ML version of "CONST c" above
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    53
      @{syntax_const c}   -- literally c (checked wrt. 'syntax' declarations)
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    54
35436
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    55
  - Literal types within 'typed_print_translations', i.e. those *not*
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    56
    represented as pseudo-terms are represented verbatim.  Use @{class
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    57
    c} or @{type_name c} here instead of the above syntax
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    58
    antiquotations.
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    59
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    60
Note that old non-authentic syntax was based on unqualified base
35436
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    61
names, so all of the above "constant" names would coincide.  Recall
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    62
that 'print_syntax' and ML_command "set Syntax.trace_ast" help to
38b291bb4a98 authentic syntax for *all* logical entities;
wenzelm
parents: 35413
diff changeset
    63
diagnose syntax problems.
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    64
35351
7425aece4ee3 allow general mixfix syntax for type constructors;
wenzelm
parents: 35306
diff changeset
    65
* Type constructors admit general mixfix syntax, not just infix.
7425aece4ee3 allow general mixfix syntax for type constructors;
wenzelm
parents: 35306
diff changeset
    66
35613
9d3ff36ad4e1 eliminated Args.bang_facts (legacy feature);
wenzelm
parents: 35436
diff changeset
    67
* Use of cumulative prems via "!" in some proof methods has been
9d3ff36ad4e1 eliminated Args.bang_facts (legacy feature);
wenzelm
parents: 35436
diff changeset
    68
discontinued (legacy feature).
9d3ff36ad4e1 eliminated Args.bang_facts (legacy feature);
wenzelm
parents: 35436
diff changeset
    69
35979
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    70
* References 'trace_simp' and 'debug_simp' have been replaced by
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    71
configuration options stored in the context. Enabling tracing
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    72
(the case of debugging is similar) in proofs works via
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    73
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    74
  using [[trace_simp=true]]
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    75
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    76
Tracing is then active for all invocations of the simplifier
35995
26e820d27e0a re-introduce reference to control simplifier tracing (needed for ProofGeneral settings menu) (cf. 12bb31230550)
boehmes
parents: 35979
diff changeset
    77
in subsequent goal refinement steps. Tracing may also still be
26e820d27e0a re-introduce reference to control simplifier tracing (needed for ProofGeneral settings menu) (cf. 12bb31230550)
boehmes
parents: 35979
diff changeset
    78
enabled or disabled via the ProofGeneral settings menu.
35979
12bb31230550 replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents: 35845
diff changeset
    79
36177
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 36162
diff changeset
    80
* Separate commands 'hide_class', 'hide_type', 'hide_const',
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 36162
diff changeset
    81
'hide_fact' replace the former 'hide' KIND command.  Minor
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 36162
diff changeset
    82
INCOMPATIBILITY.
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 36162
diff changeset
    83
35260
41e82c1b5586 NEWS: authentic syntax for *all* term constants;
wenzelm
parents: 35130
diff changeset
    84
34170
254ac75e4c38 reduced code generator cache to the baremost minimum; corrected spelling
haftmann
parents: 34076
diff changeset
    85
*** Pure ***
254ac75e4c38 reduced code generator cache to the baremost minimum; corrected spelling
haftmann
parents: 34076
diff changeset
    86
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36096
diff changeset
    87
* Code generator: simple concept for abstract datatypes obeying invariants.
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36096
diff changeset
    88
35765
09e238561460 local theory specifications handle hidden polymorphism implicitly;
wenzelm
parents: 35763
diff changeset
    89
* Local theory specifications may depend on extra type variables that
09e238561460 local theory specifications handle hidden polymorphism implicitly;
wenzelm
parents: 35763
diff changeset
    90
are not present in the result type -- arguments TYPE('a) :: 'a itself
09e238561460 local theory specifications handle hidden polymorphism implicitly;
wenzelm
parents: 35763
diff changeset
    91
are added internally.  For example:
09e238561460 local theory specifications handle hidden polymorphism implicitly;
wenzelm
parents: 35763
diff changeset
    92
09e238561460 local theory specifications handle hidden polymorphism implicitly;
wenzelm
parents: 35763
diff changeset
    93
  definition unitary :: bool where "unitary = (ALL (x::'a) y. x = y)"
09e238561460 local theory specifications handle hidden polymorphism implicitly;
wenzelm
parents: 35763
diff changeset
    94
34170
254ac75e4c38 reduced code generator cache to the baremost minimum; corrected spelling
haftmann
parents: 34076
diff changeset
    95
* Code generator: details of internal data cache have no impact on
254ac75e4c38 reduced code generator cache to the baremost minimum; corrected spelling
haftmann
parents: 34076
diff changeset
    96
the user space functionality any longer.
254ac75e4c38 reduced code generator cache to the baremost minimum; corrected spelling
haftmann
parents: 34076
diff changeset
    97
36093
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 34962
diff changeset
    98
* Methods unfold_locales and intro_locales ignore non-locale subgoals.  This
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 34962
diff changeset
    99
is more appropriate for interpretations with 'where'.  INCOMPATIBILITY.
34170
254ac75e4c38 reduced code generator cache to the baremost minimum; corrected spelling
haftmann
parents: 34076
diff changeset
   100
35129
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 35111
diff changeset
   101
* Discontinued unnamed infix syntax (legacy feature for many years) --
35130
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35129
diff changeset
   102
need to specify constant name and syntax separately.  Internal ML
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35129
diff changeset
   103
datatype constructors have been renamed from InfixName to Infix etc.
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35129
diff changeset
   104
Minor INCOMPATIBILITY.
35129
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 35111
diff changeset
   105
36356
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36348
diff changeset
   106
* Command 'example_proof' opens an empty proof body.  This allows to
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36348
diff changeset
   107
experiment with Isar, without producing any persistent result.
5ab0f8859f9f command 'example_proof' opens an empty proof body;
wenzelm
parents: 36348
diff changeset
   108
35413
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35401
diff changeset
   109
* Commands 'type_notation' and 'no_type_notation' declare type syntax
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35401
diff changeset
   110
within a local theory context, with explicit checking of the
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35401
diff changeset
   111
constructors involved (in contrast to the raw 'syntax' versions).
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35401
diff changeset
   112
36178
0e5c133b48b6 keep localized 'types' as regular non-old-style version -- 'type_abbrev' as 'type' just causes too many problems, e.g. clash with "type" in translations or "type:" argument syntax;
wenzelm
parents: 36177
diff changeset
   113
* Commands 'types' and 'typedecl' now work within a local theory
0e5c133b48b6 keep localized 'types' as regular non-old-style version -- 'type_abbrev' as 'type' just causes too many problems, e.g. clash with "type" in translations or "type:" argument syntax;
wenzelm
parents: 36177
diff changeset
   114
context -- without introducing dependencies on parameters or
0e5c133b48b6 keep localized 'types' as regular non-old-style version -- 'type_abbrev' as 'type' just causes too many problems, e.g. clash with "type" in translations or "type:" argument syntax;
wenzelm
parents: 36177
diff changeset
   115
assumptions, which is not possible in Isabelle/Pure.
35681
8b22a498b034 localized typedecl;
wenzelm
parents: 35613
diff changeset
   116
36044
krauss
parents: 36000
diff changeset
   117
* Proof terms: Type substitutions on proof constants now use canonical
krauss
parents: 36000
diff changeset
   118
order of type variables. INCOMPATIBILITY: Tools working with proof
krauss
parents: 36000
diff changeset
   119
terms may need to be adapted.
krauss
parents: 36000
diff changeset
   120
34170
254ac75e4c38 reduced code generator cache to the baremost minimum; corrected spelling
haftmann
parents: 34076
diff changeset
   121
33993
haftmann
parents: 33873
diff changeset
   122
*** HOL ***
haftmann
parents: 33873
diff changeset
   123
36300
c805033ad032 modernized abstract algebra theories
haftmann
parents: 36201
diff changeset
   124
* Abstract algebra:
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36317
diff changeset
   125
  * classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36317
diff changeset
   126
    include rule inverse 0 = 0 -- subsumes former division_by_zero class.
36300
c805033ad032 modernized abstract algebra theories
haftmann
parents: 36201
diff changeset
   127
  * numerous lemmas have been ported from field to division_ring;
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36317
diff changeset
   128
  * dropped theorem group group_simps, use algebra_simps instead;
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36317
diff changeset
   129
  * dropped theorem group ring_simps, use field_simps instead;
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36317
diff changeset
   130
  * proper theorem collection field_simps subsumes former theorem groups field_eq_simps and field_simps;
36300
c805033ad032 modernized abstract algebra theories
haftmann
parents: 36201
diff changeset
   131
  * dropped lemma eq_minus_self_iff which is a duplicate for equal_neg_zero.
c805033ad032 modernized abstract algebra theories
haftmann
parents: 36201
diff changeset
   132
c805033ad032 modernized abstract algebra theories
haftmann
parents: 36201
diff changeset
   133
  INCOMPATIBILITY.
c805033ad032 modernized abstract algebra theories
haftmann
parents: 36201
diff changeset
   134
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36096
diff changeset
   135
* Library theory 'RBT' renamed to 'RBT_Impl'; new library theory 'RBT'
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36096
diff changeset
   136
provides abstract red-black tree type which is backed by RBT_Impl
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36096
diff changeset
   137
as implementation.  INCOMPATIBILTY.
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36096
diff changeset
   138
35745
1416f568b2b6 command 'typedef' now works within a local theory context;
wenzelm
parents: 35728
diff changeset
   139
* Command 'typedef' now works within a local theory context -- without
1416f568b2b6 command 'typedef' now works within a local theory context;
wenzelm
parents: 35728
diff changeset
   140
introducing dependencies on parameters or assumptions, which is not
1416f568b2b6 command 'typedef' now works within a local theory context;
wenzelm
parents: 35728
diff changeset
   141
possible in Isabelle/Pure/HOL.  Note that the logical environment may
1416f568b2b6 command 'typedef' now works within a local theory context;
wenzelm
parents: 35728
diff changeset
   142
contain multiple interpretations of local typedefs (with different
1416f568b2b6 command 'typedef' now works within a local theory context;
wenzelm
parents: 35728
diff changeset
   143
non-emptiness proofs), even in a global theory context.
1416f568b2b6 command 'typedef' now works within a local theory context;
wenzelm
parents: 35728
diff changeset
   144
35763
765f8adf10f9 removed obsolete HOL/Library/Coinductive_List.thy, superceded by thys/Coinductive/Coinductive_List.thy in AFP/f2f5727b77d0;
wenzelm
parents: 35745
diff changeset
   145
* Theory Library/Coinductive_List has been removed -- superceded by
765f8adf10f9 removed obsolete HOL/Library/Coinductive_List.thy, superceded by thys/Coinductive/Coinductive_List.thy in AFP/f2f5727b77d0;
wenzelm
parents: 35745
diff changeset
   146
AFP/thys/Coinductive.
765f8adf10f9 removed obsolete HOL/Library/Coinductive_List.thy, superceded by thys/Coinductive/Coinductive_List.thy in AFP/f2f5727b77d0;
wenzelm
parents: 35745
diff changeset
   147
35728
haftmann
parents: 35721
diff changeset
   148
* Split off theory Big_Operators containing setsum, setprod, Inf_fin, Sup_fin,
haftmann
parents: 35721
diff changeset
   149
Min, Max from theory Finite_Set.  INCOMPATIBILITY.
haftmann
parents: 35721
diff changeset
   150
35372
ca158c7b1144 renamed theory Rational to Rat
haftmann
parents: 35306
diff changeset
   151
* Theory "Rational" renamed to "Rat", for consistency with "Nat", "Int" etc.
ca158c7b1144 renamed theory Rational to Rat
haftmann
parents: 35306
diff changeset
   152
INCOMPATIBILITY.
ca158c7b1144 renamed theory Rational to Rat
haftmann
parents: 35306
diff changeset
   153
35042
a27b48967b26 NEWS: ax_simps
haftmann
parents: 35039
diff changeset
   154
* New set of rules "ac_simps" provides combined assoc / commute rewrites
a27b48967b26 NEWS: ax_simps
haftmann
parents: 35039
diff changeset
   155
for all interpretations of the appropriate generic locales.
a27b48967b26 NEWS: ax_simps
haftmann
parents: 35039
diff changeset
   156
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35042
diff changeset
   157
* Renamed theory "OrderedGroup" to "Groups" and split theory "Ring_and_Field"
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35042
diff changeset
   158
into theories "Rings" and "Fields";  for more appropriate and more
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35042
diff changeset
   159
consistent names suitable for name prefixes within the HOL theories.
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35042
diff changeset
   160
INCOMPATIBILITY.
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35042
diff changeset
   161
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   162
* Some generic constants have been put to appropriate theories:
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   163
35093
haftmann
parents: 35084
diff changeset
   164
    less_eq, less: Orderings
35264
haftmann
parents: 35130
diff changeset
   165
    zero, one, plus, minus, uminus, times, abs, sgn: Groups
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   166
    inverse, divide: Rings
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   167
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   168
INCOMPATIBILITY.
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   169
35721
f7bbee848403 fixed typo
haftmann
parents: 35681
diff changeset
   170
* Class division_ring also requires proof of fact divide_inverse.  However instantiation
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   171
of parameter divide has also been required previously.  INCOMPATIBILITY.
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   172
35032
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   173
* More consistent naming of type classes involving orderings (and lattices):
35027
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   174
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   175
    lower_semilattice                   ~> semilattice_inf
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   176
    upper_semilattice                   ~> semilattice_sup
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   177
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   178
    dense_linear_order                  ~> dense_linorder
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   179
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   180
    pordered_ab_group_add               ~> ordered_ab_group_add
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   181
    pordered_ab_group_add_abs           ~> ordered_ab_group_add_abs
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   182
    pordered_ab_semigroup_add           ~> ordered_ab_semigroup_add
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   183
    pordered_ab_semigroup_add_imp_le    ~> ordered_ab_semigroup_add_imp_le
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   184
    pordered_cancel_ab_semigroup_add    ~> ordered_cancel_ab_semigroup_add
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   185
    pordered_cancel_comm_semiring       ~> ordered_cancel_comm_semiring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   186
    pordered_cancel_semiring            ~> ordered_cancel_semiring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   187
    pordered_comm_monoid_add            ~> ordered_comm_monoid_add
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   188
    pordered_comm_ring                  ~> ordered_comm_ring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   189
    pordered_comm_semiring              ~> ordered_comm_semiring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   190
    pordered_ring                       ~> ordered_ring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   191
    pordered_ring_abs                   ~> ordered_ring_abs
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   192
    pordered_semiring                   ~> ordered_semiring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   193
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   194
    ordered_ab_group_add                ~> linordered_ab_group_add
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   195
    ordered_ab_semigroup_add            ~> linordered_ab_semigroup_add
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   196
    ordered_cancel_ab_semigroup_add     ~> linordered_cancel_ab_semigroup_add
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   197
    ordered_comm_semiring_strict        ~> linordered_comm_semiring_strict
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   198
    ordered_field                       ~> linordered_field
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   199
    ordered_field_no_lb                 ~> linordered_field_no_lb
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   200
    ordered_field_no_ub                 ~> linordered_field_no_ub
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   201
    ordered_field_dense_linear_order    ~> dense_linordered_field
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   202
    ordered_idom                        ~> linordered_idom
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   203
    ordered_ring                        ~> linordered_ring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   204
    ordered_ring_le_cancel_factor       ~> linordered_ring_le_cancel_factor
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   205
    ordered_ring_less_cancel_factor     ~> linordered_ring_less_cancel_factor
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   206
    ordered_ring_strict                 ~> linordered_ring_strict
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   207
    ordered_semidom                     ~> linordered_semidom
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   208
    ordered_semiring                    ~> linordered_semiring
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   209
    ordered_semiring_1                  ~> linordered_semiring_1
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   210
    ordered_semiring_1_strict           ~> linordered_semiring_1_strict
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   211
    ordered_semiring_strict             ~> linordered_semiring_strict
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   212
35032
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   213
  The following slightly odd type classes have been moved to
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   214
  a separate theory Library/Lattice_Algebras.thy:
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   215
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   216
    lordered_ab_group_add               ~> lattice_ab_group_add
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   217
    lordered_ab_group_add_abs           ~> lattice_ab_group_add_abs
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   218
    lordered_ab_group_add_meet          ~> semilattice_inf_ab_group_add
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   219
    lordered_ab_group_add_join          ~> semilattice_sup_ab_group_add
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   220
    lordered_ring                       ~> lattice_ring
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35027
diff changeset
   221
35027
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   222
INCOMPATIBILITY.
ed7d12bcf8f8 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34974
diff changeset
   223
34962
807f6ce0273d HOLogic.strip_psplits: types are ordered after syntactic appearance, not after corresponding de-Bruin index (closer correspondence to similar strip operations)
haftmann
parents: 34946
diff changeset
   224
* HOLogic.strip_psplit: types are returned in syntactic order, similar
807f6ce0273d HOLogic.strip_psplits: types are ordered after syntactic appearance, not after corresponding de-Bruin index (closer correspondence to similar strip operations)
haftmann
parents: 34946
diff changeset
   225
to other strip and tuple operations.  INCOMPATIBILITY.
807f6ce0273d HOLogic.strip_psplits: types are ordered after syntactic appearance, not after corresponding de-Bruin index (closer correspondence to similar strip operations)
haftmann
parents: 34946
diff changeset
   226
34946
haftmann
parents: 34933
diff changeset
   227
* Various old-style primrec specifications in the HOL theories have been
haftmann
parents: 34933
diff changeset
   228
replaced by new-style primrec, especially in theory List.  The corresponding
haftmann
parents: 34933
diff changeset
   229
constants now have authentic syntax.  INCOMPATIBILITY.
haftmann
parents: 34933
diff changeset
   230
35276
haftmann
parents: 35275
diff changeset
   231
* Reorganized theory Multiset: swapped notation of pointwise and multiset order:
haftmann
parents: 35275
diff changeset
   232
  * pointwise ordering is instance of class order with standard syntax <= and <;
haftmann
parents: 35275
diff changeset
   233
  * multiset ordering has syntax <=# and <#; partial order properties are provided
haftmann
parents: 35275
diff changeset
   234
      by means of interpretation with prefix multiset_order.
haftmann
parents: 35275
diff changeset
   235
Less duplication, less historical organization of sections,
35270
haftmann
parents: 35264
diff changeset
   236
conversion from associations lists to multisets, rudimentary code generation.
haftmann
parents: 35264
diff changeset
   237
Use insert_DiffM2 [symmetric] instead of elem_imp_eq_diff_union, if needed.
haftmann
parents: 35264
diff changeset
   238
INCOMPATIBILITY.
34946
haftmann
parents: 34933
diff changeset
   239
35009
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   240
* Reorganized theory Sum_Type; Inl and Inr now have authentic syntax.
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   241
INCOMPATIBILITY.
33993
haftmann
parents: 33873
diff changeset
   242
haftmann
parents: 33873
diff changeset
   243
* Code generation: ML and OCaml code is decorated with signatures.
haftmann
parents: 33873
diff changeset
   244
35009
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   245
* Theory Complete_Lattice: lemmas top_def and bot_def have been
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   246
replaced by the more convenient lemmas Inf_empty and Sup_empty.
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   247
Dropped lemmas Inf_insert_simp and Sup_insert_simp, which are subsumed
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   248
by Inf_insert and Sup_insert.  Lemmas Inf_UNIV and Sup_UNIV replace
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   249
former Inf_Univ and Sup_Univ.  Lemmas inf_top_right and sup_bot_right
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   250
subsume inf_top and sup_bot respectively.  INCOMPATIBILITY.
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   251
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   252
* Theory Finite_Set and List: some lemmas have been generalized from
34076
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   253
sets to lattices:
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   254
34007
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   255
  fun_left_comm_idem_inter      ~> fun_left_comm_idem_inf
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   256
  fun_left_comm_idem_union      ~> fun_left_comm_idem_sup
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   257
  inter_Inter_fold_inter        ~> inf_Inf_fold_inf
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   258
  union_Union_fold_union        ~> sup_Sup_fold_sup
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   259
  Inter_fold_inter              ~> Inf_fold_inf
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   260
  Union_fold_union              ~> Sup_fold_sup
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   261
  inter_INTER_fold_inter        ~> inf_INFI_fold_inf
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   262
  union_UNION_fold_union        ~> sup_SUPR_fold_sup
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   263
  INTER_fold_inter              ~> INFI_fold_inf
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   264
  UNION_fold_union              ~> SUPR_fold_sup
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33994
diff changeset
   265
35009
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   266
* Theory List: added transpose.
5408e5207131 misc tuning;
wenzelm
parents: 34974
diff changeset
   267
35100
53754ec7360b renamed Library/Quotient.thy to Library/Quotient_Type.thy to avoid clash with new theory Quotient in Main HOL;
wenzelm
parents: 35093
diff changeset
   268
* Renamed Library/Quotient.thy to Library/Quotient_Type.thy to avoid
53754ec7360b renamed Library/Quotient.thy to Library/Quotient_Type.thy to avoid clash with new theory Quotient in Main HOL;
wenzelm
parents: 35093
diff changeset
   269
clash with new theory Quotient in Main HOL.
53754ec7360b renamed Library/Quotient.thy to Library/Quotient_Type.thy to avoid clash with new theory Quotient in Main HOL;
wenzelm
parents: 35093
diff changeset
   270
35810
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   271
* Library/Nat_Bijection.thy is a collection of bijective functions
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   272
between nat and other types, which supersedes the older libraries
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   273
Library/Nat_Int_Bij.thy and HOLCF/NatIso.thy.  INCOMPATIBILITY.
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   274
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   275
  Constants:
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   276
  Nat_Int_Bij.nat2_to_nat         ~> prod_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   277
  Nat_Int_Bij.nat_to_nat2         ~> prod_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   278
  Nat_Int_Bij.int_to_nat_bij      ~> int_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   279
  Nat_Int_Bij.nat_to_int_bij      ~> int_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   280
  Countable.pair_encode           ~> prod_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   281
  NatIso.prod2nat                 ~> prod_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   282
  NatIso.nat2prod                 ~> prod_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   283
  NatIso.sum2nat                  ~> sum_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   284
  NatIso.nat2sum                  ~> sum_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   285
  NatIso.list2nat                 ~> list_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   286
  NatIso.nat2list                 ~> list_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   287
  NatIso.set2nat                  ~> set_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   288
  NatIso.nat2set                  ~> set_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   289
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   290
  Lemmas:
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   291
  Nat_Int_Bij.bij_nat_to_int_bij  ~> bij_int_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   292
  Nat_Int_Bij.nat2_to_nat_inj     ~> inj_prod_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   293
  Nat_Int_Bij.nat2_to_nat_surj    ~> surj_prod_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   294
  Nat_Int_Bij.nat_to_nat2_inj     ~> inj_prod_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   295
  Nat_Int_Bij.nat_to_nat2_surj    ~> surj_prod_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   296
  Nat_Int_Bij.i2n_n2i_id          ~> int_encode_inverse
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   297
  Nat_Int_Bij.n2i_i2n_id          ~> int_decode_inverse
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   298
  Nat_Int_Bij.surj_nat_to_int_bij ~> surj_int_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   299
  Nat_Int_Bij.surj_int_to_nat_bij ~> surj_int_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   300
  Nat_Int_Bij.inj_nat_to_int_bij  ~> inj_int_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   301
  Nat_Int_Bij.inj_int_to_nat_bij  ~> inj_int_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   302
  Nat_Int_Bij.bij_nat_to_int_bij  ~> bij_int_encode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   303
  Nat_Int_Bij.bij_int_to_nat_bij  ~> bij_int_decode
a50237ec0ecd NEWS: Nat_Bijection library
huffman
parents: 35765
diff changeset
   304
33993
haftmann
parents: 33873
diff changeset
   305
haftmann
parents: 33873
diff changeset
   306
*** ML ***
haftmann
parents: 33873
diff changeset
   307
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   308
* Antiquotations for basic formal entities:
35396
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35377
diff changeset
   309
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35377
diff changeset
   310
    @{class NAME}         -- type class
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   311
    @{class_syntax NAME}  -- syntax representation of the above
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   312
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   313
    @{type_name NAME}     -- logical type
35361
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35351
diff changeset
   314
    @{type_abbrev NAME}   -- type abbreviation
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35351
diff changeset
   315
    @{nonterminal NAME}   -- type of concrete syntactic category
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35351
diff changeset
   316
    @{type_syntax NAME}   -- syntax representation of any of the above
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35351
diff changeset
   317
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   318
    @{const_name NAME}    -- logical constant (INCOMPATIBILITY)
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   319
    @{const_abbrev NAME}  -- abbreviated constant
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   320
    @{const_syntax NAME}  -- syntax representation of any of the above
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   321
35111
18cd034922ba added ML antiquotation @{syntax_const};
wenzelm
parents: 35100
diff changeset
   322
* Antiquotation @{syntax_const NAME} ensures that NAME refers to a raw
18cd034922ba added ML antiquotation @{syntax_const};
wenzelm
parents: 35100
diff changeset
   323
syntax constant (cf. 'syntax' command).
18cd034922ba added ML antiquotation @{syntax_const};
wenzelm
parents: 35100
diff changeset
   324
36162
0bd034a80a9a added ML antiquotation @{make_string}, which produces proper pretty printed version in Poly/ML 5.3.0 or later;
wenzelm
parents: 36147
diff changeset
   325
* Antiquotation @{make_string} inlines a function to print arbitrary
0bd034a80a9a added ML antiquotation @{make_string}, which produces proper pretty printed version in Poly/ML 5.3.0 or later;
wenzelm
parents: 36147
diff changeset
   326
values similar to the ML toplevel.  The result is compiler dependent
0bd034a80a9a added ML antiquotation @{make_string}, which produces proper pretty printed version in Poly/ML 5.3.0 or later;
wenzelm
parents: 36147
diff changeset
   327
and may fall back on "?" in certain situations.
0bd034a80a9a added ML antiquotation @{make_string}, which produces proper pretty printed version in Poly/ML 5.3.0 or later;
wenzelm
parents: 36147
diff changeset
   328
35021
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 35009
diff changeset
   329
* Renamed old-style Drule.standard to Drule.export_without_context, to
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 35009
diff changeset
   330
emphasize that this is in no way a standard operation.
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 35009
diff changeset
   331
INCOMPATIBILITY.
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 35009
diff changeset
   332
34076
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   333
* Curried take and drop in library.ML; negative length is interpreted
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   334
as infinity (as in chop).  INCOMPATIBILITY.
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   335
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   336
* Subgoal.FOCUS (and variants): resulting goal state is normalized as
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   337
usual for resolution.  Rare INCOMPATIBILITY.
e3daf3c07381 Subgoal.FOCUS (and variants): resulting goal state is normalized as usual for resolution;
wenzelm
parents: 34062
diff changeset
   338
34259
2ba492b8b6e8 discontinued old TheoryDataFun, but retain Theory_Data_PP with is Pretty.pp argument to merge (still required in exotic situations -- hard to get rid of);
wenzelm
parents: 34255
diff changeset
   339
* Discontinued old TheoryDataFun with its copy/init operation -- data
2ba492b8b6e8 discontinued old TheoryDataFun, but retain Theory_Data_PP with is Pretty.pp argument to merge (still required in exotic situations -- hard to get rid of);
wenzelm
parents: 34255
diff changeset
   340
needs to be pure.  Functor Theory_Data_PP retains the traditional
2ba492b8b6e8 discontinued old TheoryDataFun, but retain Theory_Data_PP with is Pretty.pp argument to merge (still required in exotic situations -- hard to get rid of);
wenzelm
parents: 34255
diff changeset
   341
Pretty.pp argument to merge, which is absent in the standard
2ba492b8b6e8 discontinued old TheoryDataFun, but retain Theory_Data_PP with is Pretty.pp argument to merge (still required in exotic situations -- hard to get rid of);
wenzelm
parents: 34255
diff changeset
   342
Theory_Data version.
2ba492b8b6e8 discontinued old TheoryDataFun, but retain Theory_Data_PP with is Pretty.pp argument to merge (still required in exotic situations -- hard to get rid of);
wenzelm
parents: 34255
diff changeset
   343
35845
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35810
diff changeset
   344
* Renamed varify/unvarify operations to varify_global/unvarify_global
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35810
diff changeset
   345
to emphasize that these only work in a global situation (which is
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35810
diff changeset
   346
quite rare).
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35810
diff changeset
   347
36000
5560b2437789 configuration options admit dynamic default values;
wenzelm
parents: 35995
diff changeset
   348
* Configuration options now admit dynamic default values, depending on
5560b2437789 configuration options admit dynamic default values;
wenzelm
parents: 35995
diff changeset
   349
the context or even global references.
5560b2437789 configuration options admit dynamic default values;
wenzelm
parents: 35995
diff changeset
   350
33993
haftmann
parents: 33873
diff changeset
   351
34238
b28be884edda discontinued special HOL_USEDIR_OPTIONS;
wenzelm
parents: 34170
diff changeset
   352
*** System ***
b28be884edda discontinued special HOL_USEDIR_OPTIONS;
wenzelm
parents: 34170
diff changeset
   353
b28be884edda discontinued special HOL_USEDIR_OPTIONS;
wenzelm
parents: 34170
diff changeset
   354
* Discontinued special HOL_USEDIR_OPTIONS for the main HOL image;
b28be884edda discontinued special HOL_USEDIR_OPTIONS;
wenzelm
parents: 34170
diff changeset
   355
ISABELLE_USEDIR_OPTIONS applies uniformly to all sessions.  Note that
b28be884edda discontinued special HOL_USEDIR_OPTIONS;
wenzelm
parents: 34170
diff changeset
   356
proof terms are enabled unconditionally in the new HOL-Proofs image.
b28be884edda discontinued special HOL_USEDIR_OPTIONS;
wenzelm
parents: 34170
diff changeset
   357
34255
2dd2547acb41 discontinued old ISABELLE and ISATOOL environment settings;
wenzelm
parents: 34238
diff changeset
   358
* Discontinued old ISABELLE and ISATOOL environment settings (legacy
2dd2547acb41 discontinued old ISABELLE and ISATOOL environment settings;
wenzelm
parents: 34238
diff changeset
   359
feature since Isabelle2009).  Use ISABELLE_PROCESS and ISABELLE_TOOL,
2dd2547acb41 discontinued old ISABELLE and ISATOOL environment settings;
wenzelm
parents: 34238
diff changeset
   360
respectively.
2dd2547acb41 discontinued old ISABELLE and ISATOOL environment settings;
wenzelm
parents: 34238
diff changeset
   361
36201
07d4f74abd12 polyml-platform script is superseded by ISABELLE_PLATFORM;
wenzelm
parents: 36178
diff changeset
   362
* Old lib/scripts/polyml-platform is superseded by the
07d4f74abd12 polyml-platform script is superseded by ISABELLE_PLATFORM;
wenzelm
parents: 36178
diff changeset
   363
ISABELLE_PLATFORM setting variable, which defaults to the 32 bit
07d4f74abd12 polyml-platform script is superseded by ISABELLE_PLATFORM;
wenzelm
parents: 36178
diff changeset
   364
variant, even on a 64 bit machine.  The following example setting
07d4f74abd12 polyml-platform script is superseded by ISABELLE_PLATFORM;
wenzelm
parents: 36178
diff changeset
   365
prefers 64 bit if available:
07d4f74abd12 polyml-platform script is superseded by ISABELLE_PLATFORM;
wenzelm
parents: 36178
diff changeset
   366
07d4f74abd12 polyml-platform script is superseded by ISABELLE_PLATFORM;
wenzelm
parents: 36178
diff changeset
   367
  ML_PLATFORM="${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM}"
07d4f74abd12 polyml-platform script is superseded by ISABELLE_PLATFORM;
wenzelm
parents: 36178
diff changeset
   368
34238
b28be884edda discontinued special HOL_USEDIR_OPTIONS;
wenzelm
parents: 34170
diff changeset
   369
33993
haftmann
parents: 33873
diff changeset
   370
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   371
New in Isabelle2009-1 (December 2009)
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   372
-------------------------------------
30904
cc6a6047a10f back to non-release mode;
wenzelm
parents: 30855
diff changeset
   373
31547
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   374
*** General ***
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   375
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   376
* Discontinued old form of "escaped symbols" such as \\<forall>.  Only
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   377
one backslash should be used, even in ML sources.
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   378
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   379
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30949
diff changeset
   380
*** Pure ***
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30949
diff changeset
   381
32846
29941e925c82 News entry: inheritance of mixins; print_interps.
ballarin
parents: 32775
diff changeset
   382
* Locale interpretation propagates mixins along the locale hierarchy.
29941e925c82 News entry: inheritance of mixins; print_interps.
ballarin
parents: 32775
diff changeset
   383
The currently only available mixins are the equations used to map
29941e925c82 News entry: inheritance of mixins; print_interps.
ballarin
parents: 32775
diff changeset
   384
local definitions to terms of the target domain of an interpretation.
29941e925c82 News entry: inheritance of mixins; print_interps.
ballarin
parents: 32775
diff changeset
   385
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   386
* Reactivated diagnostic command 'print_interps'.  Use "print_interps
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   387
loc" to print all interpretations of locale "loc" in the theory.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   388
Interpretations in proofs are not shown.
32846
29941e925c82 News entry: inheritance of mixins; print_interps.
ballarin
parents: 32775
diff changeset
   389
32983
a6914429005b Finished revisions of locales tutorial.
ballarin
parents: 32846
diff changeset
   390
* Thoroughly revised locales tutorial.  New section on conditional
a6914429005b Finished revisions of locales tutorial.
ballarin
parents: 32846
diff changeset
   391
interpretation.
a6914429005b Finished revisions of locales tutorial.
ballarin
parents: 32846
diff changeset
   392
33843
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   393
* On instantiation of classes, remaining undefined class parameters
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   394
are formally declared.  INCOMPATIBILITY.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   395
30951
a6e26a248f03 formal declaration of undefined parameters after class instantiation
haftmann
parents: 30949
diff changeset
   396
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   397
*** Document preparation ***
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   398
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   399
* New generalized style concept for printing terms: @{foo (style) ...}
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   400
instead of @{foo_style style ...}  (old form is still retained for
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   401
backward compatibility).  Styles can be also applied for
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   402
antiquotations prop, term_type and typeof.
32891
d403b99287ff new generalized concept for term styles
haftmann
parents: 32846
diff changeset
   403
d403b99287ff new generalized concept for term styles
haftmann
parents: 32846
diff changeset
   404
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30855
diff changeset
   405
*** HOL ***
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30855
diff changeset
   406
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   407
* New proof method "smt" for a combination of first-order logic with
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   408
equality, linear and nonlinear (natural/integer/real) arithmetic, and
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   409
fixed-size bitvectors; there is also basic support for higher-order
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   410
features (esp. lambda abstractions).  It is an incomplete decision
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   411
procedure based on external SMT solvers using the oracle mechanism;
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   412
for the SMT solver Z3, this method is proof-producing.  Certificates
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   413
are provided to avoid calling the external solvers solely for
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   414
re-checking proofs.  Due to a remote SMT service there is no need for
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   415
installing SMT solvers locally.  See src/HOL/SMT.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   416
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   417
* New commands to load and prove verification conditions generated by
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   418
the Boogie program verifier or derived systems (e.g. the Verifying C
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   419
Compiler (VCC) or Spec#).  See src/HOL/Boogie.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   420
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   421
* New counterexample generator tool 'nitpick' based on the Kodkod
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   422
relational model finder.  See src/HOL/Tools/Nitpick and
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   423
src/HOL/Nitpick_Examples.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   424
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   425
* New commands 'code_pred' and 'values' to invoke the predicate
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   426
compiler and to enumerate values of inductive predicates.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   427
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   428
* A tabled implementation of the reflexive transitive closure.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   429
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   430
* New implementation of quickcheck uses generic code generator;
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   431
default generators are provided for all suitable HOL types, records
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   432
and datatypes.  Old quickcheck can be re-activated importing theory
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   433
Library/SML_Quickcheck.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   434
33843
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   435
* New testing tool Mirabelle for automated proof tools.  Applies
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   436
several tools and tactics like sledgehammer, metis, or quickcheck, to
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   437
every proof step in a theory.  To be used in batch mode via the
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   438
"mirabelle" utility.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   439
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   440
* New proof method "sos" (sum of squares) for nonlinear real
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   441
arithmetic (originally due to John Harison). It requires theory
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   442
Library/Sum_Of_Squares.  It is not a complete decision procedure but
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   443
works well in practice on quantifier-free real arithmetic with +, -,
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   444
*, ^, =, <= and <, i.e. boolean combinations of equalities and
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   445
inequalities between polynomials.  It makes use of external
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   446
semidefinite programming solvers.  Method "sos" generates a
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   447
certificate that can be pasted into the proof thus avoiding the need
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   448
to call an external tool every time the proof is checked.  See
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   449
src/HOL/Library/Sum_Of_Squares.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   450
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   451
* New method "linarith" invokes existing linear arithmetic decision
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   452
procedure only.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   453
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   454
* New command 'atp_minimal' reduces result produced by Sledgehammer.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   455
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   456
* New Sledgehammer option "Full Types" in Proof General settings menu.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   457
Causes full type information to be output to the ATPs.  This slows
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   458
ATPs down considerably but eliminates a source of unsound "proofs"
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   459
that fail later.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   460
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   461
* New method "metisFT": A version of metis that uses full type
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   462
information in order to avoid failures of proof reconstruction.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   463
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   464
* New evaluator "approximate" approximates an real valued term using
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   465
the same method as the approximation method.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   466
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   467
* Method "approximate" now supports arithmetic expressions as
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   468
boundaries of intervals and implements interval splitting and Taylor
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   469
series expansion.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   470
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   471
* ML antiquotation @{code_datatype} inserts definition of a datatype
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   472
generated by the code generator; e.g. see src/HOL/Predicate.thy.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   473
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   474
* New theory SupInf of the supremum and infimum operators for sets of
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   475
reals.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   476
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   477
* New theory Probability, which contains a development of measure
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   478
theory, eventually leading to Lebesgue integration and probability.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   479
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   480
* Extended Multivariate Analysis to include derivation and Brouwer's
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   481
fixpoint theorem.
33843
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   482
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   483
* Reorganization of number theory, INCOMPATIBILITY:
33873
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   484
  - new number theory development for nat and int, in theories Divides
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   485
    and GCD as well as in new session Number_Theory
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   486
  - some constants and facts now suffixed with _nat and _int
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   487
    accordingly
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   488
  - former session NumberTheory now named Old_Number_Theory, including
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   489
    theories Legacy_GCD and Primes (prefer Number_Theory if possible)
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   490
  - moved theory Pocklington from src/HOL/Library to
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   491
    src/HOL/Old_Number_Theory
32479
521cc9bf2958 some reorganization of number theory
haftmann
parents: 32463
diff changeset
   492
33873
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   493
* Theory GCD includes functions Gcd/GCD and Lcm/LCM for the gcd and
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   494
lcm of finite and infinite sets. It is shown that they form a complete
32600
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   495
lattice.
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   496
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   497
* Class semiring_div requires superclass no_zero_divisors and proof of
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   498
div_mult_mult1; theorems div_mult_mult1, div_mult_mult2,
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   499
div_mult_mult1_if, div_mult_mult1 and div_mult_mult2 have been
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   500
generalized to class semiring_div, subsuming former theorems
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   501
zdiv_zmult_zmult1, zdiv_zmult_zmult1_if, zdiv_zmult_zmult1 and
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   502
zdiv_zmult_zmult2.  div_mult_mult1 is now [simp] by default.
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   503
INCOMPATIBILITY.
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   504
32588
5e06a1634e55 Inter and Union are mere abbreviations for Inf and Sup; tuned
haftmann
parents: 32485
diff changeset
   505
* Refinements to lattice classes and sets:
32064
53ca12ff305d refinement of lattice classes
haftmann
parents: 31971
diff changeset
   506
  - less default intro/elim rules in locale variant, more default
53ca12ff305d refinement of lattice classes
haftmann
parents: 31971
diff changeset
   507
    intro/elim rules in class variant: more uniformity
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   508
  - lemma ge_sup_conv renamed to le_sup_iff, in accordance with
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   509
    le_inf_iff
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   510
  - dropped lemma alias inf_ACI for inf_aci (same for sup_ACI and
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   511
    sup_aci)
32064
53ca12ff305d refinement of lattice classes
haftmann
parents: 31971
diff changeset
   512
  - renamed ACI to inf_sup_aci
32600
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   513
  - new class "boolean_algebra"
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   514
  - class "complete_lattice" moved to separate theory
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   515
    "Complete_Lattice"; corresponding constants (and abbreviations)
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   516
    renamed and with authentic syntax:
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   517
    Set.Inf ~>    Complete_Lattice.Inf
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   518
    Set.Sup ~>    Complete_Lattice.Sup
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   519
    Set.INFI ~>   Complete_Lattice.INFI
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   520
    Set.SUPR ~>   Complete_Lattice.SUPR
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   521
    Set.Inter ~>  Complete_Lattice.Inter
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   522
    Set.Union ~>  Complete_Lattice.Union
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   523
    Set.INTER ~>  Complete_Lattice.INTER
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   524
    Set.UNION ~>  Complete_Lattice.UNION
32600
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   525
  - authentic syntax for
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   526
    Set.Pow
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   527
    Set.image
32588
5e06a1634e55 Inter and Union are mere abbreviations for Inf and Sup; tuned
haftmann
parents: 32485
diff changeset
   528
  - mere abbreviations:
5e06a1634e55 Inter and Union are mere abbreviations for Inf and Sup; tuned
haftmann
parents: 32485
diff changeset
   529
    Set.empty               (for bot)
5e06a1634e55 Inter and Union are mere abbreviations for Inf and Sup; tuned
haftmann
parents: 32485
diff changeset
   530
    Set.UNIV                (for top)
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   531
    Set.inter               (for inf, formerly Set.Int)
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   532
    Set.union               (for sup, formerly Set.Un)
32588
5e06a1634e55 Inter and Union are mere abbreviations for Inf and Sup; tuned
haftmann
parents: 32485
diff changeset
   533
    Complete_Lattice.Inter  (for Inf)
5e06a1634e55 Inter and Union are mere abbreviations for Inf and Sup; tuned
haftmann
parents: 32485
diff changeset
   534
    Complete_Lattice.Union  (for Sup)
32606
b5c3a8a75772 INTER and UNION are mere abbreviations for INFI and SUPR
haftmann
parents: 32600
diff changeset
   535
    Complete_Lattice.INTER  (for INFI)
b5c3a8a75772 INTER and UNION are mere abbreviations for INFI and SUPR
haftmann
parents: 32600
diff changeset
   536
    Complete_Lattice.UNION  (for SUPR)
32600
1b3b0cc604ce tuned NEWS, added CONTRIBUTORS
haftmann
parents: 32597
diff changeset
   537
  - object-logic definitions as far as appropriate
32217
haftmann
parents: 32216
diff changeset
   538
32691
cdf70f1fc9f9 added note on simp rules
haftmann
parents: 32686
diff changeset
   539
INCOMPATIBILITY.  Care is required when theorems Int_subset_iff or
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   540
Un_subset_iff are explicitly deleted as default simp rules; then also
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   541
their lattice counterparts le_inf_iff and le_sup_iff have to be
32691
cdf70f1fc9f9 added note on simp rules
haftmann
parents: 32686
diff changeset
   542
deleted to achieve the desired effect.
32064
53ca12ff305d refinement of lattice classes
haftmann
parents: 31971
diff changeset
   543
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   544
* Rules inf_absorb1, inf_absorb2, sup_absorb1, sup_absorb2 are no simp
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   545
rules by default any longer; the same applies to min_max.inf_absorb1
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   546
etc.  INCOMPATIBILITY.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   547
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   548
* Rules sup_Int_eq and sup_Un_eq are no longer declared as
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   549
pred_set_conv by default.  INCOMPATIBILITY.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   550
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   551
* Power operations on relations and functions are now one dedicated
32706
b68f3afdc137 NEWS; corrected spelling
haftmann
parents: 32697
diff changeset
   552
constant "compow" with infix syntax "^^".  Power operation on
31547
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   553
multiplicative monoids retains syntax "^" and is now defined generic
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   554
in class power.  INCOMPATIBILITY.
398c0f48a99e discontinued escaped symbols;
wenzelm
parents: 31481
diff changeset
   555
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   556
* Relation composition "R O S" now has a more standard argument order:
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   557
"R O S = {(x, z). EX y. (x, y) : R & (y, z) : S}".  INCOMPATIBILITY,
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   558
rewrite propositions with "S O R" --> "R O S". Proofs may occasionally
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   559
break, since the O_assoc rule was not rewritten like this.  Fix using
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   560
O_assoc[symmetric].  The same applies to the curried version "R OO S".
32427
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   561
33057
764547b68538 inv_onto -> inv_into
nipkow
parents: 33037
diff changeset
   562
* Function "Inv" is renamed to "inv_into" and function "inv" is now an
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   563
abbreviation for "inv_into UNIV".  Lemmas are renamed accordingly.
32988
d1d4d7a08a66 Inv -> inv_onto, inv abbr. inv_onto UNIV.
nipkow
parents: 32898
diff changeset
   564
INCOMPATIBILITY.
d1d4d7a08a66 Inv -> inv_onto, inv abbr. inv_onto UNIV.
nipkow
parents: 32898
diff changeset
   565
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   566
* Most rules produced by inductive and datatype package have mandatory
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   567
prefixes.  INCOMPATIBILITY.
31790
05c92381363c corrected and unified thm names
nipkow
parents: 31784
diff changeset
   568
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   569
* Changed "DERIV_intros" to a dynamic fact, which can be augmented by
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   570
the attribute of the same name.  Each of the theorems in the list
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   571
DERIV_intros assumes composition with an additional function and
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   572
matches a variable to the derivative, which has to be solved by the
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   573
Simplifier.  Hence (auto intro!: DERIV_intros) computes the derivative
33873
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   574
of most elementary terms.  Former Maclauren.DERIV_tac and
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   575
Maclauren.deriv_tac should be replaced by (auto intro!: DERIV_intros).
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   576
INCOMPATIBILITY.
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   577
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   578
* Code generator attributes follow the usual underscore convention:
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   579
    code_unfold     replaces    code unfold
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   580
    code_post       replaces    code post
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   581
    etc.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   582
  INCOMPATIBILITY.
31900
7c35d9ad0349 misc tuning;
wenzelm
parents: 31884
diff changeset
   583
33471
5aef13872723 renamed method induct_scheme to induction_schema
krauss
parents: 33470
diff changeset
   584
* Renamed methods:
5aef13872723 renamed method induct_scheme to induction_schema
krauss
parents: 33470
diff changeset
   585
    sizechange -> size_change
5aef13872723 renamed method induct_scheme to induction_schema
krauss
parents: 33470
diff changeset
   586
    induct_scheme -> induction_schema
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   587
  INCOMPATIBILITY.
33673
nipkow
parents: 33649
diff changeset
   588
33843
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   589
* Discontinued abbreviation "arbitrary" of constant "undefined".
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   590
INCOMPATIBILITY, use "undefined" directly.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   591
33860
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   592
* Renamed theorems:
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   593
    Suc_eq_add_numeral_1 -> Suc_eq_plus1
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   594
    Suc_eq_add_numeral_1_left -> Suc_eq_plus1_left
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   595
    Suc_plus1 -> Suc_eq_plus1
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   596
    *anti_sym -> *antisym*
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   597
    vector_less_eq_def -> vector_le_def
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   598
  INCOMPATIBILITY.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   599
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   600
* Added theorem List.map_map as [simp].  Removed List.map_compose.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   601
INCOMPATIBILITY.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   602
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   603
* Removed predicate "M hassize n" (<--> card M = n & finite M).
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   604
INCOMPATIBILITY.
dcd9affbd106 tuned NEWS
haftmann
parents: 33849
diff changeset
   605
31812
73dc3a98669c NEWS updated
hoelzl
parents: 31810
diff changeset
   606
33825
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   607
*** HOLCF ***
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   608
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   609
* Theory Representable defines a class "rep" of domains that are
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   610
representable (via an ep-pair) in the universal domain type "udom".
33825
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   611
Instances are provided for all type constructors defined in HOLCF.
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   612
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   613
* The 'new_domain' command is a purely definitional version of the
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   614
domain package, for representable domains.  Syntax is identical to the
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   615
old domain package.  The 'new_domain' package also supports indirect
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   616
recursion using previously-defined type constructors.  See
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   617
src/HOLCF/ex/New_Domain.thy for examples.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   618
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   619
* Method "fixrec_simp" unfolds one step of a fixrec-defined constant
33825
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   620
on the left-hand side of an equation, and then performs
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   621
simplification.  Rewriting is done using rules declared with the
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   622
"fixrec_simp" attribute.  The "fixrec_simp" method is intended as a
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   623
replacement for "fixpat"; see src/HOLCF/ex/Fixrec_ex.thy for examples.
33825
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   624
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   625
* The pattern-match compiler in 'fixrec' can now handle constructors
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   626
with HOL function types.  Pattern-match combinators for the Pair
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   627
constructor are pre-configured.
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   628
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   629
* The 'fixrec' package now produces better fixed-point induction rules
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   630
for mutually-recursive definitions:  Induction rules have conclusions
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   631
of the form "P foo bar" instead of "P <foo, bar>".
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   632
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   633
* The constant "sq_le" (with infix syntax "<<" or "\<sqsubseteq>") has
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   634
been renamed to "below".  The name "below" now replaces "less" in many
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   635
theorem names.  (Legacy theorem names using "less" are still supported
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   636
as well.)
33825
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   637
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   638
* The 'fixrec' package now supports "bottom patterns".  Bottom
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   639
patterns can be used to generate strictness rules, or to make
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   640
functions more strict (much like the bang-patterns supported by the
33873
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   641
Glasgow Haskell Compiler).  See src/HOLCF/ex/Fixrec_ex.thy for
e9120a7b2779 more tuning for release;
wenzelm
parents: 33860
diff changeset
   642
examples.
33825
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   643
5dac897d91ce NEWS: HOLCF changes since the last release
huffman
parents: 33818
diff changeset
   644
31304
00a9c674cf40 eliminated old Method.add_method(s);
wenzelm
parents: 31001
diff changeset
   645
*** ML ***
00a9c674cf40 eliminated old Method.add_method(s);
wenzelm
parents: 31001
diff changeset
   646
33843
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   647
* Support for Poly/ML 5.3.0, with improved reporting of compiler
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   648
errors and run-time exceptions, including detailed source positions.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   649
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   650
* Structure Name_Space (formerly NameSpace) now manages uniquely
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   651
identified entries, with some additional information such as source
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   652
position, logical grouping etc.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   653
33524
a08e6c1cbc04 updated functor Theory_Data, Proof_Data, Generic_Data;
wenzelm
parents: 33472
diff changeset
   654
* Theory and context data is now introduced by the simplified and
a08e6c1cbc04 updated functor Theory_Data, Proof_Data, Generic_Data;
wenzelm
parents: 33472
diff changeset
   655
modernized functors Theory_Data, Proof_Data, Generic_Data.  Data needs
a08e6c1cbc04 updated functor Theory_Data, Proof_Data, Generic_Data;
wenzelm
parents: 33472
diff changeset
   656
to be pure, but the old TheoryDataFun for mutable data (with explicit
a08e6c1cbc04 updated functor Theory_Data, Proof_Data, Generic_Data;
wenzelm
parents: 33472
diff changeset
   657
copy operation) is still available for some time.
a08e6c1cbc04 updated functor Theory_Data, Proof_Data, Generic_Data;
wenzelm
parents: 33472
diff changeset
   658
32742
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   659
* Structure Synchronized (cf. src/Pure/Concurrent/synchronized.ML)
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   660
provides a high-level programming interface to synchronized state
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   661
variables with atomic update.  This works via pure function
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   662
application within a critical section -- its runtime should be as
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   663
short as possible; beware of deadlocks if critical code is nested,
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   664
either directly or indirectly via other synchronized variables!
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   665
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   666
* Structure Unsynchronized (cf. src/Pure/ML-Systems/unsynchronized.ML)
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   667
wraps raw ML references, explicitly indicating their non-thread-safe
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   668
behaviour.  The Isar toplevel keeps this structure open, to
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   669
accommodate Proof General as well as quick and dirty interactive
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   670
experiments with references.
58e5f4ae52a6 Synchronized and Unsynchronized;
wenzelm
parents: 32706
diff changeset
   671
32365
9b74d0339c44 added PARALLEL_CHOICE, PARALLEL_GOALS;
wenzelm
parents: 32326
diff changeset
   672
* PARALLEL_CHOICE and PARALLEL_GOALS provide basic support for
9b74d0339c44 added PARALLEL_CHOICE, PARALLEL_GOALS;
wenzelm
parents: 32326
diff changeset
   673
parallel tactical reasoning.
9b74d0339c44 added PARALLEL_CHOICE, PARALLEL_GOALS;
wenzelm
parents: 32326
diff changeset
   674
32427
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   675
* Tacticals Subgoal.FOCUS, Subgoal.FOCUS_PREMS, Subgoal.FOCUS_PARAMS
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   676
are similar to SUBPROOF, but are slightly more flexible: only the
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   677
specified parts of the subgoal are imported into the context, and the
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   678
body tactic may introduce new subgoals and schematic variables.
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   679
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   680
* Old tactical METAHYPS, which does not observe the proof context, has
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   681
been renamed to Old_Goals.METAHYPS and awaits deletion.  Use SUBPROOF
0a94e1f264ce misc updates and tuning;
wenzelm
parents: 32388
diff changeset
   682
or Subgoal.FOCUS etc.
32216
2f3d65d15149 tacticals FOCUS and FOCUS_PARAMS;
wenzelm
parents: 32151
diff changeset
   683
31971
8c1b845ed105 renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents: 31901
diff changeset
   684
* Renamed functor TableFun to Table, and GraphFun to Graph.  (Since
8c1b845ed105 renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents: 31901
diff changeset
   685
functors have their own ML name space there is no point to mark them
8c1b845ed105 renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents: 31901
diff changeset
   686
separately.)  Minor INCOMPATIBILITY.
8c1b845ed105 renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents: 31901
diff changeset
   687
31901
e280491f36b8 renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31900
diff changeset
   688
* Renamed NamedThmsFun to Named_Thms.  INCOMPATIBILITY.
e280491f36b8 renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31900
diff changeset
   689
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   690
* Renamed several structures FooBar to Foo_Bar.  Occasional,
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   691
INCOMPATIBILITY.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   692
33843
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   693
* Operations of structure Skip_Proof no longer require quick_and_dirty
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   694
mode, which avoids critical setmp.
23d09560d56d more NEWS, more tuning for release;
wenzelm
parents: 33842
diff changeset
   695
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31304
diff changeset
   696
* Eliminated old Attrib.add_attributes, Method.add_methods and related
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   697
combinators for "args".  INCOMPATIBILITY, need to use simplified
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31304
diff changeset
   698
Attrib/Method.setup introduced in Isabelle2009.
31304
00a9c674cf40 eliminated old Method.add_method(s);
wenzelm
parents: 31001
diff changeset
   699
32151
2f65c45c2e7e Proper context for simpset_of, claset_of, clasimpset_of.
wenzelm
parents: 32136
diff changeset
   700
* Proper context for simpset_of, claset_of, clasimpset_of.  May fall
2f65c45c2e7e Proper context for simpset_of, claset_of, clasimpset_of.
wenzelm
parents: 32136
diff changeset
   701
back on global_simpset_of, global_claset_of, global_clasimpset_of as
2f65c45c2e7e Proper context for simpset_of, claset_of, clasimpset_of.
wenzelm
parents: 32136
diff changeset
   702
last resort.  INCOMPATIBILITY.
2f65c45c2e7e Proper context for simpset_of, claset_of, clasimpset_of.
wenzelm
parents: 32136
diff changeset
   703
32092
6a5995438266 Display.pretty_thm now requires a proper context;
wenzelm
parents: 32079
diff changeset
   704
* Display.pretty_thm now requires a proper context (cf. former
6a5995438266 Display.pretty_thm now requires a proper context;
wenzelm
parents: 32079
diff changeset
   705
ProofContext.pretty_thm).  May fall back on Display.pretty_thm_global
6a5995438266 Display.pretty_thm now requires a proper context;
wenzelm
parents: 32079
diff changeset
   706
or even Display.pretty_thm_without_context as last resort.
6a5995438266 Display.pretty_thm now requires a proper context;
wenzelm
parents: 32079
diff changeset
   707
INCOMPATIBILITY.
6a5995438266 Display.pretty_thm now requires a proper context;
wenzelm
parents: 32079
diff changeset
   708
32433
11661f4327bb discontinued Display.pretty_ctyp/cterm etc.;
wenzelm
parents: 32427
diff changeset
   709
* Discontinued Display.pretty_ctyp/cterm etc.  INCOMPATIBILITY, use
11661f4327bb discontinued Display.pretty_ctyp/cterm etc.;
wenzelm
parents: 32427
diff changeset
   710
Syntax.pretty_typ/term directly, preferably with proper context
11661f4327bb discontinued Display.pretty_ctyp/cterm etc.;
wenzelm
parents: 32427
diff changeset
   711
instead of global theory.
11661f4327bb discontinued Display.pretty_ctyp/cterm etc.;
wenzelm
parents: 32427
diff changeset
   712
31304
00a9c674cf40 eliminated old Method.add_method(s);
wenzelm
parents: 31001
diff changeset
   713
31308
3fd52453ae81 discontinued support for Poly/ML 4.x versions;
wenzelm
parents: 31306
diff changeset
   714
*** System ***
3fd52453ae81 discontinued support for Poly/ML 4.x versions;
wenzelm
parents: 31306
diff changeset
   715
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   716
* Further fine tuning of parallel proof checking, scales up to 8 cores
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   717
(max. speedup factor 5.0).  See also Goal.parallel_proofs in ML and
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   718
usedir option -q.
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   719
32326
9d70ecf11b7a etc/components;
wenzelm
parents: 32270
diff changeset
   720
* Support for additional "Isabelle components" via etc/components, see
9d70ecf11b7a etc/components;
wenzelm
parents: 32270
diff changeset
   721
also the system manual.
9d70ecf11b7a etc/components;
wenzelm
parents: 32270
diff changeset
   722
9d70ecf11b7a etc/components;
wenzelm
parents: 32270
diff changeset
   723
* The isabelle makeall tool now operates on all components with
9d70ecf11b7a etc/components;
wenzelm
parents: 32270
diff changeset
   724
IsaMakefile, not just hardwired "logics".
9d70ecf11b7a etc/components;
wenzelm
parents: 32270
diff changeset
   725
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   726
* Removed "compress" option from isabelle-process and isabelle usedir;
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   727
this is always enabled.
33818
aa00c583f594 added NEWS item for wwwfind
kleing
parents: 33759
diff changeset
   728
31308
3fd52453ae81 discontinued support for Poly/ML 4.x versions;
wenzelm
parents: 31306
diff changeset
   729
* Discontinued support for Poly/ML 4.x versions.
3fd52453ae81 discontinued support for Poly/ML 4.x versions;
wenzelm
parents: 31306
diff changeset
   730
33842
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   731
* Isabelle tool "wwwfind" provides web interface for 'find_theorems'
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   732
on a given logic image.  This requires the lighttpd webserver and is
efa1b89c79e0 misc tuning and updates for official release;
wenzelm
parents: 33827
diff changeset
   733
currently supported on Linux only.
32061
11f8ee55662d parallel_proofs: more fine-grained control with optional parallel checking of nested Isar proofs;
wenzelm
parents: 31997
diff changeset
   734
31308
3fd52453ae81 discontinued support for Poly/ML 4.x versions;
wenzelm
parents: 31306
diff changeset
   735
31304
00a9c674cf40 eliminated old Method.add_method(s);
wenzelm
parents: 31001
diff changeset
   736
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   737
New in Isabelle2009 (April 2009)
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   738
--------------------------------
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
   739
27599
ca23ef50c178 added command 'linear_undo';
wenzelm
parents: 27556
diff changeset
   740
*** General ***
ca23ef50c178 added command 'linear_undo';
wenzelm
parents: 27556
diff changeset
   741
28504
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   742
* Simplified main Isabelle executables, with less surprises on
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   743
case-insensitive file-systems (such as Mac OS).
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   744
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   745
  - The main Isabelle tool wrapper is now called "isabelle" instead of
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   746
    "isatool."
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   747
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   748
  - The former "isabelle" alias for "isabelle-process" has been
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   749
    removed (should rarely occur to regular users).
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   750
28915
0642cbb60c98 removed obsolete isabelle-interface executable and ISABELLE_INTERFACE setting;
wenzelm
parents: 28914
diff changeset
   751
  - The former "isabelle-interface" and its alias "Isabelle" have been
0642cbb60c98 removed obsolete isabelle-interface executable and ISABELLE_INTERFACE setting;
wenzelm
parents: 28914
diff changeset
   752
    removed (interfaces are now regular Isabelle tools).
28504
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   753
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   754
Within scripts and make files, the Isabelle environment variables
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   755
ISABELLE_TOOL and ISABELLE_PROCESS replace old ISATOOL and ISABELLE,
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   756
respectively.  (The latter are still available as legacy feature.)
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   757
28915
0642cbb60c98 removed obsolete isabelle-interface executable and ISABELLE_INTERFACE setting;
wenzelm
parents: 28914
diff changeset
   758
The old isabelle-interface wrapper could react in confusing ways if
0642cbb60c98 removed obsolete isabelle-interface executable and ISABELLE_INTERFACE setting;
wenzelm
parents: 28914
diff changeset
   759
the interface was uninstalled or changed otherwise.  Individual
0642cbb60c98 removed obsolete isabelle-interface executable and ISABELLE_INTERFACE setting;
wenzelm
parents: 28914
diff changeset
   760
interface tool configuration is now more explicit, see also the
0642cbb60c98 removed obsolete isabelle-interface executable and ISABELLE_INTERFACE setting;
wenzelm
parents: 28914
diff changeset
   761
Isabelle system manual.  In particular, Proof General is now available
0642cbb60c98 removed obsolete isabelle-interface executable and ISABELLE_INTERFACE setting;
wenzelm
parents: 28914
diff changeset
   762
via "isabelle emacs".
28504
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   763
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   764
INCOMPATIBILITY, need to adapt derivative scripts.  Users may need to
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   765
purge installed copies of Isabelle executables and re-run "isabelle
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   766
install -p ...", or use symlinks.
7ad7d7d6df47 simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
wenzelm
parents: 28475
diff changeset
   767
28914
f993cbffc42a default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm
parents: 28856
diff changeset
   768
* The default for ISABELLE_HOME_USER is now ~/.isabelle instead of the
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   769
old ~/isabelle, which was slightly non-standard and apt to cause
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   770
surprises on case-insensitive file-systems (such as Mac OS).
28914
f993cbffc42a default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm
parents: 28856
diff changeset
   771
f993cbffc42a default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm
parents: 28856
diff changeset
   772
INCOMPATIBILITY, need to move existing ~/isabelle/etc,
f993cbffc42a default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm
parents: 28856
diff changeset
   773
~/isabelle/heaps, ~/isabelle/browser_info to the new place.  Special
f993cbffc42a default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm
parents: 28856
diff changeset
   774
care is required when using older releases of Isabelle.  Note that
f993cbffc42a default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm
parents: 28856
diff changeset
   775
ISABELLE_HOME_USER can be changed in Isabelle/etc/settings of any
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   776
Isabelle distribution, in order to use the new ~/.isabelle uniformly.
28914
f993cbffc42a default for ISABELLE_HOME_USER is now ~/.isabelle instead of ~/isabelle;
wenzelm
parents: 28856
diff changeset
   777
29161
9903e84a9c9c * Proofs of are run in parallel on multi-core systems;
wenzelm
parents: 29145
diff changeset
   778
* Proofs of fully specified statements are run in parallel on
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   779
multi-core systems.  A speedup factor of 2.5 to 3.2 can be expected on
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   780
a regular 4-core machine, if the initial heap space is made reasonably
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   781
large (cf. Poly/ML option -H).  (Requires Poly/ML 5.2.1 or later.)
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   782
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   783
* The main reference manuals ("isar-ref", "implementation", and
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   784
"system") have been updated and extended.  Formally checked references
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   785
as hyperlinks are now available uniformly.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   786
30163
faf95eb3f375 * New prover for coherent logic (see src/Tools/coherent.ML).
wenzelm
parents: 30106
diff changeset
   787
27599
ca23ef50c178 added command 'linear_undo';
wenzelm
parents: 27556
diff changeset
   788
*** Pure ***
ca23ef50c178 added command 'linear_undo';
wenzelm
parents: 27556
diff changeset
   789
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   790
* Complete re-implementation of locales.  INCOMPATIBILITY in several
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   791
respects.  The most important changes are listed below.  See the
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   792
Tutorial on Locales ("locales" manual) for details.
29253
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   793
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   794
- In locale expressions, instantiation replaces renaming.  Parameters
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   795
must be declared in a for clause.  To aid compatibility with previous
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   796
parameter inheritance, in locale declarations, parameters that are not
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   797
'touched' (instantiation position "_" or omitted) are implicitly added
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   798
with their syntax at the beginning of the for clause.
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   799
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   800
- Syntax from abbreviations and definitions in locales is available in
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   801
locale expressions and context elements.  The latter is particularly
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   802
useful in locale declarations.
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   803
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   804
- More flexible mechanisms to qualify names generated by locale
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   805
expressions.  Qualifiers (prefixes) may be specified in locale
30728
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   806
expressions, and can be marked as mandatory (syntax: "name!:") or
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   807
optional (syntax "name?:").  The default depends for plain "name:"
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   808
depends on the situation where a locale expression is used: in
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   809
commands 'locale' and 'sublocale' prefixes are optional, in
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   810
'interpretation' and 'interpret' prefixes are mandatory.  The old
30728
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   811
implicit qualifiers derived from the parameter names of a locale are
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   812
no longer generated.
30106
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
   813
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   814
- Command "sublocale l < e" replaces "interpretation l < e".  The
30106
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
   815
instantiation clause in "interpretation" and "interpret" (square
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
   816
brackets) is no longer available.  Use locale expressions.
29253
3c6cd80a4854 New locales.
ballarin
parents: 29197
diff changeset
   817
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   818
- When converting proof scripts, mandatory qualifiers in
30728
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   819
'interpretation' and 'interpret' should be retained by default, even
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   820
if this is an INCOMPATIBILITY compared to former behavior.  In the
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   821
worst case, use the "name?:" form for non-mandatory ones.  Qualifiers
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   822
in locale expressions range over a single locale instance only.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   823
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   824
- Dropped locale element "includes".  This is a major INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   825
In existing theorem specifications replace the includes element by the
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   826
respective context elements of the included locale, omitting those
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   827
that are already present in the theorem specification.  Multiple
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   828
assume elements of a locale should be replaced by a single one
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   829
involving the locale predicate.  In the proof body, declarations (most
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   830
notably theorems) may be regained by interpreting the respective
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   831
locales in the proof context as required (command "interpret").
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   832
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   833
If using "includes" in replacement of a target solely because the
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   834
parameter types in the theorem are not as general as in the target,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   835
consider declaring a new locale with additional type constraints on
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   836
the parameters (context element "constrains").
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   837
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   838
- Discontinued "locale (open)".  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   839
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   840
- Locale interpretation commands no longer attempt to simplify goal.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   841
INCOMPATIBILITY: in rare situations the generated goal differs.  Use
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   842
methods intro_locales and unfold_locales to clarify.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   843
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   844
- Locale interpretation commands no longer accept interpretation
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   845
attributes.  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   846
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   847
* Class declaration: so-called "base sort" must not be given in import
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   848
list any longer, but is inferred from the specification.  Particularly
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   849
in HOL, write
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   850
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   851
    class foo = ...
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   852
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   853
instead of
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   854
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   855
    class foo = type + ...
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   856
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   857
* Class target: global versions of theorems stemming do not carry a
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   858
parameter prefix any longer.  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   859
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   860
* Class 'instance' command no longer accepts attached definitions.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   861
INCOMPATIBILITY, use proper 'instantiation' target instead.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   862
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   863
* Recovered hiding of consts, which was accidentally broken in
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   864
Isabelle2007.  Potential INCOMPATIBILITY, ``hide const c'' really
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   865
makes c inaccessible; consider using ``hide (open) const c'' instead.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   866
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   867
* Slightly more coherent Pure syntax, with updated documentation in
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   868
isar-ref manual.  Removed locales meta_term_syntax and
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   869
meta_conjunction_syntax: TERM and &&& (formerly &&) are now permanent,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   870
INCOMPATIBILITY in rare situations.  Note that &&& should not be used
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   871
directly in regular applications.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   872
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   873
* There is a new syntactic category "float_const" for signed decimal
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   874
fractions (e.g. 123.45 or -123.45).
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   875
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   876
* Removed exotic 'token_translation' command.  INCOMPATIBILITY, use ML
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   877
interface with 'setup' command instead.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   878
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   879
* Command 'local_setup' is similar to 'setup', but operates on a local
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   880
theory context.
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
   881
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28103
diff changeset
   882
* The 'axiomatization' command now only works within a global theory
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28103
diff changeset
   883
context.  INCOMPATIBILITY.
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28103
diff changeset
   884
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   885
* Goal-directed proof now enforces strict proof irrelevance wrt. sort
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   886
hypotheses.  Sorts required in the course of reasoning need to be
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   887
covered by the constraints in the initial statement, completed by the
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   888
type instance information of the background theory.  Non-trivial sort
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   889
hypotheses, which rarely occur in practice, may be specified via
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   890
vacuous propositions of the form SORT_CONSTRAINT('a::c).  For example:
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   891
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   892
  lemma assumes "SORT_CONSTRAINT('a::empty)" shows False ...
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   893
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   894
The result contains an implicit sort hypotheses as before --
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   895
SORT_CONSTRAINT premises are eliminated as part of the canonical rule
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   896
normalization.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   897
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   898
* Generalized Isar history, with support for linear undo, direct state
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   899
addressing etc.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   900
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   901
* Changed defaults for unify configuration options:
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   902
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   903
  unify_trace_bound = 50 (formerly 25)
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   904
  unify_search_bound = 60 (formerly 30)
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   905
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   906
* Different bookkeeping for code equations (INCOMPATIBILITY):
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   907
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   908
  a) On theory merge, the last set of code equations for a particular
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   909
     constant is taken (in accordance with the policy applied by other
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   910
     parts of the code generator framework).
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   911
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   912
  b) Code equations stemming from explicit declarations (e.g. code
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   913
     attribute) gain priority over default code equations stemming
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   914
     from definition, primrec, fun etc.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   915
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   916
* Keyword 'code_exception' now named 'code_abort'.  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   917
30965
e0938d929bfd dropped duplication
haftmann
parents: 30964
diff changeset
   918
* Unified theorem tables for both code generators.  Thus [code
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   919
func] has disappeared and only [code] remains.  INCOMPATIBILITY.
30577
wenzelm
parents: 30562
diff changeset
   920
wenzelm
parents: 30562
diff changeset
   921
* Command 'find_consts' searches for constants based on type and name
wenzelm
parents: 30562
diff changeset
   922
patterns, e.g.
29883
14841d4c808e added find_consts to NEWS and CONTRIBUTORS
kleing
parents: 29862
diff changeset
   923
14841d4c808e added find_consts to NEWS and CONTRIBUTORS
kleing
parents: 29862
diff changeset
   924
    find_consts "_ => bool"
14841d4c808e added find_consts to NEWS and CONTRIBUTORS
kleing
parents: 29862
diff changeset
   925
30106
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
   926
By default, matching is against subtypes, but it may be restricted to
30728
f0aeca99b5d9 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30706
diff changeset
   927
the whole type.  Searching by name is possible.  Multiple queries are
30106
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
   928
conjunctive and queries may be negated by prefixing them with a
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
   929
hyphen:
29883
14841d4c808e added find_consts to NEWS and CONTRIBUTORS
kleing
parents: 29862
diff changeset
   930
14841d4c808e added find_consts to NEWS and CONTRIBUTORS
kleing
parents: 29862
diff changeset
   931
    find_consts strict: "_ => bool" name: "Int" -"int => int"
29861
3c348f5873f3 updated NEWS etc with "solves" criterion and auto_solves
kleing
parents: 29823
diff changeset
   932
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   933
* New 'find_theorems' criterion "solves" matches theorems that
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   934
directly solve the current goal (modulo higher-order unification).
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   935
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   936
* Auto solve feature for main theorem statements: whenever a new goal
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   937
is stated, "find_theorems solves" is called; any theorems that could
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   938
solve the lemma directly are listed as part of the goal state.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   939
Cf. associated options in Proof General Isabelle settings menu,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   940
enabled by default, with reasonable timeout for pathological cases of
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   941
higher-order unification.
30415
9501af91c4a3 Instead of giving up entirely, arith now ignores all inequalities when there are too many.
webertj
parents: 30399
diff changeset
   942
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
   943
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27380
diff changeset
   944
*** Document preparation ***
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27380
diff changeset
   945
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27380
diff changeset
   946
* Antiquotation @{lemma} now imitates a regular terminal proof,
27392
wenzelm
parents: 27391
diff changeset
   947
demanding keyword 'by' and supporting the full method expression
27519
59b54d80d2ae slightly improved @{lemma} (both for latex and ML);
wenzelm
parents: 27485
diff changeset
   948
syntax just like the Isar command 'by'.
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27380
diff changeset
   949
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27380
diff changeset
   950
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
   951
*** HOL ***
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
   952
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   953
* Integrated main parts of former image HOL-Complex with HOL.  Entry
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   954
points Main and Complex_Main remain as before.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   955
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   956
* Logic image HOL-Plain provides a minimal HOL with the most important
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   957
tools available (inductive, datatype, primrec, ...).  This facilitates
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   958
experimentation and tool development.  Note that user applications
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   959
(and library theories) should never refer to anything below theory
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   960
Main, as before.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   961
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   962
* Logic image HOL-Main stops at theory Main, and thus facilitates
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   963
experimentation due to shorter build times.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   964
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   965
* Logic image HOL-NSA contains theories of nonstandard analysis which
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   966
were previously part of former HOL-Complex.  Entry point Hyperreal
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   967
remains valid, but theories formerly using Complex_Main should now use
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   968
new entry point Hypercomplex.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   969
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   970
* Generic ATP manager for Sledgehammer, based on ML threads instead of
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   971
Posix processes.  Avoids potentially expensive forking of the ML
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   972
process.  New thread-based implementation also works on non-Unix
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   973
platforms (Cygwin).  Provers are no longer hardwired, but defined
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   974
within the theory via plain ML wrapper functions.  Basic Sledgehammer
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   975
commands are covered in the isar-ref manual.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   976
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   977
* Wrapper scripts for remote SystemOnTPTP service allows to use
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   978
sledgehammer without local ATP installation (Vampire etc.). Other
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   979
provers may be included via suitable ML wrappers, see also
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   980
src/HOL/ATP_Linkup.thy.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   981
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   982
* ATP selection (E/Vampire/Spass) is now via Proof General's settings
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   983
menu.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   984
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   985
* The metis method no longer fails because the theorem is too trivial
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   986
(contains the empty clause).
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   987
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   988
* The metis method now fails in the usual manner, rather than raising
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   989
an exception, if it determines that it cannot prove the theorem.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   990
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   991
* Method "coherent" implements a prover for coherent logic (see also
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   992
src/Tools/coherent.ML).
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   993
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   994
* Constants "undefined" and "default" replace "arbitrary".  Usually
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   995
"undefined" is the right choice to replace "arbitrary", though
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   996
logically there is no difference.  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   997
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   998
* Command "value" now integrates different evaluation mechanisms.  The
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
   999
result of the first successful evaluation mechanism is printed.  In
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1000
square brackets a particular named evaluation mechanisms may be
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1001
specified (currently, [SML], [code] or [nbe]).  See further
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1002
src/HOL/ex/Eval_Examples.thy.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1003
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1004
* Normalization by evaluation now allows non-leftlinear equations.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1005
Declare with attribute [code nbe].
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1006
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1007
* Methods "case_tac" and "induct_tac" now refer to the very same rules
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1008
as the structured Isar versions "cases" and "induct", cf. the
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1009
corresponding "cases" and "induct" attributes.  Mutual induction rules
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1010
are now presented as a list of individual projections
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1011
(e.g. foo_bar.inducts for types foo and bar); the old format with
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1012
explicit HOL conjunction is no longer supported.  INCOMPATIBILITY, in
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1013
rare situations a different rule is selected --- notably nested tuple
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1014
elimination instead of former prod.exhaust: use explicit (case_tac t
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1015
rule: prod.exhaust) here.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1016
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1017
* Attributes "cases", "induct", "coinduct" support "del" option.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1018
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1019
* Removed fact "case_split_thm", which duplicates "case_split".
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1020
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1021
* The option datatype has been moved to a new theory Option.  Renamed
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1022
option_map to Option.map, and o2s to Option.set, INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1023
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1024
* New predicate "strict_mono" classifies strict functions on partial
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1025
orders.  With strict functions on linear orders, reasoning about
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1026
(in)equalities is facilitated by theorems "strict_mono_eq",
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1027
"strict_mono_less_eq" and "strict_mono_less".
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1028
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1029
* Some set operations are now proper qualified constants with
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1030
authentic syntax.  INCOMPATIBILITY:
30304
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1031
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1032
    op Int ~>   Set.Int
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1033
    op Un ~>    Set.Un
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1034
    INTER ~>    Set.INTER
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1035
    UNION ~>    Set.UNION
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1036
    Inter ~>    Set.Inter
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1037
    Union ~>    Set.Union
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1038
    {} ~>       Set.empty
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1039
    UNIV ~>     Set.UNIV
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 30085
diff changeset
  1040
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1041
* Class complete_lattice with operations Inf, Sup, INFI, SUPR now in
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1042
theory Set.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1043
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1044
* Auxiliary class "itself" has disappeared -- classes without any
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1045
parameter are treated as expected by the 'class' command.
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29788
diff changeset
  1046
29823
0ab754d13ccd session Reflecion renamed to Decision_Procs, moved Dense_Linear_Order there
haftmann
parents: 29810
diff changeset
  1047
* Leibnitz's Series for Pi and the arcus tangens and logarithm series.
0ab754d13ccd session Reflecion renamed to Decision_Procs, moved Dense_Linear_Order there
haftmann
parents: 29810
diff changeset
  1048
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1049
* Common decision procedures (Cooper, MIR, Ferrack, Approximation,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1050
Dense_Linear_Order) are now in directory HOL/Decision_Procs.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1051
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1052
* Theory src/HOL/Decision_Procs/Approximation provides the new proof
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1053
method "approximation".  It proves formulas on real values by using
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1054
interval arithmetic.  In the formulas are also the transcendental
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1055
functions sin, cos, tan, atan, ln, exp and the constant pi are
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1056
allowed. For examples see
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1057
src/HOL/Descision_Procs/ex/Approximation_Ex.thy.
29823
0ab754d13ccd session Reflecion renamed to Decision_Procs, moved Dense_Linear_Order there
haftmann
parents: 29810
diff changeset
  1058
0ab754d13ccd session Reflecion renamed to Decision_Procs, moved Dense_Linear_Order there
haftmann
parents: 29810
diff changeset
  1059
* Theory "Reflection" now resides in HOL/Library.
29650
cc3958d31b1d Reflection.thy now in HOL/Library
haftmann
parents: 29628
diff changeset
  1060
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1061
* Entry point to Word library now simply named "Word".
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1062
INCOMPATIBILITY.
29628
d9294387ab0e entry point for Word library now named Word
haftmann
parents: 29616
diff changeset
  1063
29197
6d4cb27ed19c adapted HOL source structure to distribution layout
haftmann
parents: 29182
diff changeset
  1064
* Made source layout more coherent with logical distribution
6d4cb27ed19c adapted HOL source structure to distribution layout
haftmann
parents: 29182
diff changeset
  1065
structure:
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1066
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1067
    src/HOL/Library/RType.thy ~> src/HOL/Typerep.thy
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1068
    src/HOL/Library/Code_Message.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1069
    src/HOL/Library/GCD.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1070
    src/HOL/Library/Order_Relation.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1071
    src/HOL/Library/Parity.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1072
    src/HOL/Library/Univ_Poly.thy ~> src/HOL/
30176
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1073
    src/HOL/Real/ContNotDenum.thy ~> src/HOL/Library/
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1074
    src/HOL/Real/Lubs.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1075
    src/HOL/Real/PReal.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1076
    src/HOL/Real/Rational.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1077
    src/HOL/Real/RComplete.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1078
    src/HOL/Real/RealDef.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1079
    src/HOL/Real/RealPow.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1080
    src/HOL/Real/Real.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1081
    src/HOL/Complex/Complex_Main.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1082
    src/HOL/Complex/Complex.thy ~> src/HOL/
30176
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1083
    src/HOL/Complex/FrechetDeriv.thy ~> src/HOL/Library/
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1084
    src/HOL/Complex/Fundamental_Theorem_Algebra.thy ~> src/HOL/Library/
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1085
    src/HOL/Hyperreal/Deriv.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1086
    src/HOL/Hyperreal/Fact.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1087
    src/HOL/Hyperreal/Integration.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1088
    src/HOL/Hyperreal/Lim.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1089
    src/HOL/Hyperreal/Ln.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1090
    src/HOL/Hyperreal/Log.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1091
    src/HOL/Hyperreal/MacLaurin.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1092
    src/HOL/Hyperreal/NthRoot.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1093
    src/HOL/Hyperreal/Series.thy ~> src/HOL/
29197
6d4cb27ed19c adapted HOL source structure to distribution layout
haftmann
parents: 29182
diff changeset
  1094
    src/HOL/Hyperreal/SEQ.thy ~> src/HOL/
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1095
    src/HOL/Hyperreal/Taylor.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1096
    src/HOL/Hyperreal/Transcendental.thy ~> src/HOL/
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1097
    src/HOL/Real/Float ~> src/HOL/Library/
29197
6d4cb27ed19c adapted HOL source structure to distribution layout
haftmann
parents: 29182
diff changeset
  1098
    src/HOL/Real/HahnBanach ~> src/HOL/HahnBanach
6d4cb27ed19c adapted HOL source structure to distribution layout
haftmann
parents: 29182
diff changeset
  1099
    src/HOL/Real/RealVector.thy ~> src/HOL/
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1100
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1101
    src/HOL/arith_data.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1102
    src/HOL/hologic.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1103
    src/HOL/simpdata.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1104
    src/HOL/int_arith1.ML ~> src/HOL/Tools/int_arith.ML
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1105
    src/HOL/int_factor_simprocs.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1106
    src/HOL/nat_simprocs.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1107
    src/HOL/Real/float_arith.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1108
    src/HOL/Real/float_syntax.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1109
    src/HOL/Real/rat_arith.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1110
    src/HOL/Real/real_arith.ML ~> src/HOL/Tools
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28915
diff changeset
  1111
29398
89813bbf0f3e NEWS and CONTRIBUTORS
haftmann
parents: 29253
diff changeset
  1112
    src/HOL/Library/Array.thy ~> src/HOL/Imperative_HOL
89813bbf0f3e NEWS and CONTRIBUTORS
haftmann
parents: 29253
diff changeset
  1113
    src/HOL/Library/Heap_Monad.thy ~> src/HOL/Imperative_HOL
89813bbf0f3e NEWS and CONTRIBUTORS
haftmann
parents: 29253
diff changeset
  1114
    src/HOL/Library/Heap.thy ~> src/HOL/Imperative_HOL
89813bbf0f3e NEWS and CONTRIBUTORS
haftmann
parents: 29253
diff changeset
  1115
    src/HOL/Library/Imperative_HOL.thy ~> src/HOL/Imperative_HOL
89813bbf0f3e NEWS and CONTRIBUTORS
haftmann
parents: 29253
diff changeset
  1116
    src/HOL/Library/Ref.thy ~> src/HOL/Imperative_HOL
89813bbf0f3e NEWS and CONTRIBUTORS
haftmann
parents: 29253
diff changeset
  1117
    src/HOL/Library/Relational.thy ~> src/HOL/Imperative_HOL
89813bbf0f3e NEWS and CONTRIBUTORS
haftmann
parents: 29253
diff changeset
  1118
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1119
* If methods "eval" and "evaluation" encounter a structured proof
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1120
state with !!/==>, only the conclusion is evaluated to True (if
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1121
possible), avoiding strange error messages.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1122
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1123
* Method "sizechange" automates termination proofs using (a
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1124
modification of) the size-change principle.  Requires SAT solver.  See
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1125
src/HOL/ex/Termination.thy for examples.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1126
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1127
* Simplifier: simproc for let expressions now unfolds if bound
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1128
variable occurs at most once in let expression body.  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1129
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1130
* Method "arith": Linear arithmetic now ignores all inequalities when
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1131
fast_arith_neq_limit is exceeded, instead of giving up entirely.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1132
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1133
* New attribute "arith" for facts that should always be used
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1134
automatically by arithmetic. It is intended to be used locally in
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1135
proofs, e.g.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1136
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1137
  assumes [arith]: "x > 0"
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1138
30706
e20227b5e6a3 NEWS: [arith]
nipkow
parents: 30609
diff changeset
  1139
Global usage is discouraged because of possible performance impact.
e20227b5e6a3 NEWS: [arith]
nipkow
parents: 30609
diff changeset
  1140
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1141
* New classes "top" and "bot" with corresponding operations "top" and
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1142
"bot" in theory Orderings; instantiation of class "complete_lattice"
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1143
requires instantiation of classes "top" and "bot".  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1144
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1145
* Changed definition lemma "less_fun_def" in order to provide an
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1146
instance for preorders on functions; use lemma "less_le" instead.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1147
INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1148
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1149
* Theory Orderings: class "wellorder" moved here, with explicit
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1150
induction rule "less_induct" as assumption.  For instantiation of
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1151
"wellorder" by means of predicate "wf", use rule wf_wellorderI.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1152
INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1153
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1154
* Theory Orderings: added class "preorder" as superclass of "order".
27793
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1155
INCOMPATIBILITY: Instantiation proofs for order, linorder
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1156
etc. slightly changed.  Some theorems named order_class.* now named
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1157
preorder_class.*.
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1158
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1159
* Theory Relation: renamed "refl" to "refl_on", "reflexive" to "refl,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1160
"diag" to "Id_on".
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1161
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1162
* Theory Finite_Set: added a new fold combinator of type
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1163
28855
5d21a3e7303c *** empty log message ***
nipkow
parents: 28741
diff changeset
  1164
  ('a => 'b => 'b) => 'b => 'a set => 'b
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1165
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1166
Occasionally this is more convenient than the old fold combinator
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1167
which is now defined in terms of the new one and renamed to
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1168
fold_image.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1169
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1170
* Theories Ring_and_Field and OrderedGroup: The lemmas "group_simps"
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1171
and "ring_simps" have been replaced by "algebra_simps" (which can be
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1172
extended with further lemmas!).  At the moment both still exist but
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1173
the former will disappear at some point.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1174
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1175
* Theory Power: Lemma power_Suc is now declared as a simp rule in
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1176
class recpower.  Type-specific simp rules for various recpower types
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1177
have been removed.  INCOMPATIBILITY, rename old lemmas as follows:
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1178
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1179
rat_power_0    -> power_0
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1180
rat_power_Suc  -> power_Suc
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1181
realpow_0      -> power_0
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1182
realpow_Suc    -> power_Suc
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1183
complexpow_0   -> power_0
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1184
complexpow_Suc -> power_Suc
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1185
power_poly_0   -> power_0
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1186
power_poly_Suc -> power_Suc
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30250
diff changeset
  1187
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1188
* Theories Ring_and_Field and Divides: Definition of "op dvd" has been
27793
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1189
moved to separate class dvd in Ring_and_Field; a couple of lemmas on
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1190
dvd has been generalized to class comm_semiring_1.  Likewise a bunch
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1191
of lemmas from Divides has been generalized from nat to class
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1192
semiring_div.  INCOMPATIBILITY.  This involves the following theorem
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1193
renames resulting from duplicate elimination:
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1194
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1195
    dvd_def_mod ~>          dvd_eq_mod_eq_0
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1196
    zero_dvd_iff ~>         dvd_0_left_iff
28559
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28522
diff changeset
  1197
    dvd_0 ~>                dvd_0_right
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1198
    DIVISION_BY_ZERO_DIV ~> div_by_0
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1199
    DIVISION_BY_ZERO_MOD ~> mod_by_0
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1200
    mult_div ~>             div_mult_self2_is_id
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1201
    mult_mod ~>             mod_mult_self2_is_0
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1202
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1203
* Theory IntDiv: removed many lemmas that are instances of class-based
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1204
generalizations (from Divides and Ring_and_Field).  INCOMPATIBILITY,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1205
rename old lemmas as follows:
30044
nipkow
parents: 29883
diff changeset
  1206
nipkow
parents: 29883
diff changeset
  1207
dvd_diff               -> nat_dvd_diff
nipkow
parents: 29883
diff changeset
  1208
dvd_zminus_iff         -> dvd_minus_iff
30224
79136ce06bdb removed and renamed redundant lemmas
nipkow
parents: 30200
diff changeset
  1209
mod_add1_eq            -> mod_add_eq
79136ce06bdb removed and renamed redundant lemmas
nipkow
parents: 30200
diff changeset
  1210
mod_mult1_eq           -> mod_mult_right_eq
79136ce06bdb removed and renamed redundant lemmas
nipkow
parents: 30200
diff changeset
  1211
mod_mult1_eq'          -> mod_mult_left_eq
79136ce06bdb removed and renamed redundant lemmas
nipkow
parents: 30200
diff changeset
  1212
mod_mult_distrib_mod   -> mod_mult_eq
30044
nipkow
parents: 29883
diff changeset
  1213
nat_mod_add_left_eq    -> mod_add_left_eq
nipkow
parents: 29883
diff changeset
  1214
nat_mod_add_right_eq   -> mod_add_right_eq
nipkow
parents: 29883
diff changeset
  1215
nat_mod_div_trivial    -> mod_div_trivial
nipkow
parents: 29883
diff changeset
  1216
nat_mod_mod_trivial    -> mod_mod_trivial
nipkow
parents: 29883
diff changeset
  1217
zdiv_zadd_self1        -> div_add_self1
nipkow
parents: 29883
diff changeset
  1218
zdiv_zadd_self2        -> div_add_self2
30181
05629f28f0f7 removed redundant lemmas
nipkow
parents: 30176
diff changeset
  1219
zdiv_zmult_self1       -> div_mult_self2_is_id
30044
nipkow
parents: 29883
diff changeset
  1220
zdiv_zmult_self2       -> div_mult_self1_is_id
nipkow
parents: 29883
diff changeset
  1221
zdvd_triv_left         -> dvd_triv_left
nipkow
parents: 29883
diff changeset
  1222
zdvd_triv_right        -> dvd_triv_right
nipkow
parents: 29883
diff changeset
  1223
zdvd_zmult_cancel_disj -> dvd_mult_cancel_left
30085
nipkow
parents: 30044
diff changeset
  1224
zmod_eq0_zdvd_iff      -> dvd_eq_mod_eq_0[symmetric]
30044
nipkow
parents: 29883
diff changeset
  1225
zmod_zadd_left_eq      -> mod_add_left_eq
nipkow
parents: 29883
diff changeset
  1226
zmod_zadd_right_eq     -> mod_add_right_eq
nipkow
parents: 29883
diff changeset
  1227
zmod_zadd_self1        -> mod_add_self1
nipkow
parents: 29883
diff changeset
  1228
zmod_zadd_self2        -> mod_add_self2
30224
79136ce06bdb removed and renamed redundant lemmas
nipkow
parents: 30200
diff changeset
  1229
zmod_zadd1_eq          -> mod_add_eq
30044
nipkow
parents: 29883
diff changeset
  1230
zmod_zdiff1_eq         -> mod_diff_eq
nipkow
parents: 29883
diff changeset
  1231
zmod_zdvd_zmod         -> mod_mod_cancel
nipkow
parents: 29883
diff changeset
  1232
zmod_zmod_cancel       -> mod_mod_cancel
nipkow
parents: 29883
diff changeset
  1233
zmod_zmult_self1       -> mod_mult_self2_is_0
nipkow
parents: 29883
diff changeset
  1234
zmod_zmult_self2       -> mod_mult_self1_is_0
nipkow
parents: 29883
diff changeset
  1235
zmod_1                 -> mod_by_1
nipkow
parents: 29883
diff changeset
  1236
zdiv_1                 -> div_by_1
nipkow
parents: 29883
diff changeset
  1237
zdvd_abs1              -> abs_dvd_iff
nipkow
parents: 29883
diff changeset
  1238
zdvd_abs2              -> dvd_abs_iff
nipkow
parents: 29883
diff changeset
  1239
zdvd_refl              -> dvd_refl
nipkow
parents: 29883
diff changeset
  1240
zdvd_trans             -> dvd_trans
nipkow
parents: 29883
diff changeset
  1241
zdvd_zadd              -> dvd_add
nipkow
parents: 29883
diff changeset
  1242
zdvd_zdiff             -> dvd_diff
nipkow
parents: 29883
diff changeset
  1243
zdvd_zminus_iff        -> dvd_minus_iff
nipkow
parents: 29883
diff changeset
  1244
zdvd_zminus2_iff       -> minus_dvd_iff
nipkow
parents: 29883
diff changeset
  1245
zdvd_zmultD            -> dvd_mult_right
nipkow
parents: 29883
diff changeset
  1246
zdvd_zmultD2           -> dvd_mult_left
nipkow
parents: 29883
diff changeset
  1247
zdvd_zmult_mono        -> mult_dvd_mono
nipkow
parents: 29883
diff changeset
  1248
zdvd_0_right           -> dvd_0_right
nipkow
parents: 29883
diff changeset
  1249
zdvd_0_left            -> dvd_0_left_iff
nipkow
parents: 29883
diff changeset
  1250
zdvd_1_left            -> one_dvd
nipkow
parents: 29883
diff changeset
  1251
zminus_dvd_iff         -> minus_dvd_iff
nipkow
parents: 29883
diff changeset
  1252
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1253
* Theory Rational: 'Fract k 0' now equals '0'.  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1254
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1255
* The real numbers offer decimal input syntax: 12.34 is translated
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1256
into 1234/10^2. This translation is not reversed upon output.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1257
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1258
* Theory Library/Polynomial defines an abstract type 'a poly of
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1259
univariate polynomials with coefficients of type 'a.  In addition to
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1260
the standard ring operations, it also supports div and mod.  Code
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1261
generation is also supported, using list-style constructors.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1262
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1263
* Theory Library/Inner_Product defines a class of real_inner for real
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1264
inner product spaces, with an overloaded operation inner :: 'a => 'a
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1265
=> real.  Class real_inner is a subclass of real_normed_vector from
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1266
theory RealVector.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1267
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1268
* Theory Library/Product_Vector provides instances for the product
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1269
type 'a * 'b of several classes from RealVector and Inner_Product.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1270
Definitions of addition, subtraction, scalar multiplication, norms,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1271
and inner products are included.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1272
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1273
* Theory Library/Bit defines the field "bit" of integers modulo 2.  In
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1274
addition to the field operations, numerals and case syntax are also
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1275
supported.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1276
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1277
* Theory Library/Diagonalize provides constructive version of Cantor's
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1278
first diagonalization argument.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1279
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1280
* Theory Library/GCD: Curried operations gcd, lcm (for nat) and zgcd,
27599
ca23ef50c178 added command 'linear_undo';
wenzelm
parents: 27556
diff changeset
  1281
zlcm (for int); carried together from various gcd/lcm developements in
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1282
the HOL Distribution.  Constants zgcd and zlcm replace former igcd and
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1283
ilcm; corresponding theorems renamed accordingly.  INCOMPATIBILITY,
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1284
may recover tupled syntax as follows:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27551
diff changeset
  1285
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27551
diff changeset
  1286
    hide (open) const gcd
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27551
diff changeset
  1287
    abbreviation gcd where
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27551
diff changeset
  1288
      "gcd == (%(a, b). GCD.gcd a b)"
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27551
diff changeset
  1289
    notation (output)
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27551
diff changeset
  1290
      GCD.gcd ("gcd '(_, _')")
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27551
diff changeset
  1291
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1292
The same works for lcm, zgcd, zlcm.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1293
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1294
* Theory Library/Nat_Infinity: added addition, numeral syntax and more
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1295
instantiations for algebraic structures.  Removed some duplicate
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1296
theorems.  Changes in simp rules.  INCOMPATIBILITY.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1297
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1298
* ML antiquotation @{code} takes a constant as argument and generates
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1299
corresponding code in background and inserts name of the corresponding
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1300
resulting ML value/function/datatype constructor binding in place.
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1301
All occurrences of @{code} with a single ML block are generated
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27599
diff changeset
  1302
simultaneously.  Provides a generic and safe interface for
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1303
instrumentalizing code generation.  See
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1304
src/HOL/Decision_Procs/Ferrack.thy for a more ambitious application.
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1305
In future you ought to refrain from ad-hoc compiling generated SML
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1306
code on the ML toplevel.  Note that (for technical reasons) @{code}
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1307
cannot refer to constants for which user-defined serializations are
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1308
set.  Refer to the corresponding ML counterpart directly in that
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1309
cases.
27122
63d92a5e3784 proper news header;
wenzelm
parents: 27104
diff changeset
  1310
63d92a5e3784 proper news header;
wenzelm
parents: 27104
diff changeset
  1311
* Command 'rep_datatype': instead of theorem names the command now
63d92a5e3784 proper news header;
wenzelm
parents: 27104
diff changeset
  1312
takes a list of terms denoting the constructors of the type to be
63d92a5e3784 proper news header;
wenzelm
parents: 27104
diff changeset
  1313
represented as datatype.  The characteristic theorems have to be
63d92a5e3784 proper news header;
wenzelm
parents: 27104
diff changeset
  1314
proven.  INCOMPATIBILITY.  Also observe that the following theorems
63d92a5e3784 proper news header;
wenzelm
parents: 27104
diff changeset
  1315
have disappeared in favour of existing ones:
63d92a5e3784 proper news header;
wenzelm
parents: 27104
diff changeset
  1316
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
  1317
    unit_induct                 ~> unit.induct
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
  1318
    prod_induct                 ~> prod.induct
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
  1319
    sum_induct                  ~> sum.induct
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
  1320
    Suc_Suc_eq                  ~> nat.inject
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
  1321
    Suc_not_Zero Zero_not_Suc   ~> nat.distinct
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
  1322
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 27067
diff changeset
  1323
27696
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1324
*** HOL-Algebra ***
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1325
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27704
diff changeset
  1326
* New locales for orders and lattices where the equivalence relation
30106
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
  1327
is not restricted to equality.  INCOMPATIBILITY: all order and lattice
351fc2f8493d tuned NEWS;
wenzelm
parents: 30085
diff changeset
  1328
locales use a record structure with field eq for the equivalence.
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27704
diff changeset
  1329
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27704
diff changeset
  1330
* New theory of factorial domains.
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27704
diff changeset
  1331
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1332
* Units_l_inv and Units_r_inv are now simp rules by default.
27696
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1333
INCOMPATIBILITY.  Simplifier proof that require deletion of l_inv
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1334
and/or r_inv will now also require deletion of these lemmas.
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1335
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1336
* Renamed the following theorems, INCOMPATIBILITY:
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741
diff changeset
  1337
27696
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1338
UpperD ~> Upper_memD
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1339
LowerD ~> Lower_memD
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1340
least_carrier ~> least_closed
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1341
greatest_carrier ~> greatest_closed
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1342
greatest_Lower_above ~> greatest_Lower_below
27717
21bbd410ba04 Generalised polynomial lemmas from cring to ring.
ballarin
parents: 27713
diff changeset
  1343
one_zero ~> carrier_one_zero
21bbd410ba04 Generalised polynomial lemmas from cring to ring.
ballarin
parents: 27713
diff changeset
  1344
one_not_zero ~> carrier_one_not_zero  (collision with assumption)
27696
15b65db66751 Unit_inv_l, Unit_inv_r made [simp];
ballarin
parents: 27681
diff changeset
  1345
27793
29ad1d91a5a3 tuned formatting;
wenzelm
parents: 27761
diff changeset
  1346
30849
0e5ec6d2c1d9 some HOL-Nominal news;
wenzelm
parents: 30847
diff changeset
  1347
*** HOL-Nominal ***
0e5ec6d2c1d9 some HOL-Nominal news;
wenzelm
parents: 30847
diff changeset
  1348
30855
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1349
* Nominal datatypes can now contain type-variables.
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1350
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1351
* Commands 'nominal_inductive' and 'equivariance' work with local
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1352
theory targets.
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1353
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1354
* Nominal primrec can now works with local theory targets and its
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1355
specification syntax now conforms to the general format as seen in
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1356
'inductive' etc.
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1357
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1358
* Method "perm_simp" honours the standard simplifier attributes
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1359
(no_asm), (no_asm_use) etc.
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1360
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1361
* The new predicate #* is defined like freshness, except that on the
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1362
left hand side can be a set or list of atoms.
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1363
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1364
* Experimental command 'nominal_inductive2' derives strong induction
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1365
principles for inductive definitions.  In contrast to
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1366
'nominal_inductive', which can only deal with a fixed number of
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1367
binders, it can deal with arbitrary expressions standing for sets of
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1368
atoms to be avoided.  The only inductive definition we have at the
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1369
moment that needs this generalisation is the typing rule for Lets in
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1370
the algorithm W:
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1371
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1372
 Gamma |- t1 : T1   (x,close Gamma T1)::Gamma |- t2 : T2   x#Gamma
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1373
 -----------------------------------------------------------------
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1374
         Gamma |- Let x be t1 in t2 : T2
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1375
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1376
In this rule one wants to avoid all the binders that are introduced by
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1377
"close Gamma T1".  We are looking for other examples where this
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1378
feature might be useful.  Please let us know.
30849
0e5ec6d2c1d9 some HOL-Nominal news;
wenzelm
parents: 30847
diff changeset
  1379
0e5ec6d2c1d9 some HOL-Nominal news;
wenzelm
parents: 30847
diff changeset
  1380
30176
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1381
*** HOLCF ***
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1382
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1383
* Reimplemented the simplification procedure for proving continuity
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1384
subgoals.  The new simproc is extensible; users can declare additional
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1385
continuity introduction rules with the attribute [cont2cont].
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1386
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1387
* The continuity simproc now uses a different introduction rule for
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1388
solving continuity subgoals on terms with lambda abstractions.  In
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1389
some rare cases the new simproc may fail to solve subgoals that the
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1390
old one could solve, and "simp add: cont2cont_LAM" may be necessary.
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1391
Potential INCOMPATIBILITY.
78610979b3c6 add news for HOLCF; fixed some typos and inaccuracies
huffman
parents: 30163
diff changeset
  1392
30847
wenzelm
parents: 30845
diff changeset
  1393
* Command 'fixrec': specification syntax now conforms to the general
30855
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1394
format as seen in 'inductive' etc.  See src/HOLCF/ex/Fixrec_ex.thy for
c22436e6d350 some more HOL-Nominal news;
wenzelm
parents: 30849
diff changeset
  1395
examples.  INCOMPATIBILITY.
30845
9a887484de53 misc cleanup and rearrangements for Isabelle2009 release;
wenzelm
parents: 30741