NEWS
author blanchet
Sat Feb 11 13:41:36 2012 +0100 (3 months ago)
changeset 46412 ec2e20b27638
parent 46330 d4afc4226688
child 46463 19ef91d7fbd4
permissions -rw-r--r--
new SPASS options
wenzelm@5363
     1
Isabelle NEWS -- history user-relevant changes
wenzelm@5363
     2
==============================================
wenzelm@2553
     3
wenzelm@45090
     4
New in this Isabelle version
wenzelm@45090
     5
----------------------------
wenzelm@45090
     6
wenzelm@45593
     7
*** General ***
wenzelm@45593
     8
wenzelm@45614
     9
* Prover IDE (PIDE) improvements:
wenzelm@45614
    10
wenzelm@45614
    11
  - markup for bound variables
wenzelm@45614
    12
  - markup for types of term variables (e.g. displayed as tooltips)
wenzelm@45614
    13
wenzelm@45593
    14
* Rule attributes in local theory declarations (e.g. locale or class)
wenzelm@45593
    15
are now statically evaluated: the resulting theorem is stored instead
wenzelm@45593
    16
of the original expression.  INCOMPATIBILITY in rare situations, where
wenzelm@45593
    17
the historic accident of dynamic re-evaluation in interpretations
wenzelm@45593
    18
etc. was exploited.
wenzelm@45593
    19
wenzelm@45600
    20
* Commands 'lemmas' and 'theorems' allow local variables using 'for'
wenzelm@45600
    21
declaration, and results are standardized before being stored.  Thus
wenzelm@45600
    22
old-style "standard" after instantiation or composition of facts
wenzelm@45600
    23
becomes obsolete.  Minor INCOMPATIBILITY, due to potential change of
wenzelm@45600
    24
indices of schematic variables.
wenzelm@45600
    25
wenzelm@45703
    26
* Renamed inner syntax categories "num" to "num_token" and "xnum" to
wenzelm@45703
    27
"xnum_token", in accordance to existing "float_token".  Minor
wenzelm@45703
    28
INCOMPATIBILITY.  Note that in practice "num_const" etc. are mainly
wenzelm@46236
    29
used instead (which also include position information via
wenzelm@46236
    30
constraints).
wenzelm@45703
    31
wenzelm@45593
    32
wenzelm@45134
    33
*** Pure ***
wenzelm@45134
    34
wenzelm@45134
    35
* Obsolete command 'types' has been discontinued.  Use 'type_synonym'
wenzelm@45134
    36
instead.  INCOMPATIBILITY.
wenzelm@45134
    37
bulwahn@45191
    38
* Ancient code generator for SML and its commands 'code_module',
wenzelm@45385
    39
'code_library', 'consts_code', 'types_code' have been discontinued.
haftmann@46028
    40
Use commands of the generic code generator instead.  INCOMPATIBILITY.
wenzelm@45385
    41
wenzelm@45385
    42
* Redundant attribute 'code_inline' has been discontinued. Use
haftmann@46028
    43
'code_unfold' instead.  INCOMPATIBILITY.
haftmann@46028
    44
wenzelm@46160
    45
* Dropped attribute 'code_unfold_post' in favor of the its dual
wenzelm@46160
    46
'code_abbrev', which yields a common pattern in definitions like
haftmann@46028
    47
haftmann@46028
    48
  definition [code_abbrev]: "f = t"
haftmann@46028
    49
haftmann@46028
    50
INCOMPATIBILITY.
wenzelm@45385
    51
wenzelm@45427
    52
* Sort constraints are now propagated in simultaneous statements, just
wenzelm@45427
    53
like type constraints.  INCOMPATIBILITY in rare situations, where
wenzelm@45427
    54
distinct sorts used to be assigned accidentally.  For example:
wenzelm@45427
    55
wenzelm@45427
    56
  lemma "P (x::'a::foo)" and "Q (y::'a::bar)"  -- "now illegal"
wenzelm@45427
    57
wenzelm@45427
    58
  lemma "P (x::'a)" and "Q (y::'a::bar)"
wenzelm@45427
    59
    -- "now uniform 'a::bar instead of default sort for first occurence (!)"
wenzelm@45427
    60
wenzelm@45427
    61
huffman@45103
    62
*** HOL ***
huffman@45103
    63
wenzelm@46160
    64
* Type 'a set is now a proper type constructor (just as before
wenzelm@46160
    65
Isabelle2008).  Definitions mem_def and Collect_def have disappeared.
wenzelm@46160
    66
Non-trivial INCOMPATIBILITY.  For developments keeping predicates and
wenzelm@46160
    67
sets separate, it is often sufficient to rephrase sets S accidentally
wenzelm@46160
    68
used as predicates by "%x. x : S" and predicates P accidentally used
wenzelm@46160
    69
as sets by "{x. P x}".  Corresponding proofs in a first step should be
wenzelm@46160
    70
pruned from any tinkering with former theorems mem_def and
wenzelm@46160
    71
Collect_def.  For developments which deliberately mixed predicates and
wenzelm@46160
    72
sets, a planning step is necessary to determine what should become a
wenzelm@46160
    73
predicate and what a set.  It can be helpful to carry out that step in
wenzelm@46160
    74
Isabelle2011-1 before jumping right into the current release.
wenzelm@46160
    75
nipkow@46330
    76
* New type synonym 'a rel = ('a * 'a) set
nipkow@46330
    77
wenzelm@46160
    78
* Consolidated various theorem names relating to Finite_Set.fold
wenzelm@46160
    79
combinator:
wenzelm@46160
    80
haftmann@46145
    81
  inf_INFI_fold_inf ~> inf_INF_fold_inf
haftmann@46145
    82
  sup_SUPR_fold_sup ~> sup_SUP_fold_sup
haftmann@46145
    83
  INFI_fold_inf ~> INF_fold_inf
haftmann@46145
    84
  SUPR_fold_sup ~> SUP_fold_sup
haftmann@46145
    85
  union_set ~> union_set_fold
haftmann@46145
    86
  minus_set ~> minus_set_fold
haftmann@46145
    87
  
haftmann@46145
    88
INCOMPATIBILITY.
haftmann@46145
    89
haftmann@46132
    90
* Consolidated theorem names concerning fold combinators:
wenzelm@46160
    91
haftmann@46132
    92
  INFI_set_fold ~> INF_set_fold
haftmann@46132
    93
  SUPR_set_fold ~> SUP_set_fold
haftmann@46132
    94
  INF_code ~> INF_set_foldr
haftmann@46132
    95
  SUP_code ~> SUP_set_foldr
haftmann@46132
    96
  foldr.simps ~> foldr_Nil foldr_Cons (in point-free formulation)
haftmann@46132
    97
  foldl.simps ~> foldl_Nil foldl_Cons
haftmann@46132
    98
  foldr_fold_rev ~> foldr_def
haftmann@46132
    99
  foldl_fold ~> foldl_def
wenzelm@46160
   100
haftmann@46132
   101
INCOMPATIBILITY.
haftmann@46132
   102
wenzelm@46160
   103
* Dropped rarely useful theorems concerning fold combinators:
wenzelm@46160
   104
foldl_apply, foldl_fun_comm, foldl_rev, fold_weak_invariant,
wenzelm@46160
   105
rev_foldl_cons, fold_set_remdups, fold_set, fold_set1,
wenzelm@46160
   106
concat_conv_foldl, foldl_weak_invariant, foldl_invariant,
wenzelm@46160
   107
foldr_invariant, foldl_absorb0, foldl_foldr1_lemma, foldl_foldr1,
wenzelm@46160
   108
listsum_conv_fold, listsum_foldl, sort_foldl_insort.  INCOMPATIBILITY.
wenzelm@46160
   109
Prefer "List.fold" with canonical argument order, or boil down
wenzelm@46160
   110
"List.foldr" and "List.foldl" to "List.fold" by unfolding "foldr_def"
wenzelm@46160
   111
and "foldl_def".  For the common phrases "%xs. List.foldr plus xs 0"
haftmann@46132
   112
and "List.foldl plus 0", prefer "List.listsum".
haftmann@46132
   113
wenzelm@46125
   114
* Concrete syntax for case expressions includes constraints for source
wenzelm@46125
   115
positions, and thus produces Prover IDE markup for its bindings.
wenzelm@46125
   116
INCOMPATIBILITY for old-style syntax translations that augment the
wenzelm@46125
   117
pattern notation; e.g. see src/HOL/HOLCF/One.thy for translations of
wenzelm@46125
   118
one_case.
wenzelm@46125
   119
wenzelm@46126
   120
* Discontinued configuration option "syntax_positions": atomic terms
wenzelm@46126
   121
in parse trees are always annotated by position constraints.
wenzelm@46126
   122
haftmann@45991
   123
* Finite_Set.fold now qualified.  INCOMPATIBILITY.
haftmann@45991
   124
wenzelm@46160
   125
* Renamed some facts on canonical fold on lists, in order to avoid
wenzelm@46160
   126
problems with interpretation involving corresponding facts on foldl
wenzelm@46160
   127
with the same base names:
haftmann@45988
   128
haftmann@45988
   129
  fold_set_remdups ~> fold_set_fold_remdups
haftmann@45988
   130
  fold_set ~> fold_set_fold
haftmann@45988
   131
  fold1_set ~> fold1_set_fold
haftmann@45988
   132
haftmann@45988
   133
INCOMPATIBILITY.
haftmann@45988
   134
bulwahn@46320
   135
* Renamed facts about the power operation on relations, i.e., relpow
bulwahn@46320
   136
  to match the constant's name:
bulwahn@46320
   137
  
bulwahn@46320
   138
  rel_pow_1 ~> lemma relpow_1
bulwahn@46320
   139
  rel_pow_0_I ~> relpow_0_I
bulwahn@46320
   140
  rel_pow_Suc_I ~> relpow_Suc_I
bulwahn@46320
   141
  rel_pow_Suc_I2 ~> relpow_Suc_I2
bulwahn@46320
   142
  rel_pow_0_E ~> relpow_0_E
bulwahn@46320
   143
  rel_pow_Suc_E ~> relpow_Suc_E
bulwahn@46320
   144
  rel_pow_E ~> relpow_E
bulwahn@46320
   145
  rel_pow_Suc_D2 ~> lemma relpow_Suc_D2
bulwahn@46320
   146
  rel_pow_Suc_E2 ~> relpow_Suc_E2 
bulwahn@46320
   147
  rel_pow_Suc_D2' ~> relpow_Suc_D2'
bulwahn@46320
   148
  rel_pow_E2 ~> relpow_E2
bulwahn@46320
   149
  rel_pow_add ~> relpow_add
bulwahn@46320
   150
  rel_pow_commute ~> relpow
bulwahn@46320
   151
  rel_pow_empty ~> relpow_empty:
bulwahn@46320
   152
  rtrancl_imp_UN_rel_pow ~> rtrancl_imp_UN_relpow
bulwahn@46320
   153
  rel_pow_imp_rtrancl ~> relpow_imp_rtrancl
bulwahn@46320
   154
  rtrancl_is_UN_rel_pow ~> rtrancl_is_UN_relpow
bulwahn@46320
   155
  rtrancl_imp_rel_pow ~> rtrancl_imp_relpow
bulwahn@46320
   156
  rel_pow_fun_conv ~> relpow_fun_conv
bulwahn@46320
   157
  rel_pow_finite_bounded1 ~> relpow_finite_bounded1
bulwahn@46320
   158
  rel_pow_finite_bounded ~> relpow_finite_bounded
bulwahn@46320
   159
  rtrancl_finite_eq_rel_pow ~> rtrancl_finite_eq_relpow
bulwahn@46320
   160
  trancl_finite_eq_rel_pow ~> trancl_finite_eq_relpow
bulwahn@46320
   161
  single_valued_rel_pow ~> single_valued_relpow
bulwahn@46320
   162
 
bulwahn@46320
   163
INCOMPATIBILITY.
bulwahn@46320
   164
bulwahn@46239
   165
* New theory HOL/Library/DAList provides an abstract type for association
bulwahn@46239
   166
  lists with distinct keys.
bulwahn@45874
   167
wenzelm@45841
   168
* 'datatype' specifications allow explicit sort constraints.
wenzelm@45841
   169
wenzelm@46160
   170
* Theory HOL/Library/Diagonalize has been removed. INCOMPATIBILITY,
wenzelm@46160
   171
use theory HOL/Library/Nat_Bijection instead.
wenzelm@46160
   172
wenzelm@46160
   173
* Session HOL-Word: Discontinued many redundant theorems specific to
wenzelm@46160
   174
type 'a word. INCOMPATIBILITY, use the corresponding generic theorems
wenzelm@46160
   175
instead.
huffman@45546
   176
huffman@45546
   177
  word_sub_alt ~> word_sub_wi
huffman@45546
   178
  word_add_alt ~> word_add_def
huffman@45546
   179
  word_mult_alt ~> word_mult_def
huffman@45546
   180
  word_minus_alt ~> word_minus_def
huffman@45546
   181
  word_0_alt ~> word_0_wi
huffman@45546
   182
  word_1_alt ~> word_1_wi
huffman@45546
   183
  word_add_0 ~> add_0_left
huffman@45546
   184
  word_add_0_right ~> add_0_right
huffman@45546
   185
  word_mult_1 ~> mult_1_left
huffman@45546
   186
  word_mult_1_right ~> mult_1_right
huffman@45546
   187
  word_add_commute ~> add_commute
huffman@45546
   188
  word_add_assoc ~> add_assoc
huffman@45546
   189
  word_add_left_commute ~> add_left_commute
huffman@45546
   190
  word_mult_commute ~> mult_commute
huffman@45546
   191
  word_mult_assoc ~> mult_assoc
huffman@45546
   192
  word_mult_left_commute ~> mult_left_commute
huffman@45546
   193
  word_left_distrib ~> left_distrib
huffman@45546
   194
  word_right_distrib ~> right_distrib
huffman@45546
   195
  word_left_minus ~> left_minus
huffman@45546
   196
  word_diff_0_right ~> diff_0_right
huffman@45546
   197
  word_diff_self ~> diff_self
huffman@45957
   198
  word_sub_def ~> diff_minus
huffman@45804
   199
  word_diff_minus ~> diff_minus
huffman@45546
   200
  word_add_ac ~> add_ac
huffman@45546
   201
  word_mult_ac ~> mult_ac
huffman@45546
   202
  word_plus_ac0 ~> add_0_left add_0_right add_ac
huffman@45546
   203
  word_times_ac1 ~> mult_1_left mult_1_right mult_ac
huffman@45547
   204
  word_order_trans ~> order_trans
huffman@45547
   205
  word_order_refl ~> order_refl
huffman@45547
   206
  word_order_antisym ~> order_antisym
huffman@45547
   207
  word_order_linear ~> linorder_linear
huffman@45810
   208
  lenw1_zero_neq_one ~> zero_neq_one
huffman@45810
   209
  word_number_of_eq ~> number_of_eq
huffman@46012
   210
  word_of_int_add_hom ~> wi_hom_add
huffman@46012
   211
  word_of_int_sub_hom ~> wi_hom_sub
huffman@46012
   212
  word_of_int_mult_hom ~> wi_hom_mult
huffman@46012
   213
  word_of_int_minus_hom ~> wi_hom_neg
huffman@46012
   214
  word_of_int_succ_hom ~> wi_hom_succ
huffman@46012
   215
  word_of_int_pred_hom ~> wi_hom_pred
huffman@46012
   216
  word_of_int_0_hom ~> word_0_wi
huffman@46012
   217
  word_of_int_1_hom ~> word_1_wi
huffman@45546
   218
huffman@46013
   219
* Clarified attribute "mono_set": pure declaration without modifying
wenzelm@45386
   220
the result of the fact expression.
wenzelm@45386
   221
wenzelm@45385
   222
* "Transitive_Closure.ntrancl": bounded transitive closure on
wenzelm@45385
   223
relations.
wenzelm@45385
   224
huffman@46013
   225
* Constant "Set.not_member" now qualified.  INCOMPATIBILITY.
wenzelm@45385
   226
wenzelm@45385
   227
* "sublists" moved to theory More_List.  INCOMPATIBILITY.
haftmann@45143
   228
huffman@45103
   229
* Theory Int: Discontinued many legacy theorems specific to type int.
wenzelm@45385
   230
INCOMPATIBILITY, use the corresponding generic theorems instead.
huffman@45103
   231
huffman@45103
   232
  zminus_zminus ~> minus_minus
huffman@45103
   233
  zminus_0 ~> minus_zero
huffman@45103
   234
  zminus_zadd_distrib ~> minus_add_distrib
huffman@45103
   235
  zadd_commute ~> add_commute
huffman@45103
   236
  zadd_assoc ~> add_assoc
huffman@45103
   237
  zadd_left_commute ~> add_left_commute
wenzelm@45196
   238
  zadd_ac ~> add_ac
huffman@45103
   239
  zmult_ac ~> mult_ac
huffman@45103
   240
  zadd_0 ~> add_0_left
huffman@45103
   241
  zadd_0_right ~> add_0_right
huffman@45103
   242
  zadd_zminus_inverse2 ~> left_minus
huffman@45103
   243
  zmult_zminus ~> mult_minus_left
huffman@45103
   244
  zmult_commute ~> mult_commute
huffman@45103
   245
  zmult_assoc ~> mult_assoc
huffman@45103
   246
  zadd_zmult_distrib ~> left_distrib
huffman@45103
   247
  zadd_zmult_distrib2 ~> right_distrib
huffman@45103
   248
  zdiff_zmult_distrib ~> left_diff_distrib
huffman@45103
   249
  zdiff_zmult_distrib2 ~> right_diff_distrib
huffman@45103
   250
  zmult_1 ~> mult_1_left
huffman@45103
   251
  zmult_1_right ~> mult_1_right
huffman@45103
   252
  zle_refl ~> order_refl
huffman@45103
   253
  zle_trans ~> order_trans
huffman@45103
   254
  zle_antisym ~> order_antisym
huffman@45103
   255
  zle_linear ~> linorder_linear
huffman@45103
   256
  zless_linear ~> linorder_less_linear
huffman@45103
   257
  zadd_left_mono ~> add_left_mono
huffman@45103
   258
  zadd_strict_right_mono ~> add_strict_right_mono
huffman@45103
   259
  zadd_zless_mono ~> add_less_le_mono
huffman@45103
   260
  int_0_less_1 ~> zero_less_one
huffman@45103
   261
  int_0_neq_1 ~> zero_neq_one
huffman@45103
   262
  zless_le ~> less_le
huffman@45103
   263
  zpower_zadd_distrib ~> power_add
huffman@45103
   264
  zero_less_zpower_abs_iff ~> zero_less_power_abs_iff
huffman@45103
   265
  zero_le_zpower_abs ~> zero_le_power_abs
huffman@45103
   266
noschinl@45791
   267
* Theory Deriv: Renamed
noschinl@45791
   268
noschinl@45791
   269
  DERIV_nonneg_imp_nonincreasing ~> DERIV_nonneg_imp_nondecreasing
noschinl@45791
   270
wenzelm@45385
   271
* New "case_product" attribute to generate a case rule doing multiple
wenzelm@45385
   272
case distinctions at the same time.  E.g.
wenzelm@45385
   273
wenzelm@45385
   274
  list.exhaust [case_product nat.exhaust]
wenzelm@45385
   275
wenzelm@45385
   276
produces a rule which can be used to perform case distinction on both
wenzelm@45385
   277
a list and a nat.
wenzelm@45385
   278
bulwahn@46170
   279
* Improved code generation of multisets.
bulwahn@46170
   280
bulwahn@45759
   281
* Quickcheck:
bulwahn@45759
   282
  - Quickcheck returns variable assignments as counterexamples, which
bulwahn@45759
   283
    allows to reveal the underspecification of functions under test.
bulwahn@45759
   284
    For example, refuting "hd xs = x", it presents the variable
bulwahn@45759
   285
    assignment xs = [] and x = a1 as a counterexample, assuming that
bulwahn@45759
   286
    any property is false whenever "hd []" occurs in it.
bulwahn@45759
   287
    These counterexample are marked as potentially spurious, as
bulwahn@45759
   288
    Quickcheck also returns "xs = []" as a counterexample to the
bulwahn@45759
   289
    obvious theorem "hd xs = hd xs".
bulwahn@45759
   290
    After finding a potentially spurious counterexample, Quickcheck
bulwahn@45759
   291
    continues searching for genuine ones.
bulwahn@45759
   292
    By default, Quickcheck shows potentially spurious and genuine
bulwahn@45759
   293
    counterexamples. The option "genuine_only" sets quickcheck to
bulwahn@45759
   294
    only show genuine counterexamples.
bulwahn@45941
   295
bulwahn@45941
   296
  - The command 'quickcheck_generator' creates random and exhaustive
bulwahn@45941
   297
    value generators for a given type and operations.
bulwahn@45941
   298
    It generates values by using the operations as if they were
bulwahn@45941
   299
    constructors of that type. 
bulwahn@46170
   300
bulwahn@46170
   301
  - Support for multisets.
bulwahn@46170
   302
blanchet@45395
   303
* Nitpick:
blanchet@45516
   304
  - Fixed infinite loop caused by the 'peephole_optim' option and
blanchet@45516
   305
    affecting 'rat' and 'real'.
blanchet@45516
   306
blanchet@45516
   307
* Sledgehammer:
blanchet@46366
   308
  - Added "lam_trans", "uncurry_aliases", and "minimize" options.
blanchet@45706
   309
  - Renamed "slicing" ("no_slicing") option to "slice" ("dont_slice").
blanchet@46258
   310
  - Renamed "sound" option to "strict".
blanchet@45516
   311
blanchet@45516
   312
* Metis:
blanchet@45516
   313
  - Added possibility to specify lambda translations scheme as a
blanchet@46323
   314
    parenthesized argument (e.g., "by (metis (lifting) ...)").
blanchet@45395
   315
blanchet@45395
   316
noschinl@45159
   317
*** FOL ***
noschinl@45159
   318
wenzelm@45385
   319
* New "case_product" attribute (see HOL).
noschinl@45159
   320
wenzelm@45090
   321
wenzelm@45128
   322
*** ML ***
wenzelm@45128
   323
wenzelm@45592
   324
* Antiquotation @{attributes [...]} embeds attribute source
wenzelm@45592
   325
representation into the ML text, which is particularly useful with
wenzelm@45592
   326
declarations like Local_Theory.note.
wenzelm@45592
   327
wenzelm@45128
   328
* Structure Proof_Context follows standard naming scheme.  Old
wenzelm@45128
   329
ProofContext has been discontinued.  INCOMPATIBILITY.
wenzelm@45128
   330
wenzelm@45293
   331
* Refined Local_Theory.declaration {syntax, pervasive}, with subtle
wenzelm@45298
   332
change of semantics: update is applied to auxiliary local theory
wenzelm@45293
   333
context as well.
wenzelm@45293
   334
wenzelm@45620
   335
* Modernized some old-style infix operations:
wenzelm@45620
   336
wenzelm@45620
   337
  addeqcongs    ~> Simplifier.add_eqcong
wenzelm@45620
   338
  deleqcongs    ~> Simplifier.del_eqcong
wenzelm@45620
   339
  addcongs      ~> Simplifier.add_cong
wenzelm@45620
   340
  delcongs      ~> Simplifier.del_cong
wenzelm@45625
   341
  setmksimps    ~> Simplifier.set_mksimps
wenzelm@45625
   342
  setmkcong     ~> Simplifier.set_mkcong
wenzelm@45625
   343
  setmksym      ~> Simplifier.set_mksym
wenzelm@45625
   344
  setmkeqTrue   ~> Simplifier.set_mkeqTrue
wenzelm@45625
   345
  settermless   ~> Simplifier.set_termless
wenzelm@45625
   346
  setsubgoaler  ~> Simplifier.set_subgoaler
wenzelm@45620
   347
  addsplits     ~> Splitter.add_split
wenzelm@45620
   348
  delsplits     ~> Splitter.del_split
wenzelm@45620
   349
wenzelm@45128
   350
wenzelm@45090
   351
wenzelm@44811
   352
New in Isabelle2011-1 (October 2011)
wenzelm@44811
   353
------------------------------------
wenzelm@41604
   354
wenzelm@41706
   355
*** General ***
wenzelm@41706
   356
wenzelm@44760
   357
* Improved Isabelle/jEdit Prover IDE (PIDE), which can be invoked as
wenzelm@44968
   358
"isabelle jedit" or "ISABELLE_HOME/Isabelle" on the command line.
wenzelm@44760
   359
wenzelm@44777
   360
  - Management of multiple theory files directly from the editor
wenzelm@44760
   361
    buffer store -- bypassing the file-system (no requirement to save
wenzelm@44760
   362
    files for checking).
wenzelm@44760
   363
wenzelm@44777
   364
  - Markup of formal entities within the text buffer, with semantic
wenzelm@44760
   365
    highlighting, tooltips and hyperlinks to jump to defining source
wenzelm@44760
   366
    positions.
wenzelm@44760
   367
wenzelm@44777
   368
  - Improved text rendering, with sub/superscripts in the source
wenzelm@44777
   369
    buffer (including support for copy/paste wrt. output panel, HTML
wenzelm@44777
   370
    theory output and other non-Isabelle text boxes).
wenzelm@44777
   371
wenzelm@44777
   372
  - Refined scheduling of proof checking and printing of results,
wenzelm@44760
   373
    based on interactive editor view.  (Note: jEdit folding and
wenzelm@44760
   374
    narrowing allows to restrict buffer perspectives explicitly.)
wenzelm@44760
   375
wenzelm@44777
   376
  - Reduced CPU performance requirements, usable on machines with few
wenzelm@44760
   377
    cores.
wenzelm@44760
   378
wenzelm@44777
   379
  - Reduced memory requirements due to pruning of unused document
wenzelm@44760
   380
    versions (garbage collection).
wenzelm@44760
   381
wenzelm@44760
   382
See also ~~/src/Tools/jEdit/README.html for further information,
wenzelm@44760
   383
including some remaining limitations.
wenzelm@44760
   384
wenzelm@41888
   385
* Theory loader: source files are exclusively located via the master
wenzelm@41888
   386
directory of each theory node (where the .thy file itself resides).
ballarin@43519
   387
The global load path (such as src/HOL/Library) has been discontinued.
ballarin@43519
   388
Note that the path element ~~ may be used to reference theories in the
ballarin@43519
   389
Isabelle home folder -- for instance, "~~/src/HOL/Library/FuncSet".
ballarin@43519
   390
INCOMPATIBILITY.
wenzelm@41888
   391
wenzelm@44800
   392
* Theory loader: source files are identified by content via SHA1
wenzelm@44800
   393
digests.  Discontinued former path/modtime identification and optional
wenzelm@44800
   394
ISABELLE_FILE_IDENT plugin scripts.
wenzelm@44800
   395
wenzelm@44800
   396
* Parallelization of nested Isar proofs is subject to
wenzelm@44800
   397
Goal.parallel_proofs_threshold (default 100).  See also isabelle
wenzelm@44800
   398
usedir option -Q.
wenzelm@44800
   399
wenzelm@42671
   400
* Name space: former unsynchronized references are now proper
wenzelm@42671
   401
configuration options, with more conventional names:
wenzelm@42671
   402
wenzelm@42671
   403
  long_names   ~> names_long
wenzelm@42671
   404
  short_names  ~> names_short
wenzelm@42671
   405
  unique_names ~> names_unique
wenzelm@42671
   406
wenzelm@42671
   407
Minor INCOMPATIBILITY, need to declare options in context like this:
wenzelm@42671
   408
wenzelm@42671
   409
  declare [[names_unique = false]]
wenzelm@42358
   410
wenzelm@42502
   411
* Literal facts `prop` may contain dummy patterns, e.g. `_ = _`.  Note
wenzelm@42502
   412
that the result needs to be unique, which means fact specifications
wenzelm@42502
   413
may have to be refined after enriching a proof context.
wenzelm@42502
   414
wenzelm@44800
   415
* Attribute "case_names" has been refined: the assumptions in each case
wenzelm@44800
   416
can be named now by following the case name with [name1 name2 ...].
wenzelm@44800
   417
wenzelm@44968
   418
* Isabelle/Isar reference manual has been updated and extended:
wenzelm@44968
   419
  - "Synopsis" provides a catalog of main Isar language concepts.
wenzelm@44968
   420
  - Formal references in syntax diagrams, via @{rail} antiquotation.
wenzelm@44968
   421
  - Updated material from classic "ref" manual, notably about
wenzelm@44968
   422
    "Classical Reasoner".
wenzelm@42633
   423
wenzelm@41706
   424
blanchet@41720
   425
*** HOL ***
blanchet@41720
   426
wenzelm@44968
   427
* Class bot and top require underlying partial order rather than
wenzelm@44800
   428
preorder: uniqueness of bot and top is guaranteed.  INCOMPATIBILITY.
haftmann@43808
   429
haftmann@43940
   430
* Class complete_lattice: generalized a couple of lemmas from sets;
wenzelm@44800
   431
generalized theorems INF_cong and SUP_cong.  New type classes for
wenzelm@44800
   432
complete boolean algebras and complete linear orders.  Lemmas
wenzelm@44800
   433
Inf_less_iff, less_Sup_iff, INF_less_iff, less_SUP_iff now reside in
wenzelm@44800
   434
class complete_linorder.
wenzelm@44800
   435
wenzelm@44800
   436
Changed proposition of lemmas Inf_bool_def, Sup_bool_def, Inf_fun_def,
wenzelm@44800
   437
Sup_fun_def, Inf_apply, Sup_apply.
wenzelm@44800
   438
wenzelm@45088
   439
Removed redundant lemmas (the right hand side gives hints how to
wenzelm@45088
   440
replace them for (metis ...), or (simp only: ...) proofs):
hoelzl@45035
   441
hoelzl@45035
   442
  Inf_singleton ~> Inf_insert [where A="{}", unfolded Inf_empty inf_top_right]
hoelzl@45035
   443
  Sup_singleton ~> Sup_insert [where A="{}", unfolded Sup_empty sup_bot_right]
hoelzl@45035
   444
  Inf_binary ~> Inf_insert, Inf_empty, and inf_top_right
hoelzl@45035
   445
  Sup_binary ~> Sup_insert, Sup_empty, and sup_bot_right
hoelzl@45035
   446
  Int_eq_Inter ~> Inf_insert, Inf_empty, and inf_top_right
hoelzl@45035
   447
  Un_eq_Union ~> Sup_insert, Sup_empty, and sup_bot_right
hoelzl@45035
   448
  Inter_def ~> INF_def, image_def
hoelzl@45035
   449
  Union_def ~> SUP_def, image_def
hoelzl@45035
   450
  INT_eq ~> INF_def, and image_def
hoelzl@45035
   451
  UN_eq ~> SUP_def, and image_def
hoelzl@45035
   452
  INF_subset ~> INF_superset_mono [OF _ order_refl]
wenzelm@44800
   453
wenzelm@44800
   454
More consistent and comprehensive names:
wenzelm@44800
   455
hoelzl@45035
   456
  INTER_eq_Inter_image ~> INF_def
hoelzl@45035
   457
  UNION_eq_Union_image ~> SUP_def
haftmann@43872
   458
  INFI_def ~> INF_def
haftmann@43872
   459
  SUPR_def ~> SUP_def
haftmann@44101
   460
  INF_leI ~> INF_lower
haftmann@44101
   461
  INF_leI2 ~> INF_lower2
haftmann@44101
   462
  le_INFI ~> INF_greatest
haftmann@44101
   463
  le_SUPI ~> SUP_upper
haftmann@44101
   464
  le_SUPI2 ~> SUP_upper2
haftmann@44101
   465
  SUP_leI ~> SUP_least
haftmann@43873
   466
  INFI_bool_eq ~> INF_bool_eq
haftmann@43873
   467
  SUPR_bool_eq ~> SUP_bool_eq
haftmann@43873
   468
  INFI_apply ~> INF_apply
haftmann@43873
   469
  SUPR_apply ~> SUP_apply
haftmann@44101
   470
  INTER_def ~> INTER_eq
haftmann@44101
   471
  UNION_def ~> UNION_eq
haftmann@44101
   472
haftmann@43865
   473
INCOMPATIBILITY.
haftmann@43865
   474
wenzelm@44973
   475
* Renamed theory Complete_Lattice to Complete_Lattices.
wenzelm@44973
   476
INCOMPATIBILITY.
wenzelm@44973
   477
wenzelm@44973
   478
* Theory Complete_Lattices: lemmas Inf_eq_top_iff, INF_eq_top_iff,
wenzelm@44973
   479
INF_image, Inf_insert, INF_top, Inf_top_conv, INF_top_conv, SUP_bot,
wenzelm@44973
   480
Sup_bot_conv, SUP_bot_conv, Sup_eq_top_iff, SUP_eq_top_iff, SUP_image,
wenzelm@44973
   481
Sup_insert are now declared as [simp].  INCOMPATIBILITY.
wenzelm@44973
   482
wenzelm@44973
   483
* Theory Lattice: lemmas compl_inf_bot, compl_le_comp_iff,
wenzelm@44973
   484
compl_sup_top, inf_idem, inf_left_idem, inf_sup_absorb, sup_idem,
wenzelm@44973
   485
sup_inf_absob, sup_left_idem are now declared as [simp].  Minor
wenzelm@44973
   486
INCOMPATIBILITY.
wenzelm@44973
   487
krauss@44845
   488
* Added syntactic classes "inf" and "sup" for the respective
krauss@44845
   489
constants.  INCOMPATIBILITY: Changes in the argument order of the
krauss@44845
   490
(mostly internal) locale predicates for some derived classes.
krauss@44845
   491
wenzelm@44800
   492
* Theorem collections ball_simps and bex_simps do not contain theorems
wenzelm@44800
   493
referring to UNION any longer; these have been moved to collection
wenzelm@44800
   494
UN_ball_bex_simps.  INCOMPATIBILITY.
wenzelm@44800
   495
wenzelm@44800
   496
* Theory Archimedean_Field: floor now is defined as parameter of a
wenzelm@44800
   497
separate type class floor_ceiling.
wenzelm@44800
   498
wenzelm@44800
   499
* Theory Finite_Set: more coherent development of fold_set locales:
haftmann@42872
   500
haftmann@42872
   501
    locale fun_left_comm ~> locale comp_fun_commute
haftmann@42872
   502
    locale fun_left_comm_idem ~> locale comp_fun_idem
wenzelm@44800
   503
wenzelm@44800
   504
Both use point-free characterization; interpretation proofs may need
wenzelm@44800
   505
adjustment.  INCOMPATIBILITY.
haftmann@42872
   506
wenzelm@44800
   507
* Theory Limits: Type "'a net" has been renamed to "'a filter", in
huffman@44081
   508
accordance with standard mathematical terminology. INCOMPATIBILITY.
huffman@44081
   509
wenzelm@44800
   510
* Theory Complex_Main: The locale interpretations for the
wenzelm@44800
   511
bounded_linear and bounded_bilinear locales have been removed, in
wenzelm@44800
   512
order to reduce the number of duplicate lemmas. Users must use the
wenzelm@44800
   513
original names for distributivity theorems, potential INCOMPATIBILITY.
huffman@44274
   514
huffman@44274
   515
  divide.add ~> add_divide_distrib
huffman@44274
   516
  divide.diff ~> diff_divide_distrib
huffman@44274
   517
  divide.setsum ~> setsum_divide_distrib
huffman@44274
   518
  mult.add_right ~> right_distrib
huffman@44274
   519
  mult.diff_right ~> right_diff_distrib
huffman@44274
   520
  mult_right.setsum ~> setsum_right_distrib
huffman@44274
   521
  mult_left.diff ~> left_diff_distrib
huffman@44274
   522
wenzelm@44800
   523
* Theory Complex_Main: Several redundant theorems have been removed or
huffman@44568
   524
replaced by more general versions. INCOMPATIBILITY.
huffman@44506
   525
huffman@45045
   526
  real_diff_def ~> minus_real_def
huffman@45045
   527
  real_divide_def ~> divide_real_def
huffman@45045
   528
  real_less_def ~> less_le
huffman@45045
   529
  real_abs_def ~> abs_real_def
huffman@45045
   530
  real_sgn_def ~> sgn_real_def
huffman@45045
   531
  real_mult_commute ~> mult_commute
huffman@45045
   532
  real_mult_assoc ~> mult_assoc
huffman@45045
   533
  real_mult_1 ~> mult_1_left
huffman@45045
   534
  real_add_mult_distrib ~> left_distrib
huffman@45045
   535
  real_zero_not_eq_one ~> zero_neq_one
huffman@45045
   536
  real_mult_inverse_left ~> left_inverse
huffman@45045
   537
  INVERSE_ZERO ~> inverse_zero
huffman@45045
   538
  real_le_refl ~> order_refl
huffman@45045
   539
  real_le_antisym ~> order_antisym
huffman@45045
   540
  real_le_trans ~> order_trans
huffman@45045
   541
  real_le_linear ~> linear
huffman@45045
   542
  real_le_eq_diff ~> le_iff_diff_le_0
huffman@45045
   543
  real_add_left_mono ~> add_left_mono
huffman@45045
   544
  real_mult_order ~> mult_pos_pos
huffman@45045
   545
  real_mult_less_mono2 ~> mult_strict_left_mono
huffman@44822
   546
  real_of_int_real_of_nat ~> real_of_int_of_nat_eq
huffman@44506
   547
  real_0_le_divide_iff ~> zero_le_divide_iff
huffman@44506
   548
  realpow_two_disj ~> power2_eq_iff
huffman@44506
   549
  real_squared_diff_one_factored ~> square_diff_one_factored
huffman@44506
   550
  realpow_two_diff ~> square_diff_square_factored
huffman@44669
   551
  reals_complete2 ~> complete_real
huffman@44742
   552
  real_sum_squared_expand ~> power2_sum
huffman@44506
   553
  exp_ln_eq ~> ln_unique
huffman@44702
   554
  expi_add ~> exp_add
huffman@44702
   555
  expi_zero ~> exp_zero
huffman@44506
   556
  lemma_DERIV_subst ~> DERIV_cong
huffman@44568
   557
  LIMSEQ_Zfun_iff ~> tendsto_Zfun_iff
huffman@44568
   558
  LIMSEQ_const ~> tendsto_const
huffman@44568
   559
  LIMSEQ_norm ~> tendsto_norm
huffman@44568
   560
  LIMSEQ_add ~> tendsto_add
huffman@44568
   561
  LIMSEQ_minus ~> tendsto_minus
huffman@44568
   562
  LIMSEQ_minus_cancel ~> tendsto_minus_cancel
huffman@44568
   563
  LIMSEQ_diff ~> tendsto_diff
huffman@44568
   564
  bounded_linear.LIMSEQ ~> bounded_linear.tendsto
huffman@44568
   565
  bounded_bilinear.LIMSEQ ~> bounded_bilinear.tendsto
huffman@44568
   566
  LIMSEQ_mult ~> tendsto_mult
huffman@44568
   567
  LIMSEQ_inverse ~> tendsto_inverse
huffman@44568
   568
  LIMSEQ_divide ~> tendsto_divide
huffman@44568
   569
  LIMSEQ_pow ~> tendsto_power
huffman@44568
   570
  LIMSEQ_setsum ~> tendsto_setsum
huffman@44568
   571
  LIMSEQ_setprod ~> tendsto_setprod
huffman@44568
   572
  LIMSEQ_norm_zero ~> tendsto_norm_zero_iff
huffman@44568
   573
  LIMSEQ_rabs_zero ~> tendsto_rabs_zero_iff
huffman@44568
   574
  LIMSEQ_imp_rabs ~> tendsto_rabs
huffman@44701
   575
  LIMSEQ_add_minus ~> tendsto_add [OF _ tendsto_minus]
huffman@44701
   576
  LIMSEQ_add_const ~> tendsto_add [OF _ tendsto_const]
huffman@44701
   577
  LIMSEQ_diff_const ~> tendsto_diff [OF _ tendsto_const]
huffman@44741
   578
  LIMSEQ_Complex ~> tendsto_Complex
huffman@44568
   579
  LIM_ident ~> tendsto_ident_at
huffman@44568
   580
  LIM_const ~> tendsto_const
huffman@44568
   581
  LIM_add ~> tendsto_add
huffman@44568
   582
  LIM_add_zero ~> tendsto_add_zero
huffman@44568
   583
  LIM_minus ~> tendsto_minus
huffman@44568
   584
  LIM_diff ~> tendsto_diff
huffman@44568
   585
  LIM_norm ~> tendsto_norm
huffman@44568
   586
  LIM_norm_zero ~> tendsto_norm_zero
huffman@44568
   587
  LIM_norm_zero_cancel ~> tendsto_norm_zero_cancel
huffman@44568
   588
  LIM_norm_zero_iff ~> tendsto_norm_zero_iff
huffman@44568
   589
  LIM_rabs ~> tendsto_rabs
huffman@44568
   590
  LIM_rabs_zero ~> tendsto_rabs_zero
huffman@44568
   591
  LIM_rabs_zero_cancel ~> tendsto_rabs_zero_cancel
huffman@44568
   592
  LIM_rabs_zero_iff ~> tendsto_rabs_zero_iff
huffman@44568
   593
  LIM_compose ~> tendsto_compose
huffman@44568
   594
  LIM_mult ~> tendsto_mult
huffman@44568
   595
  LIM_scaleR ~> tendsto_scaleR
huffman@44568
   596
  LIM_of_real ~> tendsto_of_real
huffman@44568
   597
  LIM_power ~> tendsto_power
huffman@44568
   598
  LIM_inverse ~> tendsto_inverse
huffman@44568
   599
  LIM_sgn ~> tendsto_sgn
huffman@44568
   600
  isCont_LIM_compose ~> isCont_tendsto_compose
huffman@44568
   601
  bounded_linear.LIM ~> bounded_linear.tendsto
huffman@44568
   602
  bounded_linear.LIM_zero ~> bounded_linear.tendsto_zero
huffman@44568
   603
  bounded_bilinear.LIM ~> bounded_bilinear.tendsto
huffman@44568
   604
  bounded_bilinear.LIM_prod_zero ~> bounded_bilinear.tendsto_zero
huffman@44568
   605
  bounded_bilinear.LIM_left_zero ~> bounded_bilinear.tendsto_left_zero
huffman@44568
   606
  bounded_bilinear.LIM_right_zero ~> bounded_bilinear.tendsto_right_zero
huffman@44568
   607
  LIM_inverse_fun ~> tendsto_inverse [OF tendsto_ident_at]
huffman@44506
   608
wenzelm@44967
   609
* Theory Complex_Main: The definition of infinite series was
wenzelm@44967
   610
generalized.  Now it is defined on the type class {topological_space,
wenzelm@44967
   611
comm_monoid_add}.  Hence it is useable also for extended real numbers.
wenzelm@42484
   612
huffman@44908
   613
* Theory Complex_Main: The complex exponential function "expi" is now
huffman@44908
   614
a type-constrained abbreviation for "exp :: complex => complex"; thus
huffman@44908
   615
several polymorphic lemmas about "exp" are now applicable to "expi".
huffman@44908
   616
wenzelm@44968
   617
* Code generation:
wenzelm@44968
   618
wenzelm@44968
   619
  - Theory Library/Code_Char_ord provides native ordering of
wenzelm@44968
   620
    characters in the target language.
wenzelm@44968
   621
wenzelm@44968
   622
  - Commands code_module and code_library are legacy, use export_code
wenzelm@44968
   623
    instead.
wenzelm@44968
   624
wenzelm@44968
   625
  - Method "evaluation" is legacy, use method "eval" instead.
wenzelm@44968
   626
wenzelm@44968
   627
  - Legacy evaluator "SML" is deactivated by default.  May be
wenzelm@44968
   628
    reactivated by the following theory command:
wenzelm@44968
   629
wenzelm@44968
   630
      setup {* Value.add_evaluator ("SML", Codegen.eval_term) *}
wenzelm@44968
   631
wenzelm@44968
   632
* Declare ext [intro] by default.  Rare INCOMPATIBILITY.
wenzelm@44968
   633
wenzelm@45088
   634
* New proof method "induction" that gives induction hypotheses the
wenzelm@45088
   635
name "IH", thus distinguishing them from further hypotheses that come
wenzelm@45088
   636
from rule induction.  The latter are still called "hyps".  Method
wenzelm@45088
   637
"induction" is a thin wrapper around "induct" and follows the same
wenzelm@45088
   638
syntax.
wenzelm@45088
   639
wenzelm@44968
   640
* Method "fastsimp" has been renamed to "fastforce", but "fastsimp" is
wenzelm@44968
   641
still available as a legacy feature for some time.
wenzelm@44968
   642
wenzelm@44968
   643
* Nitpick:
wenzelm@44968
   644
  - Added "need" and "total_consts" options.
wenzelm@44968
   645
  - Reintroduced "show_skolems" option by popular demand.
wenzelm@44968
   646
  - Renamed attribute: nitpick_def ~> nitpick_unfold.
wenzelm@44968
   647
    INCOMPATIBILITY.
wenzelm@44968
   648
wenzelm@44968
   649
* Sledgehammer:
wenzelm@44968
   650
  - Use quasi-sound (and efficient) translations by default.
wenzelm@44968
   651
  - Added support for the following provers: E-ToFoF, LEO-II,
wenzelm@44968
   652
    Satallax, SNARK, Waldmeister, and Z3 with TPTP syntax.
wenzelm@44968
   653
  - Automatically preplay and minimize proofs before showing them if
wenzelm@44968
   654
    this can be done within reasonable time.
wenzelm@44968
   655
  - sledgehammer available_provers ~> sledgehammer supported_provers.
wenzelm@44968
   656
    INCOMPATIBILITY.
wenzelm@44968
   657
  - Added "preplay_timeout", "slicing", "type_enc", "sound",
wenzelm@44968
   658
    "max_mono_iters", and "max_new_mono_instances" options.
wenzelm@44968
   659
  - Removed "explicit_apply" and "full_types" options as well as "Full
wenzelm@44968
   660
    Types" Proof General menu item. INCOMPATIBILITY.
wenzelm@44968
   661
wenzelm@44968
   662
* Metis:
wenzelm@44968
   663
  - Removed "metisF" -- use "metis" instead. INCOMPATIBILITY.
wenzelm@44968
   664
  - Obsoleted "metisFT" -- use "metis (full_types)" instead.
wenzelm@44968
   665
    INCOMPATIBILITY.
wenzelm@44968
   666
wenzelm@44968
   667
* Command 'try':
wenzelm@44968
   668
  - Renamed 'try_methods' and added "simp:", "intro:", "dest:", and
wenzelm@44968
   669
    "elim:" options. INCOMPATIBILITY.
wenzelm@44968
   670
  - Introduced 'try' that not only runs 'try_methods' but also
wenzelm@44968
   671
    'solve_direct', 'sledgehammer', 'quickcheck', and 'nitpick'.
wenzelm@44968
   672
wenzelm@44968
   673
* Quickcheck:
wenzelm@44968
   674
  - Added "eval" option to evaluate terms for the found counterexample
wenzelm@44968
   675
    (currently only supported by the default (exhaustive) tester).
wenzelm@44968
   676
  - Added post-processing of terms to obtain readable counterexamples
wenzelm@44968
   677
    (currently only supported by the default (exhaustive) tester).
wenzelm@44968
   678
  - New counterexample generator quickcheck[narrowing] enables
wenzelm@44968
   679
    narrowing-based testing.  Requires the Glasgow Haskell compiler
wenzelm@44968
   680
    with its installation location defined in the Isabelle settings
wenzelm@44968
   681
    environment as ISABELLE_GHC.
wenzelm@44968
   682
  - Removed quickcheck tester "SML" based on the SML code generator
wenzelm@44968
   683
    (formly in HOL/Library).
wenzelm@44968
   684
wenzelm@44968
   685
* Function package: discontinued option "tailrec".  INCOMPATIBILITY,
wenzelm@44968
   686
use 'partial_function' instead.
wenzelm@44968
   687
wenzelm@44968
   688
* Theory Library/Extended_Reals replaces now the positive extended
wenzelm@44968
   689
reals found in probability theory. This file is extended by
wenzelm@44968
   690
Multivariate_Analysis/Extended_Real_Limits.
wenzelm@44968
   691
wenzelm@44974
   692
* Theory Library/Old_Recdef: old 'recdef' package has been moved here,
wenzelm@44974
   693
from where it must be imported explicitly if it is really required.
wenzelm@44974
   694
INCOMPATIBILITY.
wenzelm@44968
   695
wenzelm@44968
   696
* Theory Library/Wfrec: well-founded recursion combinator "wfrec" has
wenzelm@44968
   697
been moved here.  INCOMPATIBILITY.
wenzelm@44968
   698
wenzelm@44968
   699
* Theory Library/Saturated provides type of numbers with saturated
wenzelm@44968
   700
arithmetic.
wenzelm@44968
   701
wenzelm@44968
   702
* Theory Library/Product_Lattice defines a pointwise ordering for the
wenzelm@44968
   703
product type 'a * 'b, and provides instance proofs for various order
wenzelm@44968
   704
and lattice type classes.
wenzelm@44968
   705
wenzelm@44968
   706
* Theory Library/Countable now provides the "countable_datatype" proof
wenzelm@44968
   707
method for proving "countable" class instances for datatypes.
wenzelm@44968
   708
wenzelm@44968
   709
* Theory Library/Cset_Monad allows do notation for computable sets
wenzelm@44968
   710
(cset) via the generic monad ad-hoc overloading facility.
wenzelm@44968
   711
wenzelm@44968
   712
* Library: Theories of common data structures are split into theories
wenzelm@44968
   713
for implementation, an invariant-ensuring type, and connection to an
wenzelm@44968
   714
abstract type. INCOMPATIBILITY.
wenzelm@44968
   715
wenzelm@44968
   716
  - RBT is split into RBT and RBT_Mapping.
wenzelm@44968
   717
  - AssocList is split and renamed into AList and AList_Mapping.
wenzelm@44968
   718
  - DList is split into DList_Impl, DList, and DList_Cset.
wenzelm@44968
   719
  - Cset is split into Cset and List_Cset.
wenzelm@44968
   720
wenzelm@44968
   721
* Theory Library/Nat_Infinity has been renamed to
wenzelm@44968
   722
Library/Extended_Nat, with name changes of the following types and
wenzelm@44968
   723
constants:
wenzelm@44968
   724
wenzelm@44968
   725
  type inat   ~> type enat
wenzelm@44968
   726
  Fin         ~> enat
wenzelm@44968
   727
  Infty       ~> infinity (overloaded)
wenzelm@44968
   728
  iSuc        ~> eSuc
wenzelm@44968
   729
  the_Fin     ~> the_enat
wenzelm@44968
   730
wenzelm@44968
   731
Every theorem name containing "inat", "Fin", "Infty", or "iSuc" has
wenzelm@44968
   732
been renamed accordingly. INCOMPATIBILITY.
wenzelm@44968
   733
wenzelm@44968
   734
* Session Multivariate_Analysis: The euclidean_space type class now
wenzelm@44968
   735
fixes a constant "Basis :: 'a set" consisting of the standard
wenzelm@44968
   736
orthonormal basis for the type. Users now have the option of
wenzelm@44968
   737
quantifying over this set instead of using the "basis" function, e.g.
wenzelm@44968
   738
"ALL x:Basis. P x" vs "ALL i<DIM('a). P (basis i)".
wenzelm@44968
   739
wenzelm@44968
   740
* Session Multivariate_Analysis: Type "('a, 'b) cart" has been renamed
wenzelm@44968
   741
to "('a, 'b) vec" (the syntax "'a ^ 'b" remains unaffected). Constants
wenzelm@44968
   742
"Cart_nth" and "Cart_lambda" have been respectively renamed to
wenzelm@44968
   743
"vec_nth" and "vec_lambda"; theorems mentioning those names have
wenzelm@44968
   744
changed to match. Definition theorems for overloaded constants now use
wenzelm@44968
   745
the standard "foo_vec_def" naming scheme. A few other theorems have
wenzelm@44968
   746
been renamed as follows (INCOMPATIBILITY):
wenzelm@44968
   747
wenzelm@44968
   748
  Cart_eq          ~> vec_eq_iff
wenzelm@44968
   749
  dist_nth_le_cart ~> dist_vec_nth_le
wenzelm@44968
   750
  tendsto_vector   ~> vec_tendstoI
wenzelm@44968
   751
  Cauchy_vector    ~> vec_CauchyI
wenzelm@44968
   752
wenzelm@44968
   753
* Session Multivariate_Analysis: Several duplicate theorems have been
wenzelm@44968
   754
removed, and other theorems have been renamed or replaced with more
wenzelm@44968
   755
general versions. INCOMPATIBILITY.
wenzelm@44968
   756
wenzelm@44968
   757
  finite_choice ~> finite_set_choice
wenzelm@44968
   758
  eventually_conjI ~> eventually_conj
wenzelm@44968
   759
  eventually_and ~> eventually_conj_iff
wenzelm@44968
   760
  eventually_false ~> eventually_False
wenzelm@44968
   761
  setsum_norm ~> norm_setsum
wenzelm@44968
   762
  Lim_sequentially ~> LIMSEQ_def
wenzelm@44968
   763
  Lim_ident_at ~> LIM_ident
wenzelm@44968
   764
  Lim_const ~> tendsto_const
wenzelm@44968
   765
  Lim_cmul ~> tendsto_scaleR [OF tendsto_const]
wenzelm@44968
   766
  Lim_neg ~> tendsto_minus
wenzelm@44968
   767
  Lim_add ~> tendsto_add
wenzelm@44968
   768
  Lim_sub ~> tendsto_diff
wenzelm@44968
   769
  Lim_mul ~> tendsto_scaleR
wenzelm@44968
   770
  Lim_vmul ~> tendsto_scaleR [OF _ tendsto_const]
wenzelm@44968
   771
  Lim_null_norm ~> tendsto_norm_zero_iff [symmetric]
wenzelm@44968
   772
  Lim_linear ~> bounded_linear.tendsto
wenzelm@44968
   773
  Lim_component ~> tendsto_euclidean_component
wenzelm@44968
   774
  Lim_component_cart ~> tendsto_vec_nth
wenzelm@44968
   775
  Lim_inner ~> tendsto_inner [OF tendsto_const]
wenzelm@44968
   776
  dot_lsum ~> inner_setsum_left
wenzelm@44968
   777
  dot_rsum ~> inner_setsum_right
wenzelm@44968
   778
  continuous_cmul ~> continuous_scaleR [OF continuous_const]
wenzelm@44968
   779
  continuous_neg ~> continuous_minus
wenzelm@44968
   780
  continuous_sub ~> continuous_diff
wenzelm@44968
   781
  continuous_vmul ~> continuous_scaleR [OF _ continuous_const]
wenzelm@44968
   782
  continuous_mul ~> continuous_scaleR
wenzelm@44968
   783
  continuous_inv ~> continuous_inverse
wenzelm@44968
   784
  continuous_at_within_inv ~> continuous_at_within_inverse
wenzelm@44968
   785
  continuous_at_inv ~> continuous_at_inverse
wenzelm@44968
   786
  continuous_at_norm ~> continuous_norm [OF continuous_at_id]
wenzelm@44968
   787
  continuous_at_infnorm ~> continuous_infnorm [OF continuous_at_id]
wenzelm@44968
   788
  continuous_at_component ~> continuous_component [OF continuous_at_id]
wenzelm@44968
   789
  continuous_on_neg ~> continuous_on_minus
wenzelm@44968
   790
  continuous_on_sub ~> continuous_on_diff
wenzelm@44968
   791
  continuous_on_cmul ~> continuous_on_scaleR [OF continuous_on_const]
wenzelm@44968
   792
  continuous_on_vmul ~> continuous_on_scaleR [OF _ continuous_on_const]
wenzelm@44968
   793
  continuous_on_mul ~> continuous_on_scaleR
wenzelm@44968
   794
  continuous_on_mul_real ~> continuous_on_mult
wenzelm@44968
   795
  continuous_on_inner ~> continuous_on_inner [OF continuous_on_const]
wenzelm@44968
   796
  continuous_on_norm ~> continuous_on_norm [OF continuous_on_id]
wenzelm@44968
   797
  continuous_on_inverse ~> continuous_on_inv
wenzelm@44968
   798
  uniformly_continuous_on_neg ~> uniformly_continuous_on_minus
wenzelm@44968
   799
  uniformly_continuous_on_sub ~> uniformly_continuous_on_diff
wenzelm@44968
   800
  subset_interior ~> interior_mono
wenzelm@44968
   801
  subset_closure ~> closure_mono
wenzelm@44968
   802
  closure_univ ~> closure_UNIV
wenzelm@44968
   803
  real_arch_lt ~> reals_Archimedean2
wenzelm@44968
   804
  real_arch ~> reals_Archimedean3
wenzelm@44968
   805
  real_abs_norm ~> abs_norm_cancel
wenzelm@44968
   806
  real_abs_sub_norm ~> norm_triangle_ineq3
wenzelm@44968
   807
  norm_cauchy_schwarz_abs ~> Cauchy_Schwarz_ineq2
wenzelm@44968
   808
wenzelm@44968
   809
* Session HOL-Probability:
wenzelm@44968
   810
  - Caratheodory's extension lemma is now proved for ring_of_sets.
wenzelm@44968
   811
  - Infinite products of probability measures are now available.
wenzelm@44968
   812
  - Sigma closure is independent, if the generator is independent
wenzelm@44968
   813
  - Use extended reals instead of positive extended
wenzelm@44968
   814
    reals. INCOMPATIBILITY.
wenzelm@44968
   815
huffman@45043
   816
* Session HOLCF: Discontinued legacy theorem names, INCOMPATIBILITY.
huffman@45043
   817
huffman@45043
   818
  expand_fun_below ~> fun_below_iff
huffman@45043
   819
  below_fun_ext ~> fun_belowI
huffman@45043
   820
  expand_cfun_eq ~> cfun_eq_iff
huffman@45043
   821
  ext_cfun ~> cfun_eqI
huffman@45043
   822
  expand_cfun_below ~> cfun_below_iff
huffman@45043
   823
  below_cfun_ext ~> cfun_belowI
huffman@45043
   824
  monofun_fun_fun ~> fun_belowD
huffman@45043
   825
  monofun_fun_arg ~> monofunE
huffman@45043
   826
  monofun_lub_fun ~> adm_monofun [THEN admD]
huffman@45043
   827
  cont_lub_fun ~> adm_cont [THEN admD]
huffman@45043
   828
  cont2cont_Rep_CFun ~> cont2cont_APP
huffman@45043
   829
  cont_Rep_CFun_app ~> cont_APP_app
huffman@45043
   830
  cont_Rep_CFun_app_app ~> cont_APP_app_app
huffman@45043
   831
  cont_cfun_fun ~> cont_Rep_cfun1 [THEN contE]
huffman@45043
   832
  cont_cfun_arg ~> cont_Rep_cfun2 [THEN contE]
huffman@45043
   833
  contlub_cfun ~> lub_APP [symmetric]
huffman@45043
   834
  contlub_LAM ~> lub_LAM [symmetric]
huffman@45043
   835
  thelubI ~> lub_eqI
huffman@45043
   836
  UU_I ~> bottomI
huffman@45043
   837
  lift_distinct1 ~> lift.distinct(1)
huffman@45043
   838
  lift_distinct2 ~> lift.distinct(2)
huffman@45043
   839
  Def_not_UU ~> lift.distinct(2)
huffman@45043
   840
  Def_inject ~> lift.inject
huffman@45043
   841
  below_UU_iff ~> below_bottom_iff
huffman@45043
   842
  eq_UU_iff ~> eq_bottom_iff
huffman@45043
   843
huffman@44903
   844
krauss@41678
   845
*** Document preparation ***
krauss@41678
   846
wenzelm@44800
   847
* Antiquotation @{rail} layouts railroad syntax diagrams, see also
wenzelm@44800
   848
isar-ref manual, both for description and actual application of the
wenzelm@44800
   849
same.
wenzelm@44800
   850
wenzelm@44800
   851
* Antiquotation @{value} evaluates the given term and presents its
wenzelm@44800
   852
result.
wenzelm@44800
   853
wenzelm@44800
   854
* Antiquotations: term style "isub" provides ad-hoc conversion of
wenzelm@44800
   855
variables x1, y23 into subscripted form x\<^isub>1,
wenzelm@44800
   856
y\<^isub>2\<^isub>3.
wenzelm@41604
   857
wenzelm@42484
   858
* Predefined LaTeX macros for Isabelle symbols \<bind> and \<then>
wenzelm@42484
   859
(e.g. see ~~/src/HOL/Library/Monad_Syntax.thy).
wenzelm@42484
   860
wenzelm@44967
   861
* Localized \isabellestyle switch can be used within blocks or groups
wenzelm@44967
   862
like this:
wenzelm@44967
   863
wenzelm@44967
   864
  \isabellestyle{it}  %preferred default
wenzelm@44967
   865
  {\isabellestylett @{text "typewriter stuff"}}
wenzelm@44967
   866
wenzelm@44967
   867
* Discontinued special treatment of hard tabulators.  Implicit
wenzelm@44967
   868
tab-width is now defined as 1.  Potential INCOMPATIBILITY for visual
wenzelm@44967
   869
layouts.
wenzelm@44800
   870
wenzelm@41604
   871
wenzelm@41944
   872
*** ML ***
wenzelm@41944
   873
wenzelm@43742
   874
* The inner syntax of sort/type/term/prop supports inlined YXML
wenzelm@43742
   875
representations within quoted string tokens.  By encoding logical
wenzelm@43742
   876
entities via Term_XML (in ML or Scala) concrete syntax can be
wenzelm@43742
   877
bypassed, which is particularly useful for producing bits of text
wenzelm@43742
   878
under external program control.
wenzelm@43742
   879
wenzelm@43580
   880
* Antiquotations for ML and document preparation are managed as theory
wenzelm@43580
   881
data, which requires explicit setup.
wenzelm@43580
   882
wenzelm@42901
   883
* Isabelle_Process.is_active allows tools to check if the official
wenzelm@42901
   884
process wrapper is running (Isabelle/Scala/jEdit) or the old TTY loop
wenzelm@42901
   885
(better known as Proof General).
wenzelm@42901
   886
wenzelm@42360
   887
* Structure Proof_Context follows standard naming scheme.  Old
wenzelm@42360
   888
ProofContext is still available for some time as legacy alias.
wenzelm@42360
   889
wenzelm@42015
   890
* Structure Timing provides various operations for timing; supersedes
wenzelm@42015
   891
former start_timing/end_timing etc.
wenzelm@42015
   892
wenzelm@41944
   893
* Path.print is the official way to show file-system paths to users
wenzelm@41944
   894
(including quotes etc.).
wenzelm@41944
   895
wenzelm@42066
   896
* Inner syntax: identifiers in parse trees of generic categories
wenzelm@42066
   897
"logic", "aprop", "idt" etc. carry position information (disguised as
wenzelm@42066
   898
type constraints).  Occasional INCOMPATIBILITY with non-compliant
wenzelm@42067
   899
translations that choke on unexpected type constraints.  Positions can
wenzelm@42067
   900
be stripped in ML translations via Syntax.strip_positions /
wenzelm@42067
   901
Syntax.strip_positions_ast, or via the syntax constant
wenzelm@42067
   902
"_strip_positions" within parse trees.  As last resort, positions can
wenzelm@42067
   903
be disabled via the configuration option Syntax.positions, which is
wenzelm@42067
   904
called "syntax_positions" in Isar attribute syntax.
wenzelm@42066
   905
wenzelm@42291
   906
* Discontinued special status of various ML structures that contribute
wenzelm@42291
   907
to structure Syntax (Ast, Lexicon, Mixfix, Parser, Printer etc.): less
wenzelm@42291
   908
pervasive content, no inclusion in structure Syntax.  INCOMPATIBILITY,
wenzelm@42291
   909
refer directly to Ast.Constant, Lexicon.is_identifier,
wenzelm@42291
   910
Syntax_Trans.mk_binder_tr etc.
wenzelm@42236
   911
wenzelm@42251
   912
* Typed print translation: discontinued show_sorts argument, which is
wenzelm@42251
   913
already available via context of "advanced" translation.
wenzelm@42251
   914
wenzelm@42370
   915
* Refined PARALLEL_GOALS tactical: degrades gracefully for schematic
wenzelm@42370
   916
goal states; body tactic needs to address all subgoals uniformly.
wenzelm@42370
   917
wenzelm@42413
   918
* Slightly more special eq_list/eq_set, with shortcut involving
wenzelm@42413
   919
pointer equality (assumes that eq relation is reflexive).
wenzelm@42413
   920
wenzelm@42794
   921
* Classical tactics use proper Proof.context instead of historic types
wenzelm@42794
   922
claset/clasimpset.  Old-style declarations like addIs, addEs, addDs
wenzelm@42794
   923
operate directly on Proof.context.  Raw type claset retains its use as
wenzelm@42794
   924
snapshot of the classical context, which can be recovered via
wenzelm@42794
   925
(put_claset HOL_cs) etc.  Type clasimpset has been discontinued.
wenzelm@42794
   926
INCOMPATIBILITY, classical tactics and derived proof methods require
wenzelm@42794
   927
proper Proof.context.
wenzelm@42794
   928
wenzelm@44813
   929
wenzelm@44813
   930
*** System ***
wenzelm@44813
   931
wenzelm@44968
   932
* Discontinued support for Poly/ML 5.2, which was the last version
wenzelm@44968
   933
without proper multithreading and TimeLimit implementation.
wenzelm@44968
   934
wenzelm@44968
   935
* Discontinued old lib/scripts/polyml-platform, which has been
wenzelm@44968
   936
obsolete since Isabelle2009-2.
wenzelm@44968
   937
wenzelm@44967
   938
* Various optional external tools are referenced more robustly and
wenzelm@44967
   939
uniformly by explicit Isabelle settings as follows:
wenzelm@44967
   940
wenzelm@44967
   941
  ISABELLE_CSDP   (formerly CSDP_EXE)
wenzelm@44967
   942
  ISABELLE_GHC    (formerly EXEC_GHC or GHC_PATH)
wenzelm@44967
   943
  ISABELLE_OCAML  (formerly EXEC_OCAML)
wenzelm@44967
   944
  ISABELLE_SWIPL  (formerly EXEC_SWIPL)
wenzelm@44967
   945
  ISABELLE_YAP    (formerly EXEC_YAP)
wenzelm@44967
   946
wenzelm@44967
   947
Note that automated detection from the file-system or search path has
wenzelm@44967
   948
been discontinued.  INCOMPATIBILITY.
wenzelm@44967
   949
wenzelm@43757
   950
* Scala layer provides JVM method invocation service for static
wenzelm@44800
   951
methods of type (String)String, see Invoke_Scala.method in ML.  For
wenzelm@44800
   952
example:
wenzelm@43757
   953
wenzelm@43757
   954
  Invoke_Scala.method "java.lang.System.getProperty" "java.home"
wenzelm@43757
   955
wenzelm@44967
   956
Together with YXML.string_of_body/parse_body and XML.Encode/Decode
wenzelm@44967
   957
this allows to pass structured values between ML and Scala.
wenzelm@44800
   958
wenzelm@44813
   959
* The IsabelleText fonts includes some further glyphs to support the
wenzelm@44813
   960
Prover IDE.  Potential INCOMPATIBILITY: users who happen to have
wenzelm@44813
   961
installed a local copy (which is normally *not* required) need to
wenzelm@44813
   962
delete or update it from ~~/lib/fonts/.
wenzelm@41944
   963
wenzelm@41706
   964
wenzelm@45089
   965
wenzelm@41512
   966
New in Isabelle2011 (January 2011)
wenzelm@41512
   967
----------------------------------
wenzelm@37358
   968
wenzelm@37553
   969
*** General ***
wenzelm@37553
   970
wenzelm@41573
   971
* Experimental Prover IDE based on Isabelle/Scala and jEdit (see
wenzelm@41624
   972
src/Tools/jEdit).  This also serves as IDE for Isabelle/ML, with
wenzelm@41624
   973
useful tooltips and hyperlinks produced from its static analysis.  The
wenzelm@41624
   974
bundled component provides an executable Isabelle tool that can be run
wenzelm@41624
   975
like this:
wenzelm@41624
   976
wenzelm@41624
   977
  Isabelle2011/bin/isabelle jedit
wenzelm@41573
   978
wenzelm@40948
   979
* Significantly improved Isabelle/Isar implementation manual.
wenzelm@40948
   980
wenzelm@41594
   981
* System settings: ISABELLE_HOME_USER now includes ISABELLE_IDENTIFIER
wenzelm@41595
   982
(and thus refers to something like $HOME/.isabelle/Isabelle2011),
wenzelm@41594
   983
while the default heap location within that directory lacks that extra
wenzelm@41594
   984
suffix.  This isolates multiple Isabelle installations from each
wenzelm@41594
   985
other, avoiding problems with old settings in new versions.
wenzelm@41594
   986
INCOMPATIBILITY, need to copy/upgrade old user settings manually.
wenzelm@41594
   987
wenzelm@40947
   988
* Source files are always encoded as UTF-8, instead of old-fashioned
wenzelm@40947
   989
ISO-Latin-1.  INCOMPATIBILITY.  Isabelle LaTeX documents might require
wenzelm@40948
   990
the following package declarations:
wenzelm@40947
   991
wenzelm@40947
   992
  \usepackage[utf8]{inputenc}
wenzelm@40947
   993
  \usepackage{textcomp}
wenzelm@40947
   994
krauss@41440
   995
* Explicit treatment of UTF-8 sequences as Isabelle symbols, such that
wenzelm@37553
   996
a Unicode character is treated as a single symbol, not a sequence of
wenzelm@37553
   997
non-ASCII bytes as before.  Since Isabelle/ML string literals may
wenzelm@37553
   998
contain symbols without further backslash escapes, Unicode can now be
wenzelm@37553
   999
used here as well.  Recall that Symbol.explode in ML provides a
wenzelm@37553
  1000
consistent view on symbols, while raw explode (or String.explode)
wenzelm@37553
  1001
merely give a byte-oriented representation.
wenzelm@37553
  1002
wenzelm@41594
  1003
* Theory loader: source files are primarily located via the master
wenzelm@41594
  1004
directory of each theory node (where the .thy file itself resides).
wenzelm@41594
  1005
The global load path is still partially available as legacy feature.
wenzelm@41594
  1006
Minor INCOMPATIBILITY due to subtle change in file lookup: use
wenzelm@41594
  1007
explicit paths, relatively to the theory.
wenzelm@38135
  1008
wenzelm@37942
  1009
* Special treatment of ML file names has been discontinued.
wenzelm@37942
  1010
Historically, optional extensions .ML or .sml were added on demand --
wenzelm@37942
  1011
at the cost of clarity of file dependencies.  Recall that Isabelle/ML
wenzelm@37942
  1012
files exclusively use the .ML extension.  Minor INCOMPATIBILTY.
wenzelm@37942
  1013
wenzelm@39039
  1014
* Various options that affect pretty printing etc. are now properly
wenzelm@38796
  1015
handled within the context via configuration options, instead of
wenzelm@40889
  1016
unsynchronized references or print modes.  There are both ML Config.T
wenzelm@40889
  1017
entities and Isar declaration attributes to access these.
wenzelm@38796
  1018
wenzelm@39125
  1019
  ML (Config.T)                 Isar (attribute)
wenzelm@39125
  1020
wenzelm@39128
  1021
  eta_contract                  eta_contract
wenzelm@39150
  1022
  show_brackets                 show_brackets
wenzelm@39147
  1023
  show_sorts                    show_sorts
wenzelm@39147
  1024
  show_types                    show_types
wenzelm@39126
  1025
  show_question_marks           show_question_marks
wenzelm@39126
  1026
  show_consts                   show_consts
wenzelm@40889
  1027
  show_abbrevs                  show_abbrevs
wenzelm@39126
  1028
wenzelm@41380
  1029
  Syntax.ast_trace              syntax_ast_trace
wenzelm@41380
  1030
  Syntax.ast_stat               syntax_ast_stat
wenzelm@39126
  1031
  Syntax.ambiguity_level        syntax_ambiguity_level
wenzelm@39126
  1032
wenzelm@39126
  1033
  Goal_Display.goals_limit      goals_limit
wenzelm@39126
  1034
  Goal_Display.show_main_goal   show_main_goal
wenzelm@39126
  1035
wenzelm@41380
  1036
  Method.rule_trace             rule_trace
wenzelm@41380
  1037
wenzelm@39125
  1038
  Thy_Output.display            thy_output_display
wenzelm@39125
  1039
  Thy_Output.quotes             thy_output_quotes
wenzelm@39125
  1040
  Thy_Output.indent             thy_output_indent
wenzelm@39125
  1041
  Thy_Output.source             thy_output_source
wenzelm@39125
  1042
  Thy_Output.break              thy_output_break
wenzelm@39125
  1043
krauss@41440
  1044
Note that corresponding "..._default" references in ML may only be
wenzelm@38796
  1045
changed globally at the ROOT session setup, but *not* within a theory.
wenzelm@40889
  1046
The option "show_abbrevs" supersedes the former print mode
wenzelm@40889
  1047
"no_abbrevs" with inverted meaning.
wenzelm@38796
  1048
wenzelm@40888
  1049
* More systematic naming of some configuration options.
huffman@41294
  1050
INCOMPATIBILITY.
wenzelm@40888
  1051
wenzelm@40888
  1052
  trace_simp  ~>  simp_trace
wenzelm@40888
  1053
  debug_simp  ~>  simp_debug
wenzelm@40888
  1054
wenzelm@40291
  1055
* Support for real valued configuration options, using simplistic
wenzelm@40291
  1056
floating-point notation that coincides with the inner syntax for
wenzelm@40291
  1057
float_token.
wenzelm@40291
  1058
wenzelm@41594
  1059
* Support for real valued preferences (with approximative PGIP type):
wenzelm@41594
  1060
front-ends need to accept "pgint" values in float notation.
wenzelm@41594
  1061
INCOMPATIBILITY.
wenzelm@41573
  1062
wenzelm@41573
  1063
* The IsabelleText font now includes Cyrillic, Hebrew, Arabic from
wenzelm@41573
  1064
DejaVu Sans.
wenzelm@41573
  1065
wenzelm@41594
  1066
* Discontinued support for Poly/ML 5.0 and 5.1 versions.
wenzelm@41594
  1067
wenzelm@40948
  1068
wenzelm@40948
  1069
*** Pure ***
wenzelm@40948
  1070
wenzelm@41249
  1071
* Command 'type_synonym' (with single argument) replaces somewhat
wenzelm@41249
  1072
outdated 'types', which is still available as legacy feature for some
wenzelm@41249
  1073
time.
wenzelm@41249
  1074
wenzelm@41249
  1075
* Command 'nonterminal' (with 'and' separated list of arguments)
wenzelm@41249
  1076
replaces somewhat outdated 'nonterminals'.  INCOMPATIBILITY.
wenzelm@41247
  1077
wenzelm@40965
  1078
* Command 'notepad' replaces former 'example_proof' for
wenzelm@41020
  1079
experimentation in Isar without any result.  INCOMPATIBILITY.
wenzelm@40965
  1080
ballarin@41435
  1081
* Locale interpretation commands 'interpret' and 'sublocale' accept
ballarin@41435
  1082
lists of equations to map definitions in a locale to appropriate
ballarin@41435
  1083
entities in the context of the interpretation.  The 'interpretation'
ballarin@41435
  1084
command already provided this functionality.
ballarin@41435
  1085
wenzelm@41594
  1086
* Diagnostic command 'print_dependencies' prints the locale instances
wenzelm@41594
  1087
that would be activated if the specified expression was interpreted in
wenzelm@41594
  1088
the current context.  Variant "print_dependencies!" assumes a context
wenzelm@41594
  1089
without interpretations.
ballarin@38110
  1090
ballarin@38110
  1091
* Diagnostic command 'print_interps' prints interpretations in proofs
ballarin@38110
  1092
in addition to interpretations in theories.
ballarin@38110
  1093
wenzelm@38710
  1094
* Discontinued obsolete 'global' and 'local' commands to manipulate
wenzelm@38710
  1095
the theory name space.  Rare INCOMPATIBILITY.  The ML functions
wenzelm@38710
  1096
Sign.root_path and Sign.local_path may be applied directly where this
wenzelm@38710
  1097
feature is still required for historical reasons.
wenzelm@38710
  1098
wenzelm@40948
  1099
* Discontinued obsolete 'constdefs' command.  INCOMPATIBILITY, use
haftmann@39199
  1100
'definition' instead.
haftmann@39199
  1101
wenzelm@41574
  1102
* The "prems" fact, which refers to the accidental collection of
wenzelm@41574
  1103
foundational premises in the context, is now explicitly marked as
wenzelm@41594
  1104
legacy feature and will be discontinued soon.  Consider using "assms"
wenzelm@41594
  1105
of the head statement or reference facts by explicit names.
wenzelm@41574
  1106
wenzelm@40803
  1107
* Document antiquotations @{class} and @{type} print classes and type
wenzelm@40803
  1108
constructors.
wenzelm@40803
  1109
wenzelm@40803
  1110
* Document antiquotation @{file} checks file/directory entries within
wenzelm@40803
  1111
the local file system.
haftmann@39305
  1112
ballarin@38110
  1113
haftmann@37362
  1114
*** HOL ***
haftmann@37362
  1115
wenzelm@41594
  1116
* Coercive subtyping: functions can be declared as coercions and type
wenzelm@41594
  1117
inference will add them as necessary upon input of a term.  Theory
wenzelm@41594
  1118
Complex_Main declares real :: nat => real and real :: int => real as
wenzelm@41594
  1119
coercions. A coercion function f is declared like this:
wenzelm@40939
  1120
wenzelm@40939
  1121
  declare [[coercion f]]
nipkow@40861
  1122
wenzelm@41571
  1123
To lift coercions through type constructors (e.g. from nat => real to
nipkow@40861
  1124
nat list => real list), map functions can be declared, e.g.
nipkow@40861
  1125
wenzelm@40939
  1126
  declare [[coercion_map map]]
wenzelm@40939
  1127
wenzelm@40939
  1128
Currently coercion inference is activated only in theories including
wenzelm@40939
  1129
real numbers, i.e. descendants of Complex_Main.  This is controlled by
wenzelm@41020
  1130
the configuration option "coercion_enabled", e.g. it can be enabled in
wenzelm@40939
  1131
other theories like this:
wenzelm@40939
  1132
wenzelm@40939
  1133
  declare [[coercion_enabled]]
nipkow@40861
  1134
wenzelm@41571
  1135
* Command 'partial_function' provides basic support for recursive
wenzelm@41571
  1136
function definitions over complete partial orders.  Concrete instances
krauss@40178
  1137
are provided for i) the option type, ii) tail recursion on arbitrary
wenzelm@41571
  1138
types, and iii) the heap monad of Imperative_HOL.  See
wenzelm@41571
  1139
src/HOL/ex/Fundefs.thy and src/HOL/Imperative_HOL/ex/Linked_Lists.thy
wenzelm@41571
  1140
for examples.
krauss@40178
  1141
wenzelm@41594
  1142
* Function package: f.psimps rules are no longer implicitly declared
wenzelm@41594
  1143
as [simp].  INCOMPATIBILITY.
wenzelm@41594
  1144
wenzelm@41594
  1145
* Datatype package: theorems generated for executable equality (class
wenzelm@41594
  1146
"eq") carry proper names and are treated as default code equations.
haftmann@41398
  1147
wenzelm@41571
  1148
* Inductive package: now offers command 'inductive_simps' to
haftmann@41398
  1149
automatically derive instantiated and simplified equations for
haftmann@41398
  1150
inductive predicates, similar to 'inductive_cases'.
haftmann@41398
  1151
wenzelm@41571
  1152
* Command 'enriched_type' allows to register properties of the
wenzelm@41571
  1153
functorial structure of types.
haftmann@39758
  1154
haftmann@39622
  1155
* Improved infrastructure for term evaluation using code generator
haftmann@39622
  1156
techniques, in particular static evaluation conversions.
haftmann@39622
  1157
wenzelm@41594
  1158
* Code generator: Scala (2.8 or higher) has been added to the target
wenzelm@41594
  1159
languages.
wenzelm@41594
  1160
haftmann@41398
  1161
* Code generator: globbing constant expressions "*" and "Theory.*"
haftmann@41398
  1162
have been replaced by the more idiomatic "_" and "Theory._".
haftmann@41398
  1163
INCOMPATIBILITY.
haftmann@41398
  1164
haftmann@41398
  1165
* Code generator: export_code without explicit file declaration prints
haftmann@41398
  1166
to standard output.  INCOMPATIBILITY.
haftmann@41398
  1167
haftmann@41398
  1168
* Code generator: do not print function definitions for case
haftmann@41398
  1169
combinators any longer.
haftmann@41398
  1170
wenzelm@41594
  1171
* Code generator: simplification with rules determined with
wenzelm@41571
  1172
src/Tools/Code/code_simp.ML and method "code_simp".
wenzelm@41571
  1173
wenzelm@41594
  1174
* Code generator for records: more idiomatic representation of record
wenzelm@41594
  1175
types.  Warning: records are not covered by ancient SML code
wenzelm@41594
  1176
generation any longer.  INCOMPATIBILITY.  In cases of need, a suitable
wenzelm@41594
  1177
rep_datatype declaration helps to succeed then:
wenzelm@41594
  1178
wenzelm@41594
  1179
  record 'a foo = ...
wenzelm@41594
  1180
  ...
wenzelm@41594
  1181
  rep_datatype foo_ext ...
wenzelm@41594
  1182
wenzelm@41571
  1183
* Records: logical foundation type for records does not carry a
wenzelm@41571
  1184
'_type' suffix any longer (obsolete due to authentic syntax).
wenzelm@41571
  1185
INCOMPATIBILITY.
wenzelm@40948
  1186
haftmann@41398
  1187
* Quickcheck now by default uses exhaustive testing instead of random
wenzelm@41571
  1188
testing.  Random testing can be invoked by "quickcheck [random]",
wenzelm@41571
  1189
exhaustive testing by "quickcheck [exhaustive]".
haftmann@41398
  1190
haftmann@41398
  1191
* Quickcheck instantiates polymorphic types with small finite
haftmann@41398
  1192
datatypes by default. This enables a simple execution mechanism to
haftmann@41398
  1193
handle quantifiers and function equality over the finite datatypes.
haftmann@41398
  1194
wenzelm@41571
  1195
* Quickcheck random generator has been renamed from "code" to
wenzelm@41571
  1196
"random".  INCOMPATIBILITY.
haftmann@41398
  1197
haftmann@41398
  1198
* Quickcheck now has a configurable time limit which is set to 30
haftmann@41398
  1199
seconds by default. This can be changed by adding [timeout = n] to the
haftmann@41398
  1200
quickcheck command. The time limit for Auto Quickcheck is still set
haftmann@41398
  1201
independently.
haftmann@38459
  1202
haftmann@38459
  1203
* Quickcheck in locales considers interpretations of that locale for
haftmann@38459
  1204
counter example search.
haftmann@38459
  1205
blanchet@39994
  1206
* Sledgehammer:
wenzelm@41571
  1207
  - Added "smt" and "remote_smt" provers based on the "smt" proof
wenzelm@41571
  1208
    method. See the Sledgehammer manual for details ("isabelle doc
wenzelm@41571
  1209
    sledgehammer").
blanchet@39994
  1210
  - Renamed commands:
blanchet@39994
  1211
    sledgehammer atp_info ~> sledgehammer running_provers
blanchet@39994
  1212
    sledgehammer atp_kill ~> sledgehammer kill_provers
blanchet@39994
  1213
    sledgehammer available_atps ~> sledgehammer available_provers
blanchet@39994
  1214
    INCOMPATIBILITY.
blanchet@39994
  1215
  - Renamed options:
blanchet@39994
  1216
    sledgehammer [atps = ...] ~> sledgehammer [provers = ...]
blanchet@39997
  1217
    sledgehammer [atp = ...] ~> sledgehammer [prover = ...]
blanchet@40336
  1218
    sledgehammer [timeout = 77 s] ~> sledgehammer [timeout = 77]
blanchet@40336
  1219
    (and "ms" and "min" are no longer supported)
blanchet@40336
  1220
    INCOMPATIBILITY.
blanchet@40336
  1221
blanchet@40336
  1222
* Nitpick:
blanchet@40336
  1223
  - Renamed options:
blanchet@40336
  1224
    nitpick [timeout = 77 s] ~> nitpick [timeout = 77]
blanchet@40336
  1225
    nitpick [tac_timeout = 777 ms] ~> nitpick [tac_timeout = 0.777]
blanchet@39994
  1226
    INCOMPATIBILITY.
blanchet@40720
  1227
  - Added support for partial quotient types.
blanchet@40720
  1228
  - Added local versions of the "Nitpick.register_xxx" functions.
blanchet@40720
  1229
  - Added "whack" option.
blanchet@40720
  1230
  - Allow registration of quotient types as codatatypes.
blanchet@40720
  1231
  - Improved "merge_type_vars" option to merge more types.
blanchet@40720
  1232
  - Removed unsound "fast_descrs" option.
blanchet@40720
  1233
  - Added custom symmetry breaking for datatypes, making it possible to reach
blanchet@40720
  1234
    higher cardinalities.
blanchet@40720
  1235
  - Prevent the expansion of too large definitions.
blanchet@39892
  1236
wenzelm@41571
  1237
* Proof methods "metis" and "meson" now have configuration options
wenzelm@41571
  1238
"meson_trace", "metis_trace", and "metis_verbose" that can be enabled
wenzelm@41571
  1239
to diagnose these tools. E.g.
wenzelm@41571
  1240
wenzelm@41571
  1241
    using [[metis_trace = true]]
wenzelm@41571
  1242
haftmann@41398
  1243
* Auto Solve: Renamed "Auto Solve Direct".  The tool is now available
haftmann@41398
  1244
manually as command 'solve_direct'.
haftmann@41398
  1245
boehmes@41598
  1246
* The default SMT solver Z3 must be enabled explicitly (due to
boehmes@41598
  1247
licensing issues) by setting the environment variable
wenzelm@41603
  1248
Z3_NON_COMMERCIAL in etc/settings of the component, for example.  For
wenzelm@41603
  1249
commercial applications, the SMT solver CVC3 is provided as fall-back;
wenzelm@41603
  1250
changing the SMT solver is done via the configuration option
wenzelm@41603
  1251
"smt_solver".
boehmes@41432
  1252
boehmes@41432
  1253
* Remote SMT solvers need to be referred to by the "remote_" prefix,
wenzelm@41571
  1254
i.e. "remote_cvc3" and "remote_z3".
wenzelm@41571
  1255
wenzelm@41571
  1256
* Added basic SMT support for datatypes, records, and typedefs using
wenzelm@41571
  1257
the oracle mode (no proofs).  Direct support of pairs has been dropped
wenzelm@41571
  1258
in exchange (pass theorems fst_conv snd_conv pair_collapse to the SMT
wenzelm@41571
  1259
support for a similar behavior).  Minor INCOMPATIBILITY.
boehmes@41432
  1260
boehmes@40157
  1261
* Changed SMT configuration options:
boehmes@40157
  1262
  - Renamed:
boehmes@41432
  1263
    z3_proofs ~> smt_oracle (with inverted meaning)
boehmes@40157
  1264
    z3_trace_assms ~> smt_trace_used_facts
boehmes@40157
  1265
    INCOMPATIBILITY.
boehmes@40157
  1266
  - Added:
boehmes@40405
  1267
    smt_verbose
boehmes@41432
  1268
    smt_random_seed
boehmes@40405
  1269
    smt_datatypes
boehmes@41432
  1270
    smt_infer_triggers
boehmes@41432
  1271
    smt_monomorph_limit
boehmes@40157
  1272
    cvc3_options
boehmes@41432
  1273
    remote_cvc3_options
boehmes@41432
  1274
    remote_z3_options
boehmes@40157
  1275
    yices_options
blanchet@39892
  1276
wenzelm@40948
  1277
* Boogie output files (.b2i files) need to be declared in the theory
wenzelm@40948
  1278
header.
boehmes@40572
  1279
wenzelm@41594
  1280
* Simplification procedure "list_to_set_comprehension" rewrites list
wenzelm@41594
  1281
comprehensions applied to List.set to set comprehensions.  Occasional
wenzelm@41594
  1282
INCOMPATIBILITY, may be deactivated like this:
wenzelm@41594
  1283
wenzelm@41594
  1284
  declare [[simproc del: list_to_set_comprehension]]
wenzelm@41594
  1285
wenzelm@41573
  1286
* Removed old version of primrec package.  INCOMPATIBILITY.
haftmann@41398
  1287
haftmann@41398
  1288
* Removed simplifier congruence rule of "prod_case", as has for long
haftmann@41398
  1289
been the case with "split".  INCOMPATIBILITY.
haftmann@41398
  1290
haftmann@41398
  1291
* String.literal is a type, but not a datatype.  INCOMPATIBILITY.
haftmann@41398
  1292
krauss@40388
  1293
* Removed [split_format ... and ... and ...] version of
krauss@40388
  1294
[split_format].  Potential INCOMPATIBILITY.
krauss@40388
  1295
wenzelm@41571
  1296
* Predicate "sorted" now defined inductively, with nice induction
wenzelm@41571
  1297
rules.  INCOMPATIBILITY: former sorted.simps now named sorted_simps.
haftmann@41398
  1298
haftmann@41398
  1299
* Constant "contents" renamed to "the_elem", to free the generic name
haftmann@41398
  1300
contents for other uses.  INCOMPATIBILITY.
haftmann@41398
  1301
haftmann@41398
  1302
* Renamed class eq and constant eq (for code generation) to class
haftmann@41398
  1303
equal and constant equal, plus renaming of related facts and various
haftmann@41398
  1304
tuning.  INCOMPATIBILITY.
haftmann@41398
  1305
haftmann@41398
  1306
* Dropped type classes mult_mono and mult_mono1.  INCOMPATIBILITY.
haftmann@41398
  1307
wenzelm@41571
  1308
* Removed output syntax "'a ~=> 'b" for "'a => 'b option".
wenzelm@41571
  1309
INCOMPATIBILITY.
haftmann@41398
  1310
haftmann@41398
  1311
* Renamed theory Fset to Cset, type Fset.fset to Cset.set, in order to
haftmann@41398
  1312
avoid confusion with finite sets.  INCOMPATIBILITY.
haftmann@41398
  1313
haftmann@41398
  1314
* Abandoned locales equiv, congruent and congruent2 for equivalence
haftmann@41398
  1315
relations.  INCOMPATIBILITY: use equivI rather than equiv_intro (same
haftmann@41398
  1316
for congruent(2)).
haftmann@41398
  1317
haftmann@41398
  1318
* Some previously unqualified names have been qualified:
haftmann@41398
  1319
haftmann@41398
  1320
  types
haftmann@41398
  1321
    bool ~> HOL.bool
haftmann@41398
  1322
    nat ~> Nat.nat
haftmann@41398
  1323
haftmann@41398
  1324
  constants
haftmann@41398
  1325
    Trueprop ~> HOL.Trueprop
haftmann@41398
  1326
    True ~> HOL.True
haftmann@41398
  1327
    False ~> HOL.False
haftmann@41398
  1328
    op & ~> HOL.conj
haftmann@41398
  1329
    op | ~> HOL.disj
haftmann@41398
  1330
    op --> ~> HOL.implies
haftmann@41398
  1331
    op = ~> HOL.eq
haftmann@41398
  1332
    Not ~> HOL.Not
haftmann@41398
  1333
    The ~> HOL.The
haftmann@41398
  1334
    All ~> HOL.All
haftmann@41398
  1335
    Ex ~> HOL.Ex
haftmann@41398
  1336
    Ex1 ~> HOL.Ex1
haftmann@41398
  1337
    Let ~> HOL.Let
haftmann@41398
  1338
    If ~> HOL.If
haftmann@41398
  1339
    Ball ~> Set.Ball
haftmann@41398
  1340
    Bex ~> Set.Bex
haftmann@41398
  1341
    Suc ~> Nat.Suc
haftmann@41398
  1342
    Pair ~> Product_Type.Pair
haftmann@41398
  1343
    fst ~> Product_Type.fst
haftmann@41398
  1344
    snd ~> Product_Type.snd
haftmann@41398
  1345
    curry ~> Product_Type.curry
haftmann@41398
  1346
    op : ~> Set.member
haftmann@41398
  1347
    Collect ~> Set.Collect
haftmann@41398
  1348
haftmann@41398
  1349
INCOMPATIBILITY.
haftmann@41398
  1350
haftmann@41398
  1351
* More canonical naming convention for some fundamental definitions:
haftmann@41398
  1352
haftmann@41398
  1353
    bot_bool_eq ~> bot_bool_def
haftmann@41398
  1354
    top_bool_eq ~> top_bool_def
haftmann@41398
  1355
    inf_bool_eq ~> inf_bool_def
haftmann@41398
  1356
    sup_bool_eq ~> sup_bool_def
haftmann@41398
  1357
    bot_fun_eq  ~> bot_fun_def
haftmann@41398
  1358
    top_fun_eq  ~> top_fun_def
haftmann@41398
  1359
    inf_fun_eq  ~> inf_fun_def
haftmann@41398
  1360
    sup_fun_eq  ~> sup_fun_def
haftmann@41398
  1361
haftmann@41398
  1362
INCOMPATIBILITY.
haftmann@41398
  1363
haftmann@41398
  1364
* More stylized fact names:
haftmann@41398
  1365
haftmann@41398
  1366
  expand_fun_eq ~> fun_eq_iff
haftmann@41398
  1367
  expand_set_eq ~> set_eq_iff
haftmann@41398
  1368
  set_ext       ~> set_eqI
haftmann@41398
  1369
  nat_number    ~> eval_nat_numeral
haftmann@41398
  1370
haftmann@41398
  1371
INCOMPATIBILITY.
haftmann@41398
  1372
wenzelm@41571
  1373
* Refactoring of code-generation specific operations in theory List:
haftmann@41398
  1374
haftmann@41398
  1375
  constants
haftmann@41398
  1376
    null ~> List.null
haftmann@41398
  1377
haftmann@41398
  1378
  facts
haftmann@41398
  1379
    mem_iff ~> member_def
haftmann@41398
  1380
    null_empty ~> null_def
haftmann@41398
  1381
haftmann@41398
  1382
INCOMPATIBILITY.  Note that these were not supposed to be used
haftmann@41398
  1383
regularly unless for striking reasons; their main purpose was code
haftmann@41398
  1384
generation.
haftmann@41398
  1385
haftmann@41398
  1386
Various operations from the Haskell prelude are used for generating
haftmann@41398
  1387
Haskell code.
haftmann@41398
  1388
wenzelm@41571
  1389
* Term "bij f" is now an abbreviation of "bij_betw f UNIV UNIV".  Term
wenzelm@41571
  1390
"surj f" is now an abbreviation of "range f = UNIV".  The theorems
wenzelm@41571
  1391
bij_def and surj_def are unchanged.  INCOMPATIBILITY.
haftmann@41398
  1392
haftmann@41398
  1393
* Abolished some non-alphabetic type names: "prod" and "sum" replace
haftmann@41398
  1394
"*" and "+" respectively.  INCOMPATIBILITY.
haftmann@41398
  1395
haftmann@41398
  1396
* Name "Plus" of disjoint sum operator "<+>" is now hidden.  Write
wenzelm@41571
  1397
"Sum_Type.Plus" instead.
haftmann@41398
  1398
haftmann@41398
  1399
* Constant "split" has been merged with constant "prod_case"; names of
haftmann@41398
  1400
ML functions, facts etc. involving split have been retained so far,
haftmann@41398
  1401
though.  INCOMPATIBILITY.
haftmann@41398
  1402
haftmann@41398
  1403
* Dropped old infix syntax "_ mem _" for List.member; use "_ : set _"
haftmann@41398
  1404
instead.  INCOMPATIBILITY.
haftmann@41398
  1405
wenzelm@41571
  1406
* Removed lemma "Option.is_none_none" which duplicates "is_none_def".
haftmann@41398
  1407
INCOMPATIBILITY.
haftmann@41398
  1408
wenzelm@41594
  1409
* Former theory Library/Enum is now part of the HOL-Main image.
wenzelm@41594
  1410
INCOMPATIBILITY: all constants of the Enum theory now have to be
wenzelm@41594
  1411
referred to by its qualified name.
wenzelm@41594
  1412
wenzelm@41594
  1413
  enum    ~>  Enum.enum
wenzelm@41594
  1414
  nlists  ~>  Enum.nlists
wenzelm@41594
  1415
  product ~>  Enum.product
wenzelm@41594
  1416
wenzelm@41594
  1417
* Theory Library/Monad_Syntax provides do-syntax for monad types.
wenzelm@41594
  1418
Syntax in Library/State_Monad has been changed to avoid ambiguities.
wenzelm@41594
  1419
INCOMPATIBILITY.
wenzelm@41594
  1420
wenzelm@41594
  1421
* Theory Library/SetsAndFunctions has been split into
wenzelm@41594
  1422
Library/Function_Algebras and Library/Set_Algebras; canonical names
wenzelm@41594
  1423
for instance definitions for functions; various improvements.
wenzelm@41594
  1424
INCOMPATIBILITY.
wenzelm@41594
  1425
wenzelm@41594
  1426
* Theory Library/Multiset provides stable quicksort implementation of
wenzelm@41594
  1427
sort_key.
wenzelm@41594
  1428
wenzelm@41594
  1429
* Theory Library/Multiset: renamed empty_idemp ~> empty_neutral.
wenzelm@41594
  1430
INCOMPATIBILITY.
wenzelm@41594
  1431
wenzelm@41594
  1432
* Session Multivariate_Analysis: introduced a type class for euclidean
wenzelm@41594
  1433
space.  Most theorems are now stated in terms of euclidean spaces
wenzelm@41594
  1434
instead of finite cartesian products.
wenzelm@41594
  1435
wenzelm@41594
  1436
  types
wenzelm@41594
  1437
    real ^ 'n ~>  'a::real_vector
wenzelm@41594
  1438
              ~>  'a::euclidean_space
wenzelm@41594
  1439
              ~>  'a::ordered_euclidean_space
wenzelm@41594
  1440
        (depends on your needs)
wenzelm@41594
  1441
wenzelm@41594
  1442
  constants
wenzelm@41594
  1443
     _ $ _        ~> _ $$ _
wenzelm@41594
  1444
     \<chi> x. _  ~> \<chi>\<chi> x. _
wenzelm@41594
  1445
     CARD('n)     ~> DIM('a)
wenzelm@41594
  1446
wenzelm@41594
  1447
Also note that the indices are now natural numbers and not from some
wenzelm@41594
  1448
finite type. Finite cartesian products of euclidean spaces, products
wenzelm@41594
  1449
of euclidean spaces the real and complex numbers are instantiated to
wenzelm@41594
  1450
be euclidean_spaces.  INCOMPATIBILITY.
wenzelm@41594
  1451
wenzelm@41594
  1452
* Session Probability: introduced pextreal as positive extended real
wenzelm@41594
  1453
numbers.  Use pextreal as value for measures.  Introduce the
wenzelm@41594
  1454
Radon-Nikodym derivative, product spaces and Fubini's theorem for
wenzelm@41594
  1455
arbitrary sigma finite measures.  Introduces Lebesgue measure based on
wenzelm@41594
  1456
the integral in Multivariate Analysis.  INCOMPATIBILITY.
wenzelm@41594
  1457
wenzelm@41594
  1458
* Session Imperative_HOL: revamped, corrected dozens of inadequacies.
wenzelm@41594
  1459
INCOMPATIBILITY.
wenzelm@41594
  1460
wenzelm@41594
  1461
* Session SPARK (with image HOL-SPARK) provides commands to load and
wenzelm@41594
  1462
prove verification conditions generated by the SPARK Ada program
wenzelm@41594
  1463
verifier.  See also src/HOL/SPARK and src/HOL/SPARK/Examples.
berghofe@41567
  1464
huffman@40621
  1465
ballarin@41433
  1466
*** HOL-Algebra ***
ballarin@41433
  1467
ballarin@41433
  1468
* Theorems for additive ring operations (locale abelian_monoid and
ballarin@41433
  1469
descendants) are generated by interpretation from their multiplicative
ballarin@41434
  1470
counterparts.  Names (in particular theorem names) have the mandatory
ballarin@41434
  1471
qualifier 'add'.  Previous theorem names are redeclared for
ballarin@41434
  1472
compatibility.
ballarin@41434
  1473
wenzelm@41571
  1474
* Structure "int_ring" is now an abbreviation (previously a
ballarin@41434
  1475
definition).  This fits more natural with advanced interpretations.
ballarin@41433
  1476
ballarin@41433
  1477
huffman@40621
  1478
*** HOLCF ***
huffman@40621
  1479
huffman@40621
  1480
* The domain package now runs in definitional mode by default: The
wenzelm@41571
  1481
former command 'new_domain' is now called 'domain'.  To use the domain
huffman@40621
  1482
package in its original axiomatic mode, use 'domain (unsafe)'.
huffman@40621
  1483
INCOMPATIBILITY.
huffman@40621
  1484
wenzelm@41571
  1485
* The new class "domain" is now the default sort.  Class "predomain"
wenzelm@41571
  1486
is an unpointed version of "domain". Theories can be updated by
wenzelm@41571
  1487
replacing sort annotations as shown below.  INCOMPATIBILITY.
huffman@40621
  1488
huffman@40621
  1489
  'a::type ~> 'a::countable
huffman@40621
  1490
  'a::cpo  ~> 'a::predomain
huffman@40621
  1491
  'a::pcpo ~> 'a::domain
huffman@40621
  1492
wenzelm@41571
  1493
* The old type class "rep" has been superseded by class "domain".
huffman@40621
  1494
Accordingly, users of the definitional package must remove any
wenzelm@41571
  1495
"default_sort rep" declarations.  INCOMPATIBILITY.
huffman@40621
  1496
huffman@41401
  1497
* The domain package (definitional mode) now supports unpointed
huffman@41401
  1498
predomain argument types, as long as they are marked 'lazy'. (Strict
wenzelm@41571
  1499
arguments must be in class "domain".) For example, the following
huffman@41401
  1500
domain definition now works:
huffman@41401
  1501
huffman@41401
  1502
  domain natlist = nil | cons (lazy "nat discr") (lazy "natlist")
huffman@41401
  1503
huffman@41401
  1504
* Theory HOLCF/Library/HOL_Cpo provides cpo and predomain class
wenzelm@41571
  1505
instances for types from main HOL: bool, nat, int, char, 'a + 'b,
wenzelm@41571
  1506
'a option, and 'a list.  Additionally, it configures fixrec and the
wenzelm@41571
  1507
domain package to work with these types.  For example:
huffman@41401
  1508
huffman@41401
  1509
  fixrec isInl :: "('a + 'b) u -> tr"
huffman@41401
  1510
    where "isInl$(up$(Inl x)) = TT" | "isInl$(up$(Inr y)) = FF"
huffman@41401
  1511
huffman@41401
  1512
  domain V = VFun (lazy "V -> V") | VCon (lazy "nat") (lazy "V list")
huffman@41401
  1513
wenzelm@41571
  1514
* The "(permissive)" option of fixrec has been replaced with a
wenzelm@41571
  1515
per-equation "(unchecked)" option. See
wenzelm@41571
  1516
src/HOL/HOLCF/Tutorial/Fixrec_ex.thy for examples. INCOMPATIBILITY.
wenzelm@41571
  1517
wenzelm@41571
  1518
* The "bifinite" class no longer fixes a constant "approx"; the class
wenzelm@41571
  1519
now just asserts that such a function exists.  INCOMPATIBILITY.
wenzelm@41571
  1520
wenzelm@41571
  1521
* Former type "alg_defl" has been renamed to "defl".  HOLCF no longer
huffman@41287
  1522
defines an embedding of type 'a defl into udom by default; instances
wenzelm@41571
  1523
of "bifinite" and "domain" classes are available in
wenzelm@41571
  1524
src/HOL/HOLCF/Library/Defl_Bifinite.thy.
wenzelm@41571
  1525
wenzelm@41571
  1526
* The syntax "REP('a)" has been replaced with "DEFL('a)".
wenzelm@41571
  1527
wenzelm@41571
  1528
* The predicate "directed" has been removed.  INCOMPATIBILITY.
wenzelm@41571
  1529
wenzelm@41571
  1530
* The type class "finite_po" has been removed.  INCOMPATIBILITY.
wenzelm@41571
  1531
wenzelm@41571
  1532
* The function "cprod_map" has been renamed to "prod_map".
huffman@41401
  1533
INCOMPATIBILITY.
huffman@41401
  1534
huffman@41401
  1535
* The monadic bind operator on each powerdomain has new binder syntax
wenzelm@41571
  1536
similar to sets, e.g. "\<Union>\<sharp>x\<in>xs. t" represents
wenzelm@41571
  1537
"upper_bind\<cdot>xs\<cdot>(\<Lambda> x. t)".
huffman@41401
  1538
huffman@41401
  1539
* The infix syntax for binary union on each powerdomain has changed
wenzelm@41571
  1540
from e.g. "+\<sharp>" to "\<union>\<sharp>", for consistency with set
wenzelm@41571
  1541
syntax.  INCOMPATIBILITY.
wenzelm@41571
  1542
wenzelm@41571
  1543
* The constant "UU" has been renamed to "bottom".  The syntax "UU" is
huffman@41429
  1544
still supported as an input translation.
huffman@41429
  1545
huffman@40621
  1546
* Renamed some theorems (the original names are also still available).
wenzelm@41571
  1547
huffman@40621
  1548
  expand_fun_below   ~> fun_below_iff
huffman@40621
  1549
  below_fun_ext      ~> fun_belowI
huffman@40621
  1550
  expand_cfun_eq     ~> cfun_eq_iff
huffman@40621
  1551
  ext_cfun           ~> cfun_eqI
huffman@40621
  1552
  expand_cfun_below  ~> cfun_below_iff
huffman@40621
  1553
  below_cfun_ext     ~> cfun_belowI
huffman@40621
  1554
  cont2cont_Rep_CFun ~> cont2cont_APP
huffman@40621
  1555
huffman@40621
  1556
* The Abs and Rep functions for various types have changed names.
wenzelm@40948
  1557
Related theorem names have also changed to match. INCOMPATIBILITY.
wenzelm@41571
  1558
huffman@40621
  1559
  Rep_CFun  ~> Rep_cfun
huffman@40621
  1560
  Abs_CFun  ~> Abs_cfun
huffman@40621
  1561
  Rep_Sprod ~> Rep_sprod
huffman@40621
  1562
  Abs_Sprod ~> Abs_sprod
huffman@40621
  1563
  Rep_Ssum  ~> Rep_ssum
huffman@40621
  1564
  Abs_Ssum  ~> Abs_ssum
huffman@40621
  1565
huffman@40621
  1566
* Lemmas with names of the form *_defined_iff or *_strict_iff have
wenzelm@41571
  1567
been renamed to *_bottom_iff.  INCOMPATIBILITY.
huffman@40621
  1568
huffman@40621
  1569
* Various changes to bisimulation/coinduction with domain package:
wenzelm@41571
  1570
wenzelm@41571
  1571
  - Definitions of "bisim" constants no longer mention definedness.
wenzelm@41571
  1572
  - With mutual recursion, "bisim" predicate is now curried.
huffman@40621
  1573
  - With mutual recursion, each type gets a separate coind theorem.
huffman@40621
  1574
  - Variable names in bisim_def and coinduct rules have changed.
wenzelm@41571
  1575
huffman@40621
  1576
INCOMPATIBILITY.
huffman@40621
  1577
wenzelm@41571
  1578
* Case combinators generated by the domain package for type "foo" are
wenzelm@41571
  1579
now named "foo_case" instead of "foo_when".  INCOMPATIBILITY.
huffman@40621
  1580
huffman@40771
  1581
* Several theorems have been renamed to more accurately reflect the
wenzelm@41571
  1582
names of constants and types involved.  INCOMPATIBILITY.
wenzelm@41571
  1583
huffman@40771
  1584
  thelub_const    ~> lub_const
huffman@40771
  1585
  lub_const       ~> is_lub_const
huffman@40771
  1586
  thelubI         ~> lub_eqI
huffman@40771
  1587
  is_lub_lub      ~> is_lubD2
huffman@40771
  1588
  lubI            ~> is_lub_lub
huffman@40771
  1589
  unique_lub      ~> is_lub_unique
huffman@40771
  1590
  is_ub_lub       ~> is_lub_rangeD1
huffman@40771
  1591
  lub_bin_chain   ~> is_lub_bin_chain
huffman@41030
  1592
  lub_fun         ~> is_lub_fun
huffman@41030
  1593
  thelub_fun      ~> lub_fun
huffman@41031
  1594
  thelub_cfun     ~> lub_cfun
huffman@40771
  1595
  thelub_Pair     ~> lub_Pair
huffman@40771
  1596
  lub_cprod       ~> is_lub_prod
huffman@40771
  1597
  thelub_cprod    ~> lub_prod
huffman@40771
  1598
  minimal_cprod   ~> minimal_prod
huffman@40771
  1599
  inst_cprod_pcpo ~> inst_prod_pcpo
huffman@41430
  1600
  UU_I            ~> bottomI
huffman@41430
  1601
  compact_UU      ~> compact_bottom
huffman@41430
  1602
  deflation_UU    ~> deflation_bottom
huffman@41430
  1603
  finite_deflation_UU ~> finite_deflation_bottom
huffman@40771
  1604
wenzelm@41571
  1605
* Many legacy theorem names have been discontinued.  INCOMPATIBILITY.
wenzelm@41571
  1606
huffman@40621
  1607
  sq_ord_less_eq_trans ~> below_eq_trans
huffman@40621
  1608
  sq_ord_eq_less_trans ~> eq_below_trans
huffman@40621
  1609
  refl_less            ~> below_refl
huffman@40621
  1610
  trans_less           ~> below_trans
huffman@40621
  1611
  antisym_less         ~> below_antisym
huffman@40621
  1612
  antisym_less_inverse ~> po_eq_conv [THEN iffD1]
huffman@40621
  1613
  box_less             ~> box_below
huffman@40621
  1614
  rev_trans_less       ~> rev_below_trans
huffman@40621
  1615
  not_less2not_eq      ~> not_below2not_eq
huffman@40621
  1616
  less_UU_iff          ~> below_UU_iff
huffman@40621
  1617
  flat_less_iff        ~> flat_below_iff
huffman@40621
  1618
  adm_less             ~> adm_below
huffman@40621
  1619
  adm_not_less         ~> adm_not_below
huffman@40621
  1620
  adm_compact_not_less ~> adm_compact_not_below
huffman@40621
  1621
  less_fun_def         ~> below_fun_def
huffman@40621
  1622
  expand_fun_less      ~> fun_below_iff
huffman@40621
  1623
  less_fun_ext         ~> fun_belowI
huffman@40621
  1624
  less_discr_def       ~> below_discr_def
huffman@40621
  1625
  discr_less_eq        ~> discr_below_eq
huffman@40621
  1626
  less_unit_def        ~> below_unit_def
huffman@40621
  1627
  less_cprod_def       ~> below_prod_def
huffman@40621
  1628
  prod_lessI           ~> prod_belowI
huffman@40621
  1629
  Pair_less_iff        ~> Pair_below_iff
huffman@40621
  1630
  fst_less_iff         ~> fst_below_iff
huffman@40621
  1631
  snd_less_iff         ~> snd_below_iff
huffman@40621
  1632
  expand_cfun_less     ~> cfun_below_iff
huffman@40621
  1633
  less_cfun_ext        ~> cfun_belowI
huffman@40621
  1634
  injection_less       ~> injection_below
huffman@40621
  1635
  less_up_def          ~> below_up_def
huffman@40621
  1636
  not_Iup_less         ~> not_Iup_below
huffman@40621
  1637
  Iup_less             ~> Iup_below
huffman@40621
  1638
  up_less              ~> up_below
huffman@40621
  1639
  Def_inject_less_eq   ~> Def_below_Def
huffman@40621
  1640
  Def_less_is_eq       ~> Def_below_iff
huffman@40621
  1641
  spair_less_iff       ~> spair_below_iff
huffman@40621
  1642
  less_sprod           ~> below_sprod
huffman@40621
  1643
  spair_less           ~> spair_below
huffman@40621
  1644
  sfst_less_iff        ~> sfst_below_iff
huffman@40621
  1645
  ssnd_less_iff        ~> ssnd_below_iff
huffman@40621
  1646
  fix_least_less       ~> fix_least_below
huffman@40621
  1647
  dist_less_one        ~> dist_below_one
huffman@40621
  1648
  less_ONE             ~> below_ONE
huffman@40621
  1649
  ONE_less_iff         ~> ONE_below_iff
huffman@40621
  1650
  less_sinlD           ~> below_sinlD
huffman@40621
  1651
  less_sinrD           ~> below_sinrD
huffman@40621
  1652
huffman@40621
  1653
wenzelm@40948
  1654
*** FOL and ZF ***
haftmann@38501
  1655
wenzelm@41310
  1656
* All constant names are now qualified internally and use proper
wenzelm@41310
  1657
identifiers, e.g. "IFOL.eq" instead of "op =".  INCOMPATIBILITY.
wenzelm@41310
  1658
haftmann@38501
  1659
wenzelm@37890
  1660
*** ML ***
wenzelm@37890
  1661
wenzelm@41594
  1662
* Antiquotation @{assert} inlines a function bool -> unit that raises
wenzelm@41594
  1663
Fail if the argument is false.  Due to inlining the source position of
wenzelm@41594
  1664
failed assertions is included in the error output.
wenzelm@41594
  1665
wenzelm@41594
  1666
* Discontinued antiquotation @{theory_ref}, which is obsolete since ML
wenzelm@41594
  1667
text is in practice always evaluated with a stable theory checkpoint.
wenzelm@41594
  1668
Minor INCOMPATIBILITY, use (Theory.check_thy @{theory}) instead.
wenzelm@41594
  1669
wenzelm@41594
  1670
* Antiquotation @{theory A} refers to theory A from the ancestry of
wenzelm@41594
  1671
the current context, not any accidental theory loader state as before.
wenzelm@41594
  1672
Potential INCOMPATIBILITY, subtle change in semantics.
wenzelm@41594
  1673
wenzelm@41594
  1674
* Syntax.pretty_priority (default 0) configures the required priority
wenzelm@41594
  1675
of pretty-printed output and thus affects insertion of parentheses.
wenzelm@41594
  1676
wenzelm@41594
  1677
* Syntax.default_root (default "any") configures the inner syntax
wenzelm@41594
  1678
category (nonterminal symbol) for parsing of terms.
wenzelm@41594
  1679
wenzelm@41594
  1680
* Former exception Library.UnequalLengths now coincides with
wenzelm@41594
  1681
ListPair.UnequalLengths.
wenzelm@41594
  1682
wenzelm@41246
  1683
* Renamed structure MetaSimplifier to Raw_Simplifier.  Note that the
wenzelm@41246
  1684
main functionality is provided by structure Simplifier.
wenzelm@41246
  1685
wenzelm@40627
  1686
* Renamed raw "explode" function to "raw_explode" to emphasize its
wenzelm@40627
  1687
meaning.  Note that internally to Isabelle, Symbol.explode is used in
wenzelm@40627
  1688
almost all situations.
wenzelm@40627
  1689
wenzelm@40329
  1690
* Discontinued obsolete function sys_error and exception SYS_ERROR.
wenzelm@40329
  1691
See implementation manual for further details on exceptions in
wenzelm@40329
  1692
Isabelle/ML.
wenzelm@40329
  1693
wenzelm@39616
  1694
* Renamed setmp_noncritical to Unsynchronized.setmp to emphasize its
wenzelm@39616
  1695
meaning.
wenzelm@39616
  1696
wenzelm@39568
  1697
* Renamed structure PureThy to Pure_Thy and moved most of its
wenzelm@39568
  1698
operations to structure Global_Theory, to emphasize that this is
wenzelm@39568
  1699
rarely-used global-only stuff.
wenzelm@39568
  1700
wenzelm@39536
  1701
* Discontinued Output.debug.  Minor INCOMPATIBILITY, use plain writeln
wenzelm@39536
  1702
instead (or tracing for high-volume output).
wenzelm@39536
  1703
wenzelm@39039
  1704
* Configuration option show_question_marks only affects regular pretty
wenzelm@39039
  1705
printing of types and terms, not raw Term.string_of_vname.
wenzelm@39039
  1706
wenzelm@39164
  1707
* ML_Context.thm and ML_Context.thms are no longer pervasive.  Rare
wenzelm@39164
  1708
INCOMPATIBILITY, superseded by static antiquotations @{thm} and
wenzelm@39164
  1709
@{thms} for most purposes.
wenzelm@39164
  1710
wenzelm@41594
  1711
* ML structure Unsynchronized is never opened, not even in Isar
wenzelm@39039
  1712
interaction mode as before.  Old Unsynchronized.set etc. have been
wenzelm@39039
  1713
discontinued -- use plain := instead.  This should be *rare* anyway,
wenzelm@39039
  1714
since modern tools always work via official context data, notably
wenzelm@39039
  1715
configuration options.
wenzelm@39039
  1716
wenzelm@39270
  1717
* Parallel and asynchronous execution requires special care concerning
wenzelm@39270
  1718
interrupts.  Structure Exn provides some convenience functions that
wenzelm@39270
  1719
avoid working directly with raw Interrupt.  User code must not absorb
wenzelm@39270
  1720
interrupts -- intermediate handling (for cleanup etc.) needs to be
wenzelm@39270
  1721
followed by re-raising of the original exception.  Another common
wenzelm@39270
  1722
source of mistakes are "handle _" patterns, which make the meaning of
wenzelm@39270
  1723
the program subject to physical effects of the environment.
wenzelm@39270
  1724
wenzelm@37890
  1725
wenzelm@37890
  1726
wenzelm@37144
  1727
New in Isabelle2009-2 (June 2010)
wenzelm@37144
  1728
---------------------------------
haftmann@33990
  1729
wenzelm@35260
  1730
*** General ***
wenzelm@35260
  1731
wenzelm@35546
  1732
* Authentic syntax for *all* logical entities (type classes, type
wenzelm@35546
  1733
constructors, term constants): provides simple and robust
wenzelm@35546
  1734
correspondence between formal entities and concrete syntax.  Within
wenzelm@35546
  1735
the parse tree / AST representations, "constants" are decorated by
wenzelm@35546
  1736
their category (class, type, const) and spelled out explicitly with
wenzelm@35546
  1737
their full internal name.
wenzelm@35546
  1738
wenzelm@35546
  1739
Substantial INCOMPATIBILITY concerning low-level syntax declarations
wenzelm@35546
  1740
and translations (translation rules and translation functions in ML).
wenzelm@35546
  1741
Some hints on upgrading:
wenzelm@35260
  1742
wenzelm@35260
  1743
  - Many existing uses of 'syntax' and 'translations' can be replaced
wenzelm@35546
  1744
    by more modern 'type_notation', 'notation' and 'abbreviation',
wenzelm@35546
  1745
    which are independent of this issue.
wenzelm@35260
  1746
wenzelm@35260
  1747
  - 'translations' require markup within the AST; the term syntax
wenzelm@35260
  1748
    provides the following special forms:
wenzelm@35260
  1749
wenzelm@35260
  1750
      CONST c   -- produces syntax version of constant c from context
wenzelm@35261
  1751
      XCONST c  -- literally c, checked as constant from context
wenzelm@35261
  1752
      c         -- literally c, if declared by 'syntax'
wenzelm@35261
  1753
wenzelm@35261
  1754
    Plain identifiers are treated as AST variables -- occasionally the
wenzelm@35261
  1755
    system indicates accidental variables via the error "rhs contains
wenzelm@35261
  1756
    extra variables".
wenzelm@35260
  1757
wenzelm@35546
  1758
    Type classes and type constructors are marked according to their
wenzelm@35546
  1759
    concrete syntax.  Some old translations rules need to be written
wenzelm@35546
  1760
    for the "type" category, using type constructor application
wenzelm@35546
  1761
    instead of pseudo-term application of the default category
wenzelm@35546
  1762
    "logic".
wenzelm@35546
  1763
wenzelm@35260
  1764
  - 'parse_translation' etc. in ML may use the following
wenzelm@35260
  1765
    antiquotations:
wenzelm@35260
  1766
wenzelm@35546
  1767
      @{class_syntax c}   -- type class c within parse tree / AST
wenzelm@35546
  1768
      @{term_syntax c}    -- type constructor c within parse tree / AST
wenzelm@35260
  1769
      @{const_syntax c}   -- ML version of "CONST c" above
wenzelm@35260
  1770
      @{syntax_const c}   -- literally c (checked wrt. 'syntax' declarations)
wenzelm@35260
  1771
wenzelm@35546
  1772
  - Literal types within 'typed_print_translations', i.e. those *not*
wenzelm@35546
  1773
    represented as pseudo-terms are represented verbatim.  Use @{class
wenzelm@35546
  1774
    c} or @{type_name c} here instead of the above syntax
wenzelm@35546
  1775
    antiquotations.
wenzelm@35546
  1776
wenzelm@35260
  1777
Note that old non-authentic syntax was based on unqualified base
wenzelm@35546
  1778
names, so all of the above "constant" names would coincide.  Recall
wenzelm@35546
  1779
that 'print_syntax' and ML_command "set Syntax.trace_ast" help to
wenzelm@35546
  1780
diagnose syntax problems.
wenzelm@35260
  1781
wenzelm@35352
  1782
* Type constructors admit general mixfix syntax, not just infix.
wenzelm@35352
  1783
wenzelm@36524
  1784
* Concrete syntax may be attached to local entities without a proof
wenzelm@36524
  1785
body, too.  This works via regular mixfix annotations for 'fix',
wenzelm@36524
  1786
'def', 'obtain' etc. or via the explicit 'write' command, which is
wenzelm@36524
  1787
similar to the 'notation' command in theory specifications.
wenzelm@36524
  1788
wenzelm@35129
  1789
* Discontinued unnamed infix syntax (legacy feature for many years) --
wenzelm@35130
  1790
need to specify constant name and syntax separately.  Internal ML
wenzelm@35130
  1791
datatype constructors have been renamed from InfixName to Infix etc.
wenzelm@35130
  1792
Minor INCOMPATIBILITY.
wenzelm@35129
  1793
wenzelm@37351
  1794
* Schematic theorem statements need to be explicitly markup as such,
wenzelm@37351
  1795
via commands 'schematic_lemma', 'schematic_theorem',
wenzelm@37351
  1796
'schematic_corollary'.  Thus the relevance of the proof is made
wenzelm@37351
  1797
syntactically clear, which impacts performance in a parallel or
wenzelm@37351
  1798
asynchronous interactive environment.  Minor INCOMPATIBILITY.
wenzelm@37351
  1799
wenzelm@37351
  1800
* Use of cumulative prems via "!" in some proof methods has been
wenzelm@37351
  1801
discontinued (old legacy feature).
wenzelm@37351
  1802
wenzelm@37351
  1803
* References 'trace_simp' and 'debug_simp' have been replaced by
wenzelm@37351
  1804
configuration options stored in the context. Enabling tracing (the
wenzelm@37351
  1805
case of debugging is similar) in proofs works via
wenzelm@37351
  1806
wenzelm@37351
  1807
  using [[trace_simp = true]]
wenzelm@37351
  1808
wenzelm@37351
  1809
Tracing is then active for all invocations of the simplifier in
wenzelm@37351
  1810
subsequent goal refinement steps. Tracing may also still be enabled or
wenzelm@40780
  1811
disabled via the ProofGeneral settings menu.
wenzelm@37351
  1812
wenzelm@37351
  1813
* Separate commands 'hide_class', 'hide_type', 'hide_const',
wenzelm@37351
  1814
'hide_fact' replace the former 'hide' KIND command.  Minor
wenzelm@37351
  1815
INCOMPATIBILITY.
wenzelm@37351
  1816
wenzelm@37351
  1817
* Improved parallelism of proof term normalization: usedir -p2 -q0 is
wenzelm@37351
  1818
more efficient than combinations with -q1 or -q2.
wenzelm@37351
  1819
wenzelm@37351
  1820
wenzelm@37351
  1821
*** Pure ***
wenzelm@37351
  1822
wenzelm@37351
  1823
* Proofterms record type-class reasoning explicitly, using the
wenzelm@37351
  1824
"unconstrain" operation internally.  This eliminates all sort
wenzelm@37351
  1825
constraints from a theorem and proof, introducing explicit
wenzelm@37351
  1826
OFCLASS-premises.  On the proof term level, this operation is
wenzelm@37351
  1827
automatically applied at theorem boundaries, such that closed proofs
wenzelm@37351
  1828
are always free of sort constraints.  INCOMPATIBILITY for tools that
wenzelm@37351
  1829
inspect proof terms.
wenzelm@37351
  1830
wenzelm@37351
  1831
* Local theory specifications may depend on extra type variables that
wenzelm@37351
  1832
are not present in the result type -- arguments TYPE('a) :: 'a itself
wenzelm@37351
  1833
are added internally.  For example:
wenzelm@37351
  1834
wenzelm@37351
  1835
  definition unitary :: bool where "unitary = (ALL (x::'a) y. x = y)"
wenzelm@37351
  1836
wenzelm@37351
  1837
* Predicates of locales introduced by classes carry a mandatory
wenzelm@37351
  1838
"class" prefix.  INCOMPATIBILITY.
wenzelm@37351
  1839
wenzelm@37351
  1840
* Vacuous class specifications observe default sort.  INCOMPATIBILITY.
wenzelm@37351
  1841
wenzelm@37351
  1842
* Old 'axclass' command has been discontinued.  INCOMPATIBILITY, use
wenzelm@37351
  1843
'class' instead.
wenzelm@37351
  1844
wenzelm@37351
  1845
* Command 'code_reflect' allows to incorporate generated ML code into
wenzelm@37351
  1846
runtime environment; replaces immature code_datatype antiquotation.
wenzelm@37351
  1847
INCOMPATIBILITY.
wenzelm@37351
  1848
wenzelm@37351
  1849
* Code generator: simple concept for abstract datatypes obeying
wenzelm@37351
  1850
invariants.
wenzelm@37351
  1851
wenzelm@37351
  1852
* Code generator: details of internal data cache have no impact on the
wenzelm@37351
  1853
user space functionality any longer.
wenzelm@37351
  1854
wenzelm@37351
  1855
* Methods "unfold_locales" and "intro_locales" ignore non-locale
wenzelm@37351
  1856
subgoals.  This is more appropriate for interpretations with 'where'.
wenzelm@37351
  1857
INCOMPATIBILITY.
wenzelm@37351
  1858
wenzelm@36366
  1859
* Command 'example_proof' opens an empty proof body.  This allows to
wenzelm@36366
  1860
experiment with Isar, without producing any persistent result.
wenzelm@36366
  1861
wenzelm@35418
  1862
* Commands 'type_notation' and 'no_type_notation' declare type syntax
wenzelm@35418
  1863
within a local theory context, with explicit checking of the
wenzelm@35418
  1864
constructors involved (in contrast to the raw 'syntax' versions).
wenzelm@35418
  1865
wenzelm@36178
  1866
* Commands 'types' and 'typedecl' now work within a local theory
wenzelm@36178
  1867
context -- without introducing dependencies on parameters or
wenzelm@36178
  1868
assumptions, which is not possible in Isabelle/Pure.
wenzelm@35681
  1869
wenzelm@36857
  1870
* Command 'defaultsort' has been renamed to 'default_sort', it works
wenzelm@36857
  1871
within a local theory context.  Minor INCOMPATIBILITY.
wenzelm@36454
  1872
haftmann@34157
  1873
haftmann@33990
  1874
*** HOL ***
haftmann@33990
  1875
wenzelm@37351
  1876
* Command 'typedef' now works within a local theory context -- without
wenzelm@37351
  1877
introducing dependencies on parameters or assumptions, which is not
wenzelm@37351
  1878
possible in Isabelle/Pure/HOL.  Note that the logical environment may
wenzelm@37351
  1879
contain multiple interpretations of local typedefs (with different
wenzelm@37351
  1880
non-emptiness proofs), even in a global theory context.
wenzelm@37351
  1881
wenzelm@37351
  1882
* New package for quotient types.  Commands 'quotient_type' and
wenzelm@37351
  1883
'quotient_definition' may be used for defining types and constants by
wenzelm@37351
  1884
quotient constructions.  An example is the type of integers created by
wenzelm@37351
  1885
quotienting pairs of natural numbers:
wenzelm@37481
  1886
wenzelm@37351
  1887
  fun
wenzelm@37481
  1888
    intrel :: "(nat * nat) => (nat * nat) => bool"
wenzelm@37351
  1889
  where
wenzelm@37351
  1890
    "intrel (x, y) (u, v) = (x + v = u + y)"
wenzelm@37351
  1891
wenzelm@37481
  1892
  quotient_type int = "nat * nat" / intrel
wenzelm@37351
  1893
    by (auto simp add: equivp_def expand_fun_eq)
wenzelm@37481
  1894
wenzelm@37351
  1895
  quotient_definition
wenzelm@37351
  1896
    "0::int" is "(0::nat, 0::nat)"
wenzelm@37351
  1897
wenzelm@37351
  1898
The method "lifting" can be used to lift of theorems from the
wenzelm@37351
  1899
underlying "raw" type to the quotient type.  The example
wenzelm@37351
  1900
src/HOL/Quotient_Examples/FSet.thy includes such a quotient
wenzelm@37351
  1901
construction and provides a reasoning infrastructure for finite sets.
wenzelm@37351
  1902
wenzelm@37351
  1903
* Renamed Library/Quotient.thy to Library/Quotient_Type.thy to avoid
wenzelm@37351
  1904
clash with new theory Quotient in Main HOL.
wenzelm@37351
  1905
wenzelm@37351
  1906
* Moved the SMT binding into the main HOL session, eliminating
wenzelm@37351
  1907
separate HOL-SMT session.
wenzelm@37351
  1908
haftmann@37012
  1909
* List membership infix mem operation is only an input abbreviation.
haftmann@37012
  1910
INCOMPATIBILITY.
haftmann@37012
  1911
wenzelm@37144
  1912
* Theory Library/Word.thy has been removed.  Use library Word/Word.thy
wenzelm@37144
  1913
for future developements; former Library/Word.thy is still present in
wenzelm@37144
  1914
the AFP entry RSAPPS.
haftmann@36956
  1915
wenzelm@36857
  1916
* Theorem Int.int_induct renamed to Int.int_of_nat_induct and is no
wenzelm@36857
  1917
longer shadowed.  INCOMPATIBILITY.
haftmann@36802
  1918
huffman@36831
  1919
* Dropped theorem duplicate comp_arith; use semiring_norm instead.
huffman@36831
  1920
INCOMPATIBILITY.
huffman@36831
  1921
huffman@36831
  1922
* Dropped theorem RealPow.real_sq_order; use power2_le_imp_le instead.
huffman@36831
  1923
INCOMPATIBILITY.
haftmann@36699
  1924
wenzelm@36857
  1925
* Dropped normalizing_semiring etc; use the facts in semiring classes
wenzelm@36857
  1926
instead.  INCOMPATIBILITY.
wenzelm@36857
  1927
huffman@36979
  1928
* Dropped several real-specific versions of lemmas about floor and
wenzelm@37351
  1929
ceiling; use the generic lemmas from theory "Archimedean_Field"
wenzelm@37351
  1930
instead.  INCOMPATIBILITY.
huffman@36979
  1931
huffman@36979
  1932
  floor_number_of_eq         ~> floor_number_of
huffman@36979
  1933
  le_floor_eq_number_of      ~> number_of_le_floor
huffman@36979
  1934
  le_floor_eq_zero           ~> zero_le_floor
huffman@36979
  1935
  le_floor_eq_one            ~> one_le_floor
huffman@36979
  1936
  floor_less_eq_number_of    ~> floor_less_number_of
huffman@36979
  1937
  floor_less_eq_zero         ~> floor_less_zero
huffman@36979
  1938
  floor_less_eq_one          ~> floor_less_one
huffman@36979
  1939
  less_floor_eq_number_of    ~> number_of_less_floor
huffman@36979
  1940
  less_floor_eq_zero         ~> zero_less_floor
huffman@36979
  1941
  less_floor_eq_one          ~> one_less_floor
huffman@36979
  1942
  floor_le_eq_number_of      ~> floor_le_number_of
huffman@36979
  1943
  floor_le_eq_zero           ~> floor_le_zero
huffman@36979
  1944
  floor_le_eq_one            ~> floor_le_one
huffman@36979
  1945
  floor_subtract_number_of   ~> floor_diff_number_of
huffman@36979
  1946
  floor_subtract_one         ~> floor_diff_one
huffman@36979
  1947
  ceiling_number_of_eq       ~> ceiling_number_of
huffman@36979
  1948
  ceiling_le_eq_number_of    ~> ceiling_le_number_of
huffman@36979
  1949
  ceiling_le_zero_eq         ~> ceiling_le_zero
huffman@36979
  1950
  ceiling_le_eq_one          ~> ceiling_le_one
huffman@36979
  1951
  less_ceiling_eq_number_of  ~> number_of_less_ceiling
huffman@36979
  1952
  less_ceiling_eq_zero       ~> zero_less_ceiling
huffman@36979
  1953
  less_ceiling_eq_one        ~> one_less_ceiling
huffman@36979
  1954
  ceiling_less_eq_number_of  ~> ceiling_less_number_of
huffman@36979
  1955
  ceiling_less_eq_zero       ~> ceiling_less_zero
huffman@36979
  1956
  ceiling_less_eq_one        ~> ceiling_less_one
huffman@36979
  1957
  le_ceiling_eq_number_of    ~> number_of_le_ceiling
huffman@36979
  1958
  le_ceiling_eq_zero         ~> zero_le_ceiling
huffman@36979
  1959
  le_ceiling_eq_one          ~> one_le_ceiling
huffman@36979
  1960
  ceiling_subtract_number_of ~> ceiling_diff_number_of
huffman@36979
  1961
  ceiling_subtract_one       ~> ceiling_diff_one
huffman@36979
  1962
wenzelm@37144
  1963
* Theory "Finite_Set": various folding_XXX locales facilitate the
wenzelm@36857
  1964
application of the various fold combinators on finite sets.
wenzelm@36857
  1965
wenzelm@36857
  1966
* Library theory "RBT" renamed to "RBT_Impl"; new library theory "RBT"
wenzelm@36857
  1967
provides abstract red-black tree type which is backed by "RBT_Impl" as
wenzelm@36857
  1968
implementation.  INCOMPATIBILTY.
haftmann@36147
  1969
huffman@36825
  1970
* Theory Library/Coinductive_List has been removed -- superseded by
wenzelm@35763
  1971
AFP/thys/Coinductive.
wenzelm@35763
  1972
huffman@36824
  1973
* Theory PReal, including the type "preal" and related operations, has
huffman@36824
  1974
been removed.  INCOMPATIBILITY.
huffman@36824
  1975
wenzelm@37481
  1976
* Real: new development using Cauchy Sequences.
wenzelm@37481
  1977
wenzelm@37351
  1978
* Split off theory "Big_Operators" containing setsum, setprod,
wenzelm@37351
  1979
Inf_fin, Sup_fin, Min, Max from theory Finite_Set.  INCOMPATIBILITY.
wenzelm@36857
  1980
wenzelm@36857
  1981
* Theory "Rational" renamed to "Rat", for consistency with "Nat",
wenzelm@36857
  1982
"Int" etc.  INCOMPATIBILITY.
wenzelm@36857
  1983
wenzelm@37351
  1984
* Constant Rat.normalize needs to be qualified.  INCOMPATIBILITY.
wenzelm@37143
  1985
wenzelm@36857
  1986
* New set of rules "ac_simps" provides combined assoc / commute
wenzelm@36857
  1987
rewrites for all interpretations of the appropriate generic locales.
wenzelm@36857
  1988
wenzelm@36857
  1989
* Renamed theory "OrderedGroup" to "Groups" and split theory
wenzelm@36857
  1990
"Ring_and_Field" into theories "Rings" and "Fields"; for more
wenzelm@36857
  1991
appropriate and more consistent names suitable for name prefixes
wenzelm@36857
  1992
within the HOL theories.  INCOMPATIBILITY.
wenzelm@36857
  1993
wenzelm@36857
  1994
* Some generic constants have been put to appropriate theories:
wenzelm@36857
  1995
  - less_eq, less: Orderings
wenzelm@36857
  1996
  - zero, one, plus, minus, uminus, times, abs, sgn: Groups
wenzelm@36857
  1997
  - inverse, divide: Rings
haftmann@35372
  1998
INCOMPATIBILITY.
haftmann@35372
  1999
wenzelm@36857
  2000
* More consistent naming of type classes involving orderings (and
wenzelm@36857
  2001
lattices):
haftmann@35027
  2002
haftmann@35027
  2003
    lower_semilattice                   ~> semilattice_inf
haftmann@35027
  2004
    upper_semilattice                   ~> semilattice_sup
haftmann@35027
  2005
haftmann@35027
  2006
    dense_linear_order                  ~> dense_linorder
haftmann@35027
  2007
haftmann@35027
  2008
    pordered_ab_group_add               ~> ordered_ab_group_add
haftmann@35027
  2009
    pordered_ab_group_add_abs           ~> ordered_ab_group_add_abs
haftmann@35027
  2010
    pordered_ab_semigroup_add           ~> ordered_ab_semigroup_add
haftmann@35027
  2011
    pordered_ab_semigroup_add_imp_le    ~> ordered_ab_semigroup_add_imp_le
haftmann@35027
  2012
    pordered_cancel_ab_semigroup_add    ~> ordered_cancel_ab_semigroup_add
haftmann@35027
  2013
    pordered_cancel_comm_semiring       ~> ordered_cancel_comm_semiring
haftmann@35027
  2014
    pordered_cancel_semiring            ~> ordered_cancel_semiring
haftmann@35027
  2015
    pordered_comm_monoid_add            ~> ordered_comm_monoid_add
haftmann@35027
  2016
    pordered_comm_ring                  ~> ordered_comm_ring
haftmann@35027
  2017
    pordered_comm_semiring              ~> ordered_comm_semiring
haftmann@35027
  2018
    pordered_ring                       ~> ordered_ring
haftmann@35027
  2019
    pordered_ring_abs                   ~> ordered_ring_abs
haftmann@35027
  2020
    pordered_semiring                   ~> ordered_semiring
haftmann@35027
  2021
haftmann@35027
  2022
    ordered_ab_group_add                ~> linordered_ab_group_add
haftmann@35027
  2023
    ordered_ab_semigroup_add            ~> linordered_ab_semigroup_add
haftmann@35027
  2024
    ordered_cancel_ab_semigroup_add     ~> linordered_cancel_ab_semigroup_add
haftmann@35027
  2025
    ordered_comm_semiring_strict        ~> linordered_comm_semiring_strict
haftmann@35027
  2026
    ordered_field                       ~> linordered_field
haftmann@35027
  2027
    ordered_field_no_lb                 ~> linordered_field_no_lb
haftmann@35027
  2028
    ordered_field_no_ub                 ~> linordered_field_no_ub
haftmann@35027
  2029
    ordered_field_dense_linear_order    ~> dense_linordered_field
haftmann@35027
  2030
    ordered_idom                        ~> linordered_idom
haftmann@35027
  2031
    ordered_ring                        ~> linordered_ring
haftmann@35027
  2032
    ordered_ring_le_cancel_factor       ~> linordered_ring_le_cancel_factor
haftmann@35027
  2033
    ordered_ring_less_cancel_factor     ~> linordered_ring_less_cancel_factor
haftmann@35027
  2034
    ordered_ring_strict                 ~> linordered_ring_strict
haftmann@35027
  2035
    ordered_semidom                     ~> linordered_semidom
haftmann@35027
  2036
    ordered_semiring                    ~> linordered_semiring
haftmann@35027
  2037
    ordered_semiring_1                  ~> linordered_semiring_1
haftmann@35027
  2038
    ordered_semiring_1_strict           ~> linordered_semiring_1_strict
haftmann@35027
  2039
    ordered_semiring_strict             ~> linordered_semiring_strict
haftmann@35027
  2040
wenzelm@36857
  2041
  The following slightly odd type classes have been moved to a
wenzelm@37351
  2042
  separate theory Library/Lattice_Algebras:
haftmann@35032
  2043
haftmann@35032
  2044
    lordered_ab_group_add               ~> lattice_ab_group_add
haftmann@35032
  2045
    lordered_ab_group_add_abs           ~> lattice_ab_group_add_abs
haftmann@35032
  2046
    lordered_ab_group_add_meet          ~> semilattice_inf_ab_group_add
haftmann@35032
  2047
    lordered_ab_group_add_join          ~> semilattice_sup_ab_group_add
haftmann@35032
  2048
    lordered_ring                       ~> lattice_ring
haftmann@35032
  2049
haftmann@35027
  2050
INCOMPATIBILITY.
haftmann@35027
  2051
haftmann@36416
  2052
* Refined field classes:
wenzelm@36857
  2053
  - classes division_ring_inverse_zero, field_inverse_zero,
wenzelm@36857
  2054
    linordered_field_inverse_zero include rule inverse 0 = 0 --
wenzelm@36857
  2055
    subsumes former division_by_zero class;
wenzelm@36857
  2056
  - numerous lemmas have been ported from field to division_ring.
wenzelm@36857
  2057
INCOMPATIBILITY.
haftmann@36416
  2058
haftmann@36416
  2059
* Refined algebra theorem collections:
wenzelm@36857
  2060
  - dropped theorem group group_simps, use algebra_simps instead;
wenzelm@36857
  2061
  - dropped theorem group ring_simps, use field_simps instead;
wenzelm@36857
  2062
  - proper theorem collection field_simps subsumes former theorem
wenzelm@36857
  2063
    groups field_eq_simps and field_simps;
wenzelm@36857
  2064
  - dropped lemma eq_minus_self_iff which is a duplicate for
wenzelm@36857
  2065
    equal_neg_zero.
wenzelm@36857
  2066
INCOMPATIBILITY.
wenzelm@35009
  2067
wenzelm@35009
  2068
* Theory Finite_Set and List: some lemmas have been generalized from
wenzelm@34076
  2069
sets to lattices:
wenzelm@34076
  2070
haftmann@33998
  2071
  fun_left_comm_idem_inter      ~> fun_left_comm_idem_inf
haftmann@33998
  2072
  fun_left_comm_idem_union      ~> fun_left_comm_idem_sup
haftmann@33998
  2073
  inter_Inter_fold_inter        ~> inf_Inf_fold_inf
haftmann@33998
  2074
  union_Union_fold_union        ~> sup_Sup_fold_sup
haftmann@33998
  2075
  Inter_fold_inter              ~> Inf_fold_inf
haftmann@33998
  2076
  Union_fold_union              ~> Sup_fold_sup
haftmann@33998
  2077
  inter_INTER_fold_inter        ~> inf_INFI_fold_inf
haftmann@33998
  2078
  union_UNION_fold_union        ~> sup_SUPR_fold_sup
haftmann@33998
  2079
  INTER_fold_inter              ~> INFI_fold_inf
haftmann@33998
  2080
  UNION_fold_union              ~> SUPR_fold_sup
haftmann@33998
  2081
wenzelm@44973
  2082
* Theory "Complete_Lattice": lemmas top_def and bot_def have been
wenzelm@44973
  2083
replaced by the more convenient lemmas Inf_empty and Sup_empty.
wenzelm@44973
  2084
Dropped lemmas Inf_insert_simp and Sup_insert_simp, which are subsumed
wenzelm@44973
  2085
by Inf_insert and Sup_insert.  Lemmas Inf_UNIV and Sup_UNIV replace
wenzelm@44973
  2086
former Inf_Univ and Sup_Univ.  Lemmas inf_top_right and sup_bot_right
wenzelm@44973
  2087
subsume inf_top and sup_bot respectively.  INCOMPATIBILITY.
haftmann@36416
  2088
wenzelm@36857
  2089
* Reorganized theory Multiset: swapped notation of pointwise and
wenzelm@36857
  2090
multiset order:
wenzelm@37351
  2091
wenzelm@36857
  2092
  - pointwise ordering is instance of class order with standard syntax
wenzelm@36857
  2093
    <= and <;
wenzelm@36857
  2094
  - multiset ordering has syntax <=# and <#; partial order properties
wenzelm@36857
  2095
    are provided by means of interpretation with prefix
wenzelm@36857
  2096
    multiset_order;
wenzelm@36857
  2097
  - less duplication, less historical organization of sections,
wenzelm@36857
  2098
    conversion from associations lists to multisets, rudimentary code
wenzelm@36857
  2099
    generation;
wenzelm@36857
  2100
  - use insert_DiffM2 [symmetric] instead of elem_imp_eq_diff_union,
wenzelm@36857
  2101
    if needed.
wenzelm@37351
  2102
nipkow@36895
  2103
Renamed:
wenzelm@37351
  2104
wenzelm@37351
  2105
  multiset_eq_conv_count_eq  ~>  multiset_ext_iff
wenzelm@37351
  2106
  multi_count_ext  ~>  multiset_ext
wenzelm@37351
  2107
  diff_union_inverse2  ~>  diff_union_cancelR
wenzelm@37351
  2108
wenzelm@36857
  2109
INCOMPATIBILITY.
haftmann@36416
  2110
nipkow@36895
  2111
* Theory Permutation: replaced local "remove" by List.remove1.
nipkow@36895
  2112
haftmann@36416
  2113
* Code generation: ML and OCaml code is decorated with signatures.
haftmann@36416
  2114
wenzelm@35009
  2115
* Theory List: added transpose.
wenzelm@35009
  2116
huffman@35810
  2117
* Library/Nat_Bijection.thy is a collection of bijective functions
huffman@35810
  2118
between nat and other types, which supersedes the older libraries
huffman@35810
  2119
Library/Nat_Int_Bij.thy and HOLCF/NatIso.thy.  INCOMPATIBILITY.
huffman@35810
  2120
huffman@35810
  2121
  Constants:
huffman@35810
  2122
  Nat_Int_Bij.nat2_to_nat         ~> prod_encode
huffman@35810
  2123
  Nat_Int_Bij.nat_to_nat2         ~> prod_decode
huffman@35810
  2124
  Nat_Int_Bij.int_to_nat_bij      ~> int_encode
huffman@35810
  2125
  Nat_Int_Bij.nat_to_int_bij      ~> int_decode
huffman@35810
  2126
  Countable.pair_encode           ~> prod_encode
huffman@35810
  2127
  NatIso.prod2nat                 ~> prod_encode
huffman@35810
  2128
  NatIso.nat2prod                 ~> prod_decode
huffman@35810
  2129
  NatIso.sum2nat                  ~> sum_encode
huffman@35810
  2130
  NatIso.nat2sum                  ~> sum_decode
huffman@35810
  2131
  NatIso.list2nat                 ~> list_encode
huffman@35810
  2132
  NatIso.nat2list                 ~> list_decode
huffman@35810
  2133
  NatIso.set2nat                  ~> set_encode
huffman@35810
  2134
  NatIso.nat2set                  ~> set_decode
huffman@35810
  2135
huffman@35810
  2136
  Lemmas:
huffman@35810
  2137
  Nat_Int_Bij.bij_nat_to_int_bij  ~> bij_int_decode
huffman@35810
  2138
  Nat_Int_Bij.nat2_to_nat_inj     ~> inj_prod_encode
huffman@35810
  2139
  Nat_Int_Bij.nat2_to_nat_surj    ~> surj_prod_encode
huffman@35810
  2140
  Nat_Int_Bij.nat_to_nat2_inj     ~> inj_prod_decode
huffman@35810
  2141
  Nat_Int_Bij.nat_to_nat2_surj    ~> surj_prod_decode
huffman@35810
  2142
  Nat_Int_Bij.i2n_n2i_id          ~> int_encode_inverse
huffman@35810
  2143
  Nat_Int_Bij.n2i_i2n_id          ~> int_decode_inverse
huffman@35810
  2144
  Nat_Int_Bij.surj_nat_to_int_bij ~> surj_int_encode
huffman@35810
  2145
  Nat_Int_Bij.surj_int_to_nat_bij ~> surj_int_decode
huffman@35810
  2146
  Nat_Int_Bij.inj_nat_to_int_bij  ~> inj_int_encode
huffman@35810
  2147
  Nat_Int_Bij.inj_int_to_nat_bij  ~> inj_int_decode
huffman@35810
  2148
  Nat_Int_Bij.bij_nat_to_int_bij  ~> bij_int_encode
huffman@35810
  2149
  Nat_Int_Bij.bij_int_to_nat_bij  ~> bij_int_decode
huffman@35810
  2150
blanchet@36921
  2151
* Sledgehammer:
blanchet@36921
  2152
  - Renamed ATP commands:
blanchet@36921
  2153
    atp_info     ~> sledgehammer running_atps
blanchet@36921
  2154
    atp_kill     ~> sledgehammer kill_atps
blanchet@36921
  2155
    atp_messages ~> sledgehammer messages
blanchet@36921
  2156
    atp_minimize ~> sledgehammer minimize
blanchet@36921
  2157
    print_atps   ~> sledgehammer available_atps
blanchet@36921
  2158
    INCOMPATIBILITY.
blanchet@36921
  2159
  - Added user's manual ("isabelle doc sledgehammer").
blanchet@36921
  2160
  - Added option syntax and "sledgehammer_params" to customize
blanchet@36921
  2161
    Sledgehammer's behavior.  See the manual for details.
blanchet@36921
  2162
  - Modified the Isar proof reconstruction code so that it produces
blanchet@36921
  2163
    direct proofs rather than proofs by contradiction.  (This feature
blanchet@36921
  2164
    is still experimental.)
blanchet@36921
  2165
  - Made Isar proof reconstruction work for SPASS, remote ATPs, and in
blanchet@36921
  2166
    full-typed mode.
blanchet@36921
  2167
  - Added support for TPTP syntax for SPASS via the "spass_tptp" ATP.
blanchet@36921
  2168
blanchet@36920
  2169
* Nitpick:
blanchet@36920
  2170
  - Added and implemented "binary_ints" and "bits" options.
blanchet@36920
  2171
  - Added "std" option and implemented support for nonstandard models.
blanchet@36920
  2172
  - Added and implemented "finitize" option to improve the precision
blanchet@36920
  2173
    of infinite datatypes based on a monotonicity analysis.
blanchet@36920
  2174
  - Added support for quotient types.
blanchet@36920
  2175
  - Added support for "specification" and "ax_specification"
blanchet@36920
  2176
    constructs.
blanchet@36920
  2177
  - Added support for local definitions (for "function" and
blanchet@36920
  2178
    "termination" proofs).
blanchet@36920
  2179
  - Added support for term postprocessors.
blanchet@36920
  2180
  - Optimized "Multiset.multiset" and "FinFun.finfun".
blanchet@36920
  2181
  - Improved efficiency of "destroy_constrs" optimization.
blanchet@36920
  2182
  - Fixed soundness bugs related to "destroy_constrs" optimization and
blanchet@36920
  2183
    record getters.
blanchet@37271
  2184
  - Fixed soundness bug related to higher-order constructors.
blanchet@37271
  2185
  - Fixed soundness bug when "full_descrs" is enabled.
blanchet@36920
  2186
  - Improved precision of set constructs.
blanchet@37259
  2187
  - Added "atoms" option.
blanchet@36920
  2188
  - Added cache to speed up repeated Kodkod invocations on the same
blanchet@36920
  2189
    problems.
blanchet@36920
  2190
  - Renamed "MiniSatJNI", "zChaffJNI", "BerkMinAlloy", and
blanchet@36920
  2191
    "SAT4JLight" to "MiniSat_JNI", "zChaff_JNI", "BerkMin_Alloy", and
blanchet@36920
  2192
    "SAT4J_Light".  INCOMPATIBILITY.
blanchet@36920
  2193
  - Removed "skolemize", "uncurry", "sym_break", "flatten_prop",
blanchet@36920
  2194
    "sharing_depth", and "show_skolems" options.  INCOMPATIBILITY.
blanchet@37263
  2195
  - Removed "nitpick_intro" attribute.  INCOMPATIBILITY.
blanchet@36920
  2196
berghofe@37462
  2197
* Method "induct" now takes instantiations of the form t, where t is not
berghofe@37462
  2198
  a variable, as a shorthand for "x == t", where x is a fresh variable.
berghofe@37462
  2199
  If this is not intended, t has to be enclosed in parentheses.
berghofe@37462
  2200
  By default, the equalities generated by definitional instantiations
berghofe@37462
  2201
  are pre-simplified, which may cause parameters of inductive cases
berghofe@37462
  2202
  to disappear, or may even delete some of the inductive cases.
berghofe@37462
  2203
  Use "induct (no_simp)" instead of "induct" to restore the old
berghofe@37462
  2204
  behaviour. The (no_simp) option is also understood by the "cases"
berghofe@37462
  2205
  and "nominal_induct" methods, which now perform pre-simplification, too.
berghofe@37462
  2206
  INCOMPATIBILITY.
berghofe@37462
  2207
haftmann@33990
  2208
huffman@36823
  2209
*** HOLCF ***
huffman@36823
  2210
huffman@36823
  2211
* Variable names in lemmas generated by the domain package have
huffman@36823
  2212
changed; the naming scheme is now consistent with the HOL datatype
huffman@36823
  2213
package.  Some proof scripts may be affected, INCOMPATIBILITY.
huffman@36823
  2214
huffman@36823
  2215
* The domain package no longer defines the function "foo_copy" for
huffman@36823
  2216
recursive domain "foo".  The reach lemma is now stated directly in
huffman@36823
  2217
terms of "foo_take".  Lemmas and proofs that mention "foo_copy" must
huffman@36823
  2218
be reformulated in terms of "foo_take", INCOMPATIBILITY.
huffman@36823
  2219
huffman@36823
  2220
* Most definedness lemmas generated by the domain package (previously
huffman@36823
  2221
of the form "x ~= UU ==> foo$x ~= UU") now have an if-and-only-if form
huffman@36823
  2222
like "foo$x = UU <-> x = UU", which works better as a simp rule.
wenzelm@37351
  2223
Proofs that used definedness lemmas as intro rules may break,
huffman@36823
  2224
potential INCOMPATIBILITY.
huffman@36823
  2225
huffman@36823
  2226
* Induction and casedist rules generated by the domain package now
huffman@36823
  2227
declare proper case_names (one called "bottom", and one named for each
huffman@36823
  2228
constructor).  INCOMPATIBILITY.
huffman@36823
  2229
huffman@36823
  2230
* For mutually-recursive domains, separate "reach" and "take_lemma"
huffman@36823
  2231
rules are generated for each domain, INCOMPATIBILITY.
huffman@36823
  2232
huffman@36823
  2233
  foo_bar.reach       ~> foo.reach  bar.reach
huffman@36823
  2234
  foo_bar.take_lemmas ~> foo.take_lemma  bar.take_lemma
huffman@36823
  2235
huffman@36823
  2236
* Some lemmas generated by the domain package have been renamed for
huffman@36823
  2237
consistency with the datatype package, INCOMPATIBILITY.
huffman@36823
  2238
huffman@36823
  2239
  foo.ind        ~> foo.induct
huffman@36823
  2240
  foo.finite_ind ~> foo.finite_induct
huffman@36823
  2241
  foo.coind      ~> foo.coinduct
huffman@36823
  2242
  foo.casedist   ~> foo.exhaust
huffman@36823
  2243
  foo.exhaust    ~> foo.nchotomy
huffman@36823
  2244
huffman@36823
  2245
* For consistency with other definition packages, the fixrec package
huffman@36823
  2246
now generates qualified theorem names, INCOMPATIBILITY.
huffman@36823
  2247
huffman@36823
  2248
  foo_simps  ~> foo.simps
huffman@36823
  2249
  foo_unfold ~> foo.unfold
huffman@36823
  2250
  foo_induct ~> foo.induct
huffman@36823
  2251
huffman@37071
  2252
* The "fixrec_simp" attribute has been removed.  The "fixrec_simp"
huffman@37071
  2253
method and internal fixrec proofs now use the default simpset instead.
huffman@37071
  2254
INCOMPATIBILITY.
huffman@37071
  2255
huffman@36823
  2256
* The "contlub" predicate has been removed.  Proof scripts should use
huffman@36823
  2257
lemma contI2 in place of monocontlub2cont, INCOMPATIBILITY.
huffman@36823
  2258
huffman@36823
  2259
* The "admw" predicate has been removed, INCOMPATIBILITY.
huffman@36823
  2260
huffman@36823
  2261
* The constants cpair, cfst, and csnd have been removed in favor of
huffman@36823
  2262
Pair, fst, and snd from Isabelle/HOL, INCOMPATIBILITY.
huffman@36823
  2263
huffman@36823
  2264
haftmann@33990
  2265
*** ML ***
haftmann@33990
  2266
wenzelm@37351
  2267
* Antiquotations for basic formal entities:
wenzelm@37351
  2268
wenzelm@37351
  2269
    @{class NAME}         -- type class
wenzelm@37351
  2270
    @{class_syntax NAME}  -- syntax representation of the above
wenzelm@37351
  2271
wenzelm@37351
  2272
    @{type_name NAME}     -- logical type
wenzelm@37351
  2273
    @{type_abbrev NAME}   -- type abbreviation
wenzelm@37351
  2274
    @{nonterminal NAME}   -- type of concrete syntactic category
wenzelm@37351
  2275
    @{type_syntax NAME}   -- syntax representation of any of the above
wenzelm@37351
  2276
wenzelm@37351
  2277
    @{const_name NAME}    -- logical constant (INCOMPATIBILITY)
wenzelm@37351
  2278
    @{const_abbrev NAME}  -- abbreviated constant
wenzelm@37351
  2279
    @{const_syntax NAME}  -- syntax representation of any of the above
wenzelm@37351
  2280
wenzelm@37351
  2281
* Antiquotation @{syntax_const NAME} ensures that NAME refers to a raw
wenzelm@37351
  2282
syntax constant (cf. 'syntax' command).
wenzelm@37351
  2283
wenzelm@37351
  2284
* Antiquotation @{make_string} inlines a function to print arbitrary
wenzelm@37351
  2285
values similar to the ML toplevel.  The result is compiler dependent
wenzelm@37351
  2286
and may fall back on "?" in certain situations.
wenzelm@37351
  2287
wenzelm@37351
  2288
* Diagnostic commands 'ML_val' and 'ML_command' may refer to
wenzelm@37351
  2289
antiquotations @{Isar.state} and @{Isar.goal}.  This replaces impure
wenzelm@37351
  2290
Isar.state() and Isar.goal(), which belong to the old TTY loop and do
wenzelm@37351
  2291
not work with the asynchronous Isar document model.
wenzelm@37351
  2292
wenzelm@37351
  2293
* Configuration options now admit dynamic default values, depending on
wenzelm@37351
  2294
the context or even global references.
wenzelm@37351
  2295
wenzelm@37351
  2296
* SHA1.digest digests strings according to SHA-1 (see RFC 3174).  It
wenzelm@37351
  2297
uses an efficient external library if available (for Poly/ML).
wenzelm@37351
  2298
wenzelm@37144
  2299
* Renamed some important ML structures, while keeping the old names
wenzelm@37144
  2300
for some time as aliases within the structure Legacy:
wenzelm@37144
  2301
wenzelm@37144
  2302
  OuterKeyword  ~>  Keyword
wenzelm@37144
  2303
  OuterLex      ~>  Token
wenzelm@37144
  2304
  OuterParse    ~>  Parse
wenzelm@37144
  2305
  OuterSyntax   ~>  Outer_Syntax
wenzelm@37216
  2306
  PrintMode     ~>  Print_Mode
wenzelm@37144
  2307
  SpecParse     ~>  Parse_Spec
wenzelm@37216
  2308
  ThyInfo       ~>  Thy_Info
wenzelm@37216
  2309
  ThyLoad       ~>  Thy_Load
wenzelm@37216
  2310
  ThyOutput     ~>  Thy_Output
wenzelm@37153
  2311
  TypeInfer     ~>  Type_Infer
wenzelm@37144
  2312
wenzelm@37144
  2313
Note that "open Legacy" simplifies porting of sources, but forgetting
wenzelm@37144
  2314
to remove it again will complicate porting again in the future.
wenzelm@37144
  2315
wenzelm@37144
  2316
* Most operations that refer to a global context are named
wenzelm@37144
  2317
accordingly, e.g. Simplifier.global_context or
wenzelm@37144
  2318
ProofContext.init_global.  There are some situations where a global
wenzelm@37144
  2319
context actually works, but under normal circumstances one needs to
wenzelm@37144
  2320
pass the proper local context through the code!
wenzelm@37144
  2321
wenzelm@37144
  2322
* Discontinued old TheoryDataFun with its copy/init operation -- data
wenzelm@37144
  2323
needs to be pure.  Functor Theory_Data_PP retains the traditional
wenzelm@37144
  2324
Pretty.pp argument to merge, which is absent in the standard
wenzelm@37144
  2325
Theory_Data version.
wenzelm@37144
  2326
wenzelm@36443
  2327
* Sorts.certify_sort and derived "cert" operations for types and terms
wenzelm@36443
  2328
no longer minimize sorts.  Thus certification at the boundary of the
wenzelm@36443
  2329
inference kernel becomes invariant under addition of class relations,
wenzelm@36443
  2330
which is an important monotonicity principle.  Sorts are now minimized
wenzelm@36443
  2331
in the syntax layer only, at the boundary between the end-user and the
wenzelm@36443
  2332
system.  Subtle INCOMPATIBILITY, may have to use Sign.minimize_sort
wenzelm@36443
  2333
explicitly in rare situations.
wenzelm@36443
  2334
wenzelm@35021
  2335
* Renamed old-style Drule.standard to Drule.export_without_context, to
wenzelm@35021
  2336
emphasize that this is in no way a standard operation.
wenzelm@35021
  2337
INCOMPATIBILITY.
wenzelm@35021
  2338
wenzelm@34076
  2339
* Subgoal.FOCUS (and variants): resulting goal state is normalized as
wenzelm@34076
  2340
usual for resolution.  Rare INCOMPATIBILITY.
wenzelm@34076
  2341
wenzelm@35845
  2342
* Renamed varify/unvarify operations to varify_global/unvarify_global
wenzelm@35845
  2343
to emphasize that these only work in a global situation (which is
wenzelm@35845
  2344
quite rare).
wenzelm@35845
  2345
wenzelm@37144
  2346
* Curried take and drop in library.ML; negative length is interpreted
wenzelm@37144
  2347
as infinity (as in chop).  Subtle INCOMPATIBILITY.
wenzelm@36971
  2348
wenzelm@37351
  2349
* Proof terms: type substitutions on proof constants now use canonical
wenzelm@37351
  2350
order of type variables.  INCOMPATIBILITY for tools working with proof
wenzelm@37351
  2351
terms.
wenzelm@37351
  2352
wenzelm@37351
  2353
* Raw axioms/defs may no longer carry sort constraints, and raw defs
wenzelm@37351
  2354
may no longer carry premises.  User-level specifications are
wenzelm@37351
  2355
transformed accordingly by Thm.add_axiom/add_def.
wenzelm@37351
  2356
haftmann@33990
  2357
wenzelm@34238
  2358
*** System ***
wenzelm@34238
  2359
wenzelm@34238
  2360
* Discontinued special HOL_USEDIR_OPTIONS for the main HOL image;
wenzelm@34238
  2361
ISABELLE_USEDIR_OPTIONS applies uniformly to all sessions.  Note that
wenzelm@34238
  2362
proof terms are enabled unconditionally in the new HOL-Proofs image.
wenzelm@34238
  2363
wenzelm@34255
  2364
* Discontinued old ISABELLE and ISATOOL environment settings (legacy
wenzelm@34255
  2365
feature since Isabelle2009).  Use ISABELLE_PROCESS and ISABELLE_TOOL,
wenzelm@34255
  2366
respectively.
wenzelm@34255
  2367
wenzelm@36201
  2368
* Old lib/scripts/polyml-platform is superseded by the
wenzelm@36201
  2369
ISABELLE_PLATFORM setting variable, which defaults to the 32 bit
wenzelm@36201
  2370
variant, even on a 64 bit machine.  The following example setting
wenzelm@36201
  2371
prefers 64 bit if available:
wenzelm@36201
  2372
wenzelm@36201
  2373
  ML_PLATFORM="${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM}"
wenzelm@36201
  2374
wenzelm@37218
  2375
* The preliminary Isabelle/jEdit application demonstrates the emerging
wenzelm@37218
  2376
Isabelle/Scala layer for advanced prover interaction and integration.
wenzelm@37218
  2377
See src/Tools/jEdit or "isabelle jedit" provided by the properly built
wenzelm@37218
  2378
component.
wenzelm@37218
  2379
wenzelm@37473
  2380
* "IsabelleText" is a Unicode font derived from Bitstream Vera Mono
wenzelm@37473
  2381
and Bluesky TeX fonts.  It provides the usual Isabelle symbols,
wenzelm@37473
  2382
similar to the default assignment of the document preparation system
wenzelm@37473
  2383
(cf. isabellesym.sty).  The Isabelle/Scala class Isabelle_System
wenzelm@37473
  2384
provides some operations for direct access to the font without asking
wenzelm@37473
  2385
the user for manual installation.
wenzelm@37473
  2386
wenzelm@34238
  2387
haftmann@33990
  2388
wenzelm@33842
  2389
New in Isabelle2009-1 (December 2009)
wenzelm@33842
  2390
-------------------------------------
wenzelm@30904
  2391
wenzelm@31550
  2392
*** General ***
wenzelm@31550
  2393
wenzelm@31550
  2394
* Discontinued old form of "escaped symbols" such as \\<forall>.  Only
wenzelm@31550
  2395
one backslash should be used, even in ML sources.
wenzelm@31550
  2396
wenzelm@31550
  2397
haftmann@30951
  2398
*** Pure ***
haftmann@30951
  2399
ballarin@32841
  2400
* Locale interpretation propagates mixins along the locale hierarchy.
ballarin@32841
  2401
The currently only available mixins are the equations used to map
ballarin@32841
  2402
local definitions to terms of the target domain of an interpretation.
ballarin@32841
  2403
wenzelm@33842
  2404
* Reactivated diagnostic command 'print_interps'.  Use "print_interps
wenzelm@33842
  2405
loc" to print all interpretations of locale "loc" in the theory.
wenzelm@33842
  2406
Interpretations in proofs are not shown.
ballarin@32841
  2407
ballarin@32983
  2408
* Thoroughly revised locales tutorial.  New section on conditional
ballarin@32983
  2409
interpretation.
ballarin@32983
  2410
wenzelm@33843
  2411
* On instantiation of classes, remaining undefined class parameters
wenzelm@33843
  2412
are formally declared.  INCOMPATIBILITY.
wenzelm@33843
  2413
haftmann@30951
  2414
wenzelm@33842
  2415
*** Document preparation ***
wenzelm@33842
  2416
wenzelm@33842
  2417
* New generalized style concept for printing terms: @{foo (style) ...}
wenzelm@33842
  2418
instead of @{foo_style style ...}  (old form is still retained for
wenzelm@33842
  2419
backward compatibility).  Styles can be also applied for
wenzelm@33842
  2420
antiquotations prop, term_type and typeof.
haftmann@32891
  2421
haftmann@32891
  2422
haftmann@30930
  2423
*** HOL ***
haftmann@30930
  2424
wenzelm@33842
  2425
* New proof method "smt" for a combination of first-order logic with
wenzelm@33842
  2426
equality, linear and nonlinear (natural/integer/real) arithmetic, and
wenzelm@33842
  2427
fixed-size bitvectors; there is also basic support for higher-order
wenzelm@33842
  2428
features (esp. lambda abstractions).  It is an incomplete decision
wenzelm@33842
  2429
procedure based on external SMT solvers using the oracle mechanism;
wenzelm@33842
  2430
for the SMT solver Z3, this method is proof-producing.  Certificates
wenzelm@33842
  2431
are provided to avoid calling the external solvers solely for
wenzelm@33842
  2432
re-checking proofs.  Due to a remote SMT service there is no need for
wenzelm@33842
  2433
installing SMT solvers locally.  See src/HOL/SMT.
wenzelm@33842
  2434
wenzelm@33842
  2435
* New commands to load and prove verification conditions generated by
wenzelm@33842
  2436
the Boogie program verifier or derived systems (e.g. the Verifying C
wenzelm@33842
  2437
Compiler (VCC) or Spec#).  See src/HOL/Boogie.
wenzelm@33842
  2438
wenzelm@33842
  2439
* New counterexample generator tool 'nitpick' based on the Kodkod
wenzelm@33842
  2440
relational model finder.  See src/HOL/Tools/Nitpick and
wenzelm@33842
  2441
src/HOL/Nitpick_Examples.
wenzelm@33842
  2442
haftmann@33860
  2443
* New commands 'code_pred' and 'values' to invoke the predicate
haftmann@33860
  2444
compiler and to enumerate values of inductive predicates.
haftmann@33860
  2445
haftmann@33860
  2446
* A tabled implementation of the reflexive transitive closure.
haftmann@33860
  2447
haftmann@33860
  2448
* New implementation of quickcheck uses generic code generator;
haftmann@33860
  2449
default generators are provided for all suitable HOL types, records
haftmann@33860
  2450
and datatypes.  Old quickcheck can be re-activated importing theory
haftmann@33860
  2451
Library/SML_Quickcheck.
haftmann@33860
  2452
wenzelm@33843
  2453
* New testing tool Mirabelle for automated proof tools.  Applies
wenzelm@32427
  2454
several tools and tactics like sledgehammer, metis, or quickcheck, to
wenzelm@33842
  2455
every proof step in a theory.  To be used in batch mode via the
wenzelm@32427
  2456
"mirabelle" utility.
wenzelm@32427
  2457
wenzelm@32427
  2458
* New proof method "sos" (sum of squares) for nonlinear real
wenzelm@33842
  2459
arithmetic (originally due to John Harison). It requires theory
wenzelm@32427
  2460
Library/Sum_Of_Squares.  It is not a complete decision procedure but
wenzelm@32427
  2461
works well in practice on quantifier-free real arithmetic with +, -,
wenzelm@32427
  2462
*, ^, =, <= and <, i.e. boolean combinations of equalities and
wenzelm@33842
  2463
inequalities between polynomials.  It makes use of external
wenzelm@33842
  2464
semidefinite programming solvers.  Method "sos" generates a
wenzelm@33842
  2465
certificate that can be pasted into the proof thus avoiding the need
wenzelm@33842
  2466
to call an external tool every time the proof is checked.  See
wenzelm@33842
  2467
src/HOL/Library/Sum_Of_Squares.
wenzelm@32427
  2468
wenzelm@33843
  2469
* New method "linarith" invokes existing linear arithmetic decision
wenzelm@33843
  2470
procedure only.
wenzelm@33843
  2471
wenzelm@33843
  2472
* New command 'atp_minimal' reduces result produced by Sledgehammer.
wenzelm@33843
  2473
wenzelm@33843
  2474
* New Sledgehammer option "Full Types" in Proof General settings menu.
wenzelm@33843
  2475
Causes full type information to be output to the ATPs.  This slows
wenzelm@33843
  2476
ATPs down considerably but eliminates a source of unsound "proofs"
wenzelm@33843
  2477
that fail later.
wenzelm@33843
  2478
wenzelm@33843
  2479
* New method "metisFT": A version of metis that uses full type
wenzelm@33843
  2480
information in order to avoid failures of proof reconstruction.
wenzelm@33843
  2481
wenzelm@33843
  2482
* New evaluator "approximate" approximates an real valued term using
wenzelm@33843
  2483
the same method as the approximation method.
wenzelm@33843
  2484
wenzelm@33843
  2485
* Method "approximate" now supports arithmetic expressions as
wenzelm@33843
  2486
boundaries of intervals and implements interval splitting and Taylor
wenzelm@33843
  2487
series expansion.
wenzelm@33843
  2488
wenzelm@33843
  2489
* ML antiquotation @{code_datatype} inserts definition of a datatype
wenzelm@33843
  2490
generated by the code generator; e.g. see src/HOL/Predicate.thy.
wenzelm@33843
  2491
haftmann@33860
  2492
* New theory SupInf of the supremum and infimum operators for sets of
haftmann@33860
  2493
reals.
haftmann@33860
  2494
haftmann@33860
  2495
* New theory Probability, which contains a development of measure
haftmann@33860
  2496
theory, eventually leading to Lebesgue integration and probability.
haftmann@33860
  2497
haftmann@33860
  2498
* Extended Multivariate Analysis to include derivation and Brouwer's
haftmann@33860
  2499
fixpoint theorem.
wenzelm@33843
  2500
wenzelm@33843
  2501
* Reorganization of number theory, INCOMPATIBILITY:
wenzelm@33873
  2502
  - new number theory development for nat and int, in theories Divides
wenzelm@33873
  2503
    and GCD as well as in new session Number_Theory
wenzelm@33873
  2504
  - some constants and facts now suffixed with _nat and _int
wenzelm@33873
  2505
    accordingly
wenzelm@33873
  2506
  - former session NumberTheory now named Old_Number_Theory, including
wenzelm@33873
  2507
    theories Legacy_GCD and Primes (prefer Number_Theory if possible)
wenzelm@33843
  2508
  - moved theory Pocklington from src/HOL/Library to
wenzelm@33843
  2509
    src/HOL/Old_Number_Theory
wenzelm@33843
  2510
wenzelm@33873
  2511
* Theory GCD includes functions Gcd/GCD and Lcm/LCM for the gcd and
wenzelm@33873
  2512
lcm of finite and infinite sets. It is shown that they form a complete
wenzelm@33843
  2513
lattice.
wenzelm@33843
  2514
wenzelm@33843
  2515
* Class semiring_div requires superclass no_zero_divisors and proof of
wenzelm@33843
  2516
div_mult_mult1; theorems div_mult_mult1, div_mult_mult2,
wenzelm@33843
  2517
div_mult_mult1_if, div_mult_mult1 and div_mult_mult2 have been
wenzelm@33843
  2518
generalized to class semiring_div, subsuming former theorems
wenzelm@33843
  2519
zdiv_zmult_zmult1, zdiv_zmult_zmult1_if, zdiv_zmult_zmult1 and
wenzelm@33843
  2520
zdiv_zmult_zmult2.  div_mult_mult1 is now [simp] by default.
wenzelm@33843
  2521
INCOMPATIBILITY.
wenzelm@33843
  2522
haftmann@32588
  2523
* Refinements to lattice classes and sets:
haftmann@32056
  2524
  - less default intro/elim rules in locale variant, more default
haftmann@32056
  2525
    intro/elim rules in class variant: more uniformity
wenzelm@33842
  2526
  - lemma ge_sup_conv renamed to le_sup_iff, in accordance with
wenzelm@33842
  2527
    le_inf_iff
wenzelm@33842
  2528
  - dropped lemma alias inf_ACI for inf_aci (same for sup_ACI and
wenzelm@33842
  2529
    sup_aci)
haftmann@32056
  2530
  - renamed ACI to inf_sup_aci
haftmann@32600
  2531
  - new class "boolean_algebra"
wenzelm@33842
  2532
  - class "complete_lattice" moved to separate theory
haftmann@33860
  2533
    "Complete_Lattice"; corresponding constants (and abbreviations)
wenzelm@33842
  2534
    renamed and with authentic syntax:
haftmann@33860
  2535
    Set.Inf ~>    Complete_Lattice.Inf
haftmann@33860
  2536
    Set.Sup ~>    Complete_Lattice.Sup
haftmann@33860
  2537
    Set.INFI ~>   Complete_Lattice.INFI
haftmann@33860
  2538
    Set.SUPR ~>   Complete_Lattice.SUPR
haftmann@33860
  2539
    Set.Inter ~>  Complete_Lattice.Inter
haftmann@33860
  2540
    Set.Union ~>  Complete_Lattice.Union
haftmann@33860
  2541
    Set.INTER ~>  Complete_Lattice.INTER
haftmann@33860
  2542
    Set.UNION ~>  Complete_Lattice.UNION
haftmann@32600
  2543
  - authentic syntax for
haftmann@32600
  2544
    Set.Pow
haftmann@32600
  2545
    Set.image
haftmann@32588
  2546
  - mere abbreviations:
haftmann@32588
  2547
    Set.empty               (for bot)
haftmann@32588
  2548
    Set.UNIV                (for top)
haftmann@33860
  2549
    Set.inter               (for inf, formerly Set.Int)
haftmann@33860
  2550
    Set.union               (for sup, formerly Set.Un)
haftmann@32588
  2551
    Complete_Lattice.Inter  (for Inf)
haftmann@32588
  2552
    Complete_Lattice.Union  (for Sup)
haftmann@32606
  2553
    Complete_Lattice.INTER  (for INFI)
haftmann@32606
  2554
    Complete_Lattice.UNION  (for SUPR)
haftmann@32600
  2555
  - object-logic definitions as far as appropriate
haftmann@32217
  2556
haftmann@32691
  2557
INCOMPATIBILITY.  Care is required when theorems Int_subset_iff or
wenzelm@33842
  2558
Un_subset_iff are explicitly deleted as default simp rules; then also
wenzelm@33842
  2559
their lattice counterparts le_inf_iff and le_sup_iff have to be
haftmann@32691
  2560
deleted to achieve the desired effect.
haftmann@32056
  2561
wenzelm@33842
  2562
* Rules inf_absorb1, inf_absorb2, sup_absorb1, sup_absorb2 are no simp
wenzelm@33842
  2563
rules by default any longer; the same applies to min_max.inf_absorb1
wenzelm@33842
  2564
etc.  INCOMPATIBILITY.
wenzelm@33842
  2565
wenzelm@33842
  2566
* Rules sup_Int_eq and sup_Un_eq are no longer declared as
wenzelm@33842
  2567
pred_set_conv by default.  INCOMPATIBILITY.
wenzelm@33842
  2568
wenzelm@33842
  2569
* Power operations on relations and functions are now one dedicated
haftmann@32706
  2570
constant "compow" with infix syntax "^^".  Power operation on
wenzelm@31550
  2571
multiplicative monoids retains syntax "^" and is now defined generic
wenzelm@31550
  2572
in class power.  INCOMPATIBILITY.
wenzelm@31550
  2573
wenzelm@33842
  2574
* Relation composition "R O S" now has a more standard argument order:
wenzelm@33842
  2575
"R O S = {(x, z). EX y. (x, y) : R & (y, z) : S}".  INCOMPATIBILITY,
wenzelm@33842
  2576
rewrite propositions with "S O R" --> "R O S". Proofs may occasionally
wenzelm@33842
  2577
break, since the O_assoc rule was not rewritten like this.  Fix using
wenzelm@33842
  2578
O_assoc[symmetric].  The same applies to the curried version "R OO S".
wenzelm@32427
  2579
nipkow@33057
  2580
* Function "Inv" is renamed to "inv_into" and function "inv" is now an
wenzelm@33842
  2581
abbreviation for "inv_into UNIV".  Lemmas are renamed accordingly.
nipkow@32988
  2582
INCOMPATIBILITY.
nipkow@32988
  2583
haftmann@33860
  2584
* Most rules produced by inductive and datatype package have mandatory
haftmann@33860
  2585
prefixes.  INCOMPATIBILITY.
nipkow@31790
  2586
wenzelm@33842
  2587
* Changed "DERIV_intros" to a dynamic fact, which can be augmented by
wenzelm@33842
  2588
the attribute of the same name.  Each of the theorems in the list
wenzelm@33842
  2589
DERIV_intros assumes composition with an additional function and
wenzelm@33842
  2590
matches a variable to the derivative, which has to be solved by the
wenzelm@33842
  2591
Simplifier.  Hence (auto intro!: DERIV_intros) computes the derivative
wenzelm@33873
  2592
of most elementary terms.  Former Maclauren.DERIV_tac and
wenzelm@33873
  2593
Maclauren.deriv_tac should be replaced by (auto intro!: DERIV_intros).
wenzelm@33873
  2594
INCOMPATIBILITY.
haftmann@33860
  2595
haftmann@33860
  2596
* Code generator attributes follow the usual underscore convention:
haftmann@33860
  2597
    code_unfold     replaces    code unfold
haftmann@33860
  2598
    code_post       replaces    code post
haftmann@33860
  2599
    etc.
haftmann@33860
  2600
  INCOMPATIBILITY.
wenzelm@31911
  2601
krauss@33471
  2602
* Renamed methods:
krauss@33471
  2603
    sizechange -> size_change
krauss@33471
  2604
    induct_scheme -> induction_schema
haftmann@33860
  2605
  INCOMPATIBILITY.
nipkow@33669
  2606
wenzelm@33843
  2607
* Discontinued abbreviation "arbitrary" of constant "undefined".
wenzelm@33843
  2608
INCOMPATIBILITY, use "undefined" directly.
wenzelm@33843
  2609
haftmann@33860
  2610
* Renamed theorems:
haftmann@33860
  2611
    Suc_eq_add_numeral_1 -> Suc_eq_plus1
haftmann@33860
  2612
    Suc_eq_add_numeral_1_left -> Suc_eq_plus1_left
haftmann@33860
  2613
    Suc_plus1 -> Suc_eq_plus1
haftmann@33860
  2614
    *anti_sym -> *antisym*
haftmann@33860
  2615
    vector_less_eq_def -> vector_le_def
haftmann@33860
  2616
  INCOMPATIBILITY.
haftmann@33860
  2617
haftmann@33860
  2618
* Added theorem List.map_map as [simp].  Removed List.map_compose.
haftmann@33860
  2619
INCOMPATIBILITY.
haftmann@33860
  2620
haftmann@33860
  2621
* Removed predicate "M hassize n" (<--> card M = n & finite M).
haftmann@33860
  2622
INCOMPATIBILITY.
haftmann@33860
  2623
hoelzl@31812
  2624
huffman@33825
  2625
*** HOLCF ***
huffman@33825
  2626
wenzelm@33842
  2627
* Theory Representable defines a class "rep" of domains that are
wenzelm@33842
  2628
representable (via an ep-pair) in the universal domain type "udom".
huffman@33825
  2629
Instances are provided for all type constructors defined in HOLCF.
huffman@33825
  2630
huffman@33825
  2631
* The 'new_domain' command is a purely definitional version of the
huffman@33825
  2632
domain package, for representable domains.  Syntax is identical to the
huffman@33825
  2633
old domain package.  The 'new_domain' package also supports indirect
huffman@33825
  2634
recursion using previously-defined type constructors.  See
wenzelm@33842
  2635
src/HOLCF/ex/New_Domain.thy for examples.
wenzelm@33842
  2636
wenzelm@33842
  2637
* Method "fixrec_simp" unfolds one step of a fixrec-defined constant
huffman@33825
  2638
on the left-hand side of an equation, and then performs
huffman@33825
  2639
simplification.  Rewriting is done using rules declared with the
wenzelm@33842
  2640
"fixrec_simp" attribute.  The "fixrec_simp" method is intended as a
wenzelm@33842
  2641
replacement for "fixpat"; see src/HOLCF/ex/Fixrec_ex.thy for examples.
huffman@33825
  2642
huffman@33825
  2643
* The pattern-match compiler in 'fixrec' can now handle constructors
huffman@33825
  2644
with HOL function types.  Pattern-match combinators for the Pair
huffman@33825
  2645
constructor are pre-configured.
huffman@33825
  2646
huffman@33825
  2647
* The 'fixrec' package now produces better fixed-point induction rules
huffman@33825
  2648
for mutually-recursive definitions:  Induction rules have conclusions
huffman@33825
  2649
of the form "P foo bar" instead of "P <foo, bar>".
huffman@33825
  2650
huffman@33825
  2651
* The constant "sq_le" (with infix syntax "<<" or "\<sqsubseteq>") has
huffman@33825
  2652
been renamed to "below".  The name "below" now replaces "less" in many
wenzelm@33842
  2653
theorem names.  (Legacy theorem names using "less" are still supported
wenzelm@33842
  2654
as well.)
huffman@33825
  2655
huffman@33825
  2656
* The 'fixrec' package now supports "bottom patterns".  Bottom
huffman@33825
  2657
patterns can be used to generate strictness rules, or to make
huffman@33825
  2658
functions more strict (much like the bang-patterns supported by the
wenzelm@33873
  2659
Glasgow Haskell Compiler).  See src/HOLCF/ex/Fixrec_ex.thy for
wenzelm@33873
  2660
examples.
huffman@33825
  2661
huffman@33825
  2662
wenzelm@31304
  2663
*** ML ***
wenzelm@31304
  2664
wenzelm@33843
  2665
* Support for Poly/ML 5.3.0, with improved reporting of compiler
wenzelm@33843
  2666
errors and run-time exceptions, including detailed source positions.
wenzelm@33843
  2667
wenzelm@33843
  2668
* Structure Name_Space (formerly NameSpace) now manages uniquely
wenzelm@33843
  2669
identified entries, with some additional information such as source
wenzelm@33843
  2670
position, logical grouping etc.
wenzelm@33843
  2671
wenzelm@33526
  2672
* Theory and context data is now introduced by the simplified and
wenzelm@33526
  2673
modernized functors Theory_Data, Proof_Data, Generic_Data.  Data needs
wenzelm@33526
  2674
to be pure, but the old TheoryDataFun for mutable data (with explicit
wenzelm@33526
  2675
copy operation) is still available for some time.
wenzelm@33526
  2676
wenzelm@32742
  2677
* Structure Synchronized (cf. src/Pure/Concurrent/synchronized.ML)
wenzelm@32742
  2678
provides a high-level programming interface to synchronized state
wenzelm@32742
  2679
variables with atomic update.  This works via pure function
wenzelm@32742
  2680
application within a critical section -- its runtime should be as
wenzelm@32742
  2681
short as possible; beware of deadlocks if critical code is nested,
wenzelm@32742
  2682
either directly or indirectly via other synchronized variables!
wenzelm@32742
  2683
wenzelm@32742
  2684
* Structure Unsynchronized (cf. src/Pure/ML-Systems/unsynchronized.ML)
wenzelm@32742
  2685
wraps raw ML references, explicitly indicating their non-thread-safe
wenzelm@32742
  2686
behaviour.  The Isar toplevel keeps this structure open, to
wenzelm@32742
  2687
accommodate Proof General as well as quick and dirty interactive
wenzelm@32742
  2688
experiments with references.
wenzelm@32742
  2689
wenzelm@32365
  2690
* PARALLEL_CHOICE and PARALLEL_GOALS provide basic support for
wenzelm@32365
  2691
parallel tactical reasoning.
wenzelm@32365
  2692
wenzelm@32427
  2693
* Tacticals Subgoal.FOCUS, Subgoal.FOCUS_PREMS, Subgoal.FOCUS_PARAMS
wenzelm@32427
  2694
are similar to SUBPROOF, but are slightly more flexible: only the
wenzelm@32427
  2695
specified parts of the subgoal are imported into the context, and the
wenzelm@32427
  2696
body tactic may introduce new subgoals and schematic variables.
wenzelm@32427
  2697
wenzelm@32427
  2698
* Old tactical METAHYPS, which does not observe the proof context, has
wenzelm@32427
  2699
been renamed to Old_Goals.METAHYPS and awaits deletion.  Use SUBPROOF
wenzelm@32427
  2700
or Subgoal.FOCUS etc.
wenzelm@32216
  2701
wenzelm@31972
  2702
* Renamed functor TableFun to Table, and GraphFun to Graph.  (Since
wenzelm@31972
  2703
functors have their own ML name space there is no point to mark them
wenzelm@31972
  2704
separately.)  Minor INCOMPATIBILITY.
wenzelm@31972
  2705
wenzelm@31912
  2706
* Renamed NamedThmsFun to Named_Thms.  INCOMPATIBILITY.
wenzelm@31912
  2707
wenzelm@33842
  2708
* Renamed several structures FooBar to Foo_Bar.  Occasional,
wenzelm@33842
  2709
INCOMPATIBILITY.
wenzelm@33842
  2710
wenzelm@33843
  2711
* Operations of structure Skip_Proof no longer require quick_and_dirty
wenzelm@33843
  2712
mode, which avoids critical setmp.
wenzelm@33843
  2713
wenzelm@31306
  2714
* Eliminated old Attrib.add_attributes, Method.add_methods and related
wenzelm@33842
  2715
combinators for "args".  INCOMPATIBILITY, need to use simplified
wenzelm@31306
  2716
Attrib/Method.setup introduced in Isabelle2009.
wenzelm@31304
  2717
wenzelm@32151
  2718
* Proper context for simpset_of, claset_of, clasimpset_of.  May fall
wenzelm@32151
  2719
back on global_simpset_of, global_claset_of, global_clasimpset_of as
wenzelm@32151
  2720
last resort.  INCOMPATIBILITY.
wenzelm@32151
  2721
wenzelm@32112
  2722
* Display.pretty_thm now requires a proper context (cf. former
wenzelm@32112
  2723
ProofContext.pretty_thm).  May fall back on Display.pretty_thm_global
wenzelm@32112
  2724
or even Display.pretty_thm_without_context as last resort.
wenzelm@32112
  2725
INCOMPATIBILITY.
wenzelm@32112
  2726
wenzelm@32446
  2727
* Discontinued Display.pretty_ctyp/cterm etc.  INCOMPATIBILITY, use
wenzelm@32446
  2728
Syntax.pretty_typ/term directly, preferably with proper context
wenzelm@32446
  2729
instead of global theory.
wenzelm@32446
  2730
wenzelm@31304
  2731
wenzelm@31308
  2732
*** System ***
wenzelm@31308
  2733
wenzelm@33842
  2734
* Further fine tuning of parallel proof checking, scales up to 8 cores
wenzelm@33842
  2735
(max. speedup factor 5.0).  See also Goal.parallel_proofs in ML and
wenzelm@33842
  2736
usedir option -q.
wenzelm@33842
  2737
wenzelm@32326
  2738
* Support for additional "Isabelle components" via etc/components, see
wenzelm@32326
  2739
also the system manual.
wenzelm@32326
  2740
wenzelm@32326
  2741
* The isabelle makeall tool now operates on all components with
wenzelm@32326
  2742
IsaMakefile, not just hardwired "logics".
wenzelm@32326
  2743
wenzelm@31317
  2744
* Removed "compress" option from isabelle-process and isabelle usedir;
wenzelm@31317
  2745
this is always enabled.
wenzelm@31317
  2746
wenzelm@33842
  2747
* Discontinued support for Poly/ML 4.x versions.
wenzelm@33842
  2748
wenzelm@33842
  2749
* Isabelle tool "wwwfind" provides web interface for 'find_theorems'
wenzelm@33842
  2750
on a given logic image.  This requires the lighttpd webserver and is
wenzelm@33842
  2751
currently supported on Linux only.
wenzelm@32077
  2752
wenzelm@31308
  2753
wenzelm@31304
  2754
wenzelm@30845
  2755
New in Isabelle2009 (April 2009)
wenzelm@30845
  2756
--------------------------------
haftmann@27104
  2757
wenzelm@27599
  2758
*** General ***
wenzelm@27599
  2759
wenzelm@28504
  2760
* Simplified main Isabelle executables, with less surprises on
wenzelm@28504
  2761
case-insensitive file-systems (such as Mac OS).
wenzelm@28504
  2762
wenzelm@28504
  2763
  - The main Isabelle tool wrapper is now called "isabelle" instead of
wenzelm@28504
  2764
    "isatool."
wenzelm@28504
  2765
wenzelm@28504
  2766
  - The former "isabelle" alias for "isabelle-process" has been
wenzelm@28504
  2767
    removed (should rarely occur to regular users).
wenzelm@28504
  2768
wenzelm@28915
  2769
  - The former "isabelle-interface" and its alias "Isabelle" have been
wenzelm@28915
  2770
    removed (interfaces are now regular Isabelle tools).
wenzelm@28504
  2771
wenzelm@28504
  2772
Within scripts and make files, the Isabelle environment variables
wenzelm@28504
  2773
ISABELLE_TOOL and ISABELLE_PROCESS replace old ISATOOL and ISABELLE,
wenzelm@28504
  2774
respectively.  (The latter are still available as legacy feature.)
wenzelm@28504
  2775
wenzelm@28915
  2776
The old isabelle-interface wrapper could react in confusing ways if
wenzelm@28915
  2777
the interface was uninstalled or changed otherwise.  Individual
wenzelm@28915
  2778
interface tool configuration is now more explicit, see also the
wenzelm@28915
  2779
Isabelle system manual.  In particular, Proof General is now available
wenzelm@28915
  2780
via "isabelle emacs".
wenzelm@28504
  2781
wenzelm@28504
  2782
INCOMPATIBILITY, need to adapt derivative scripts.  Users may need to
wenzelm@28504
  2783
purge installed copies of Isabelle executables and re-run "isabelle
wenzelm@28504
  2784
install -p ...", or use symlinks.
wenzelm@28504
  2785
wenzelm@28914
  2786
* The default for ISABELLE_HOME_USER is now ~/.isabelle instead of the
wenzelm@30845
  2787
old ~/isabelle, which was slightly non-standard and apt to cause
wenzelm@30845
  2788
surprises on case-insensitive file-systems (such as Mac OS).
wenzelm@28914
  2789
wenzelm@28914
  2790
INCOMPATIBILITY, need to move existing ~/isabelle/etc,
wenzelm@28914
  2791
~/isabelle/heaps, ~/isabelle/browser_info to the new place.  Special
wenzelm@28914
  2792
care is required when using older releases of Isabelle.  Note that
wenzelm@28914
  2793
ISABELLE_HOME_USER can be changed in Isabelle/etc/settings of any
wenzelm@30845
  2794
Isabelle distribution, in order to use the new ~/.isabelle uniformly.
wenzelm@28914
  2795
wenzelm@29161
  2796
* Proofs of fully specified statements are run in parallel on
wenzelm@30845
  2797
multi-core systems.  A speedup factor of 2.5 to 3.2 can be expected on
wenzelm@30845
  2798
a regular 4-core machine, if the initial heap space is made reasonably
wenzelm@30845
  2799
large (cf. Poly/ML option -H).  (Requires Poly/ML 5.2.1 or later.)
wenzelm@30845
  2800
wenzelm@30845
  2801
* The main reference manuals ("isar-ref", "implementation", and
wenzelm@30845
  2802
"system") have been updated and extended.  Formally checked references
wenzelm@30845
  2803
as hyperlinks are now available uniformly.
wenzelm@30845
  2804
wenzelm@30163
  2805
wenzelm@27599
  2806
*** Pure ***
wenzelm@27599
  2807
wenzelm@30845
  2808
* Complete re-implementation of locales.  INCOMPATIBILITY in several
wenzelm@30845
  2809
respects.  The most important changes are listed below.  See the
wenzelm@30845
  2810
Tutorial on Locales ("locales" manual) for details.
wenzelm@30845
  2811
wenzelm@30845
  2812
- In locale expressions, instantiation replaces renaming.  Parameters
wenzelm@30845
  2813
must be declared in a for clause.  To aid compatibility with previous
wenzelm@30845
  2814
parameter inheritance, in locale declarations, parameters that are not
wenzelm@30845
  2815
'touched' (instantiation position "_" or omitted) are implicitly added
wenzelm@30845
  2816
with their syntax at the beginning of the for clause.
wenzelm@30845
  2817
wenzelm@30845
  2818
- Syntax from abbreviations and definitions in locales is available in
wenzelm@30845
  2819
locale expressions and context elements.  The latter is particularly
wenzelm@30845
  2820
useful in locale declarations.
wenzelm@30845
  2821
wenzelm@30845
  2822
- More flexible mechanisms to qualify names generated by locale
wenzelm@30845
  2823
expressions.  Qualifiers (prefixes) may be specified in locale
wenzelm@30845
  2824
expressions, and can be marked as mandatory (syntax: "name!:") or
wenzelm@30845
  2825
optional (syntax "name?:").  The default depends for plain "name:"
wenzelm@30845
  2826
depends on the situation where a locale expression is used: in
wenzelm@30845
  2827
commands 'locale' and 'sublocale' prefixes are optional, in
wenzelm@30845
  2828
'interpretation' and 'interpret' prefixes are mandatory.  The old
wenzelm@30845
  2829
implicit qualifiers derived from the parameter names of a locale are
wenzelm@30845
  2830
no longer generated.
wenzelm@30845
  2831
wenzelm@30845
  2832
- Command "sublocale l < e" replaces "interpretation l < e".  The
wenzelm@30845
  2833
instantiation clause in "interpretation" and "interpret" (square
wenzelm@30845
  2834
brackets) is no longer available.  Use locale expressions.
wenzelm@30845
  2835
wenzelm@30845
  2836
- When converting proof scripts, mandatory qualifiers in
wenzelm@30845
  2837
'interpretation' and 'interpret' should be retained by default, even
wenzelm@30845
  2838
if this is an INCOMPATIBILITY compared to former behavior.  In the
wenzelm@30845
  2839
worst case, use the "name?:" form for non-mandatory ones.  Qualifiers
wenzelm@30845
  2840
in locale expressions range over a single locale instance only.
wenzelm@30845
  2841
wenzelm@30845
  2842
- Dropped locale element "includes".  This is a major INCOMPATIBILITY.
ballarin@28710
  2843
In existing theorem specifications replace the includes element by the
wenzelm@30106
  2844
respective context elements of the included locale, omitting those
wenzelm@30106
  2845
that are already present in the theorem specification.  Multiple
wenzelm@30106
  2846
assume elements of a locale should be replaced by a single one
wenzelm@30106
  2847
involving the locale predicate.  In the proof body, declarations (most
wenzelm@30106
  2848
notably theorems) may be regained by interpreting the respective
wenzelm@30106
  2849
locales in the proof context as required (command "interpret").
wenzelm@30106
  2850
ballarin@28710
  2851
If using "includes" in replacement of a target solely because the
ballarin@28710
  2852
parameter types in the theorem are not as general as in the target,
wenzelm@30106
  2853
consider declaring a new locale with additional type constraints on
wenzelm@30106
  2854
the parameters (context element "constrains").
ballarin@28710
  2855
wenzelm@30845
  2856
- Discontinued "locale (open)".  INCOMPATIBILITY.
wenzelm@30845
  2857
wenzelm@30845
  2858
- Locale interpretation commands no longer attempt to simplify goal.
ballarin@27761
  2859
INCOMPATIBILITY: in rare situations the generated goal differs.  Use
ballarin@27761
  2860
methods intro_locales and unfold_locales to clarify.
haftmann@27681
  2861
wenzelm@30845
  2862
- Locale interpretation commands no longer accept interpretation
wenzelm@30845
  2863
attributes.  INCOMPATIBILITY.
wenzelm@30845
  2864
wenzelm@30845
  2865
* Class declaration: so-called "base sort" must not be given in import
wenzelm@30845
  2866
list any longer, but is inferred from the specification.  Particularly
wenzelm@30845
  2867
in HOL, write
wenzelm@30845
  2868
wenzelm@30845
  2869
    class foo = ...
wenzelm@30845
  2870
wenzelm@30845
  2871
instead of
wenzelm@30845
  2872
wenzelm@30845
  2873
    class foo = type + ...
wenzelm@30845
  2874
wenzelm@30845
  2875
* Class target: global versions of theorems stemming do not carry a
wenzelm@30845
  2876
parameter prefix any longer.  INCOMPATIBILITY.
wenzelm@30845
  2877
wenzelm@30845
  2878
* Class 'instance' command no longer accepts attached definitions.
wenzelm@30845
  2879
INCOMPATIBILITY, use proper 'instantiation' target instead.
wenzelm@30845
  2880
wenzelm@30845
  2881
* Recovered hiding of consts, which was accidentally broken in
wenzelm@30845
  2882
Isabelle2007.  Potential INCOMPATIBILITY, ``hide const c'' really
wenzelm@30845
  2883
makes c inaccessible; consider using ``hide (open) const c'' instead.
wenzelm@30845
  2884
wenzelm@30845
  2885
* Slightly more coherent Pure syntax, with updated documentation in
wenzelm@30845
  2886
isar-ref manual.  Removed locales meta_term_syntax and
wenzelm@30845
  2887
meta_conjunction_syntax: TERM and &&& (formerly &&) are now permanent,
wenzelm@30845
  2888
INCOMPATIBILITY in rare situations.  Note that &&& should not be used
wenzelm@30845
  2889
directly in regular applications.
wenzelm@30845
  2890
wenzelm@30845
  2891
* There is a new syntactic category "float_const" for signed decimal
wenzelm@30845
  2892
fractions (e.g. 123.45 or -123.45).
wenzelm@30845
  2893
wenzelm@30845
  2894
* Removed exotic 'token_translation' command.  INCOMPATIBILITY, use ML
wenzelm@30845
  2895
interface with 'setup' command instead.
wenzelm@30845
  2896
wenzelm@30845
  2897
* Command 'local_setup' is similar to 'setup', but operates on a local
wenzelm@30845
  2898
theory context.
haftmann@27104
  2899
wenzelm@28114
  2900
* The 'axiomatization' command now only works within a global theory
wenzelm@28114
  2901
context.  INCOMPATIBILITY.
wenzelm@28114
  2902
wenzelm@30845
  2903
* Goal-directed proof now enforces strict proof irrelevance wrt. sort
wenzelm@30845
  2904
hypotheses.  Sorts required in the course of reasoning need to be
wenzelm@30845
  2905
covered by the constraints in the initial statement, completed by the
wenzelm@30845
  2906
type instance information of the background theory.  Non-trivial sort
wenzelm@30845
  2907
hypotheses, which rarely occur in practice, may be specified via
wenzelm@30845
  2908
vacuous propositions of the form SORT_CONSTRAINT('a::c).  For example:
wenzelm@30845
  2909
wenzelm@30845
  2910
  lemma assumes "SORT_CONSTRAINT('a::empty)" shows False ...
wenzelm@30845
  2911
wenzelm@30845
  2912
The result contains an implicit sort hypotheses as before --
wenzelm@30845
  2913
SORT_CONSTRAINT premises are eliminated as part of the canonical rule
wenzelm@30845
  2914
normalization.
wenzelm@30845
  2915
wenzelm@30845
  2916
* Generalized Isar history, with support for linear undo, direct state
wenzelm@30845
  2917
addressing etc.
wenzelm@30845
  2918
wenzelm@30845
  2919
* Changed defaults for unify configuration options:
wenzelm@30845
  2920
wenzelm@30845
  2921
  unify_trace_bound = 50 (formerly 25)
wenzelm@30845
  2922
  unify_search_bound = 60 (formerly 30)
wenzelm@30845
  2923
wenzelm@30845
  2924
* Different bookkeeping for code equations (INCOMPATIBILITY):
wenzelm@30845
  2925
wenzelm@30845
  2926
  a) On theory merge, the last set of code equations for a particular
wenzelm@30845
  2927
     constant is taken (in accordance with the policy applied by other
wenzelm@30845
  2928
     parts of the code generator framework).
wenzelm@30845
  2929
wenzelm@30845
  2930
  b) Code equations stemming from explicit declarations (e.g. code
wenzelm@30845
  2931
     attribute) gain priority over default code equations stemming
wenzelm@30845
  2932
     from definition, primrec, fun etc.
wenzelm@30845
  2933
wenzelm@30845
  2934
* Keyword 'code_exception' now named 'code_abort'.  INCOMPATIBILITY.
wenzelm@30845
  2935
haftmann@30965
  2936
* Unified theorem tables for both code generators.  Thus [code
wenzelm@30845
  2937
func] has disappeared and only [code] remains.  INCOMPATIBILITY.
wenzelm@30580
  2938
wenzelm@30580
  2939
* Command 'find_consts' searches for constants based on type and name
wenzelm@30580
  2940
patterns, e.g.
kleing@29820
  2941
kleing@29820
  2942
    find_consts "_ => bool"
kleing@29820
  2943
wenzelm@30106
  2944
By default, matching is against subtypes, but it may be restricted to
wenzelm@30731
  2945
the whole type.  Searching by name is possible.  Multiple queries are
wenzelm@30106
  2946
conjunctive and queries may be negated by prefixing them with a
wenzelm@30106
  2947
hyphen:
kleing@29820
  2948
kleing@29820
  2949
    find_consts strict: "_ => bool" name: "Int" -"int => int"
kleing@29798
  2950
wenzelm@30845
  2951
* New 'find_theorems' criterion "solves" matches theorems that
wenzelm@30845
  2952
directly solve the current goal (modulo higher-order unification).
wenzelm@30845
  2953
wenzelm@30845
  2954
* Auto solve feature for main theorem statements: whenever a new goal
wenzelm@30845
  2955
is stated, "find_theorems solves" is called; any theorems that could
wenzelm@30845
  2956
solve the lemma directly are listed as part of the goal state.
wenzelm@30845
  2957
Cf. associated options in Proof General Isabelle settings menu,
wenzelm@30845
  2958
enabled by default, with reasonable timeout for pathological cases of
wenzelm@30845
  2959
higher-order unification.
webertj@30409
  2960
haftmann@27651
  2961
haftmann@27651
  2962
*** Document preparation ***
haftmann@27651
  2963
haftmann@27651
  2964
* Antiquotation @{lemma} now imitates a regular terminal proof,
haftmann@27651
  2965
demanding keyword 'by' and supporting the full method expression
haftmann@27651
  2966
syntax just like the Isar command 'by'.
haftmann@27651
  2967
haftmann@27651
  2968
haftmann@27651
  2969
*** HOL ***
haftmann@27651
  2970
wenzelm@30845
  2971
* Integrated main parts of former image HOL-Complex with HOL.  Entry
wenzelm@30845
  2972
points Main and Complex_Main remain as before.
wenzelm@30845
  2973
wenzelm@30845
  2974
* Logic image HOL-Plain provides a minimal HOL with the most important
wenzelm@30845
  2975
tools available (inductive, datatype, primrec, ...).  This facilitates
wenzelm@30845
  2976
experimentation and tool development.  Note that user applications
wenzelm@30845
  2977
(and library theories) should never refer to anything below theory
wenzelm@30845
  2978
Main, as before.
wenzelm@30845
  2979
wenzelm@30845
  2980
* Logic image HOL-Main stops at theory Main, and thus facilitates
wenzelm@30845
  2981
experimentation due to shorter build times.
wenzelm@30845
  2982
wenzelm@30845
  2983
* Logic image HOL-NSA contains theories of nonstandard analysis which
wenzelm@30845
  2984
were previously part of former HOL-Complex.  Entry point Hyperreal
wenzelm@30845
  2985
remains valid, but theories formerly using Complex_Main should now use
wenzelm@30845
  2986
new entry point Hypercomplex.
wenzelm@30845
  2987
wenzelm@30845
  2988
* Generic ATP manager for Sledgehammer, based on ML threads instead of
wenzelm@30845
  2989
Posix processes.  Avoids potentially expensive forking of the ML
wenzelm@30845
  2990
process.  New thread-based implementation also works on non-Unix
wenzelm@30845
  2991
platforms (Cygwin).  Provers are no longer hardwired, but defined
wenzelm@30845
  2992
within the theory via plain ML wrapper functions.  Basic Sledgehammer
wenzelm@30845
  2993
commands are covered in the isar-ref manual.
wenzelm@30845
  2994
wenzelm@30845
  2995
* Wrapper scripts for remote SystemOnTPTP service allows to use
wenzelm@30845
  2996
sledgehammer without local ATP installation (Vampire etc.). Other
wenzelm@30845
  2997
provers may be included via suitable ML wrappers, see also
wenzelm@30845
  2998
src/HOL/ATP_Linkup.thy.
wenzelm@30845
  2999
wenzelm@30845
  3000
* ATP selection (E/Vampire/Spass) is now via Proof General's settings
wenzelm@30845
  3001
menu.
wenzelm@30845
  3002
wenzelm@30845
  3003
* The metis method no longer fails because the theorem is too trivial
wenzelm@30845
  3004
(contains the empty clause).
wenzelm@30845
  3005
wenzelm@30845
  3006
* The metis method now fails in the usual manner, rather than raising
wenzelm@30845
  3007
an exception, if it determines that it cannot prove the theorem.
wenzelm@30845
  3008
wenzelm@30845
  3009
* Method "coherent" implements a prover for coherent logic (see also
wenzelm@30845
  3010
src/Tools/coherent.ML).
wenzelm@30845
  3011
wenzelm@30845
  3012
* Constants "undefined" and "default" replace "arbitrary".  Usually
wenzelm@30845
  3013
"undefined" is the right choice to replace "arbitrary", though
wenzelm@30845
  3014
logically there is no difference.  INCOMPATIBILITY.
wenzelm@30845
  3015
wenzelm@30845
  3016
* Command "value" now integrates different evaluation mechanisms.  The
wenzelm@30845
  3017
result of the first successful evaluation mechanism is printed.  In
wenzelm@30845
  3018
square brackets a particular named evaluation mechanisms may be
wenzelm@30845
  3019
specified (currently, [SML], [code] or [nbe]).  See further
wenzelm@30845
  3020
src/HOL/ex/Eval_Examples.thy.
wenzelm@30845
  3021
wenzelm@30845
  3022
* Normalization by evaluation now allows non-leftlinear equations.
wenzelm@30845
  3023
Declare with attribute [code nbe].
wenzelm@30845
  3024
wenzelm@30845
  3025
* Methods "case_tac" and "induct_tac" now refer to the very same rules
wenzelm@30845
  3026
as the structured Isar versions "cases" and "induct", cf. the
wenzelm@30845
  3027
corresponding "cases" and "induct" attributes.  Mutual induction rules
wenzelm@30845
  3028
are now presented as a list of individual projections
wenzelm@30845
  3029
(e.g. foo_bar.inducts for types foo and bar); the old format with
wenzelm@30845
  3030
explicit HOL conjunction is no longer supported.  INCOMPATIBILITY, in
wenzelm@30845
  3031
rare situations a different rule is selected --- notably nested tuple
wenzelm@30845
  3032
elimination instead of former prod.exhaust: use explicit (case_tac t
wenzelm@30845
  3033
rule: prod.exhaust) here.
wenzelm@30845
  3034
wenzelm@30845
  3035
* Attributes "cases", "induct", "coinduct" support "del" option.
wenzelm@30845
  3036
wenzelm@30845
  3037
* Removed fact "case_split_thm", which duplicates "case_split".
wenzelm@30845
  3038
wenzelm@30845
  3039
* The option datatype has been moved to a new theory Option.  Renamed
wenzelm@30845
  3040
option_map to Option.map, and o2s to Option.set, INCOMPATIBILITY.
wenzelm@30845
  3041
wenzelm@30845
  3042
* New predicate "strict_mono" classifies strict functions on partial
wenzelm@30845
  3043
orders.  With strict functions on linear orders, reasoning about
wenzelm@30845
  3044
(in)equalities is facilitated by theorems "strict_mono_eq",
wenzelm@30845
  3045
"strict_mono_less_eq" and "strict_mono_less".
wenzelm@30845
  3046
wenzelm@30845
  3047
* Some set operations are now proper qualified constants with
wenzelm@30845
  3048
authentic syntax.  INCOMPATIBILITY:
haftmann@30304
  3049
haftmann@30304
  3050
    op Int ~>   Set.Int
haftmann@30304
  3051
    op Un ~>    Set.Un
haftmann@30304
  3052
    INTER ~>    Set.INTER
haftmann@30304
  3053
    UNION ~>    Set.UNION
haftmann@30304
  3054
    Inter ~>    Set.Inter
haftmann@30304
  3055
    Union ~>    Set.Union
haftmann@30304
  3056
    {} ~>       Set.empty
haftmann@30304
  3057
    UNIV ~>     Set.UNIV
haftmann@30304
  3058
wenzelm@30845
  3059
* Class complete_lattice with operations Inf, Sup, INFI, SUPR now in
wenzelm@30845
  3060
theory Set.
wenzelm@30845
  3061
wenzelm@30845
  3062
* Auxiliary class "itself" has disappeared -- classes without any
wenzelm@30845
  3063
parameter are treated as expected by the 'class' command.
haftmann@29734
  3064
haftmann@29760
  3065
* Leibnitz's Series for Pi and the arcus tangens and logarithm series.
haftmann@29760
  3066
wenzelm@30845
  3067
* Common decision procedures (Cooper, MIR, Ferrack, Approximation,
wenzelm@30845
  3068
Dense_Linear_Order) are now in directory HOL/Decision_Procs.
wenzelm@30845
  3069
wenzelm@30845
  3070
* Theory src/HOL/Decision_Procs/Approximation provides the new proof
wenzelm@30845
  3071
method "approximation".  It proves formulas on real values by using
wenzelm@30845
  3072
interval arithmetic.  In the formulas are also the transcendental
wenzelm@30845
  3073
functions sin, cos, tan, atan, ln, exp and the constant pi are
wenzelm@30845
  3074
allowed. For examples see
wenzelm@30845
  3075
src/HOL/Descision_Procs/ex/Approximation_Ex.thy.
haftmann@29760
  3076
haftmann@29760
  3077
* Theory "Reflection" now resides in HOL/Library.
haftmann@29650
  3078
wenzelm@30845
  3079
* Entry point to Word library now simply named "Word".
wenzelm@30845
  3080
INCOMPATIBILITY.
haftmann@29628
  3081
haftmann@29197
  3082
* Made source layout more coherent with logical distribution
haftmann@29197
  3083
structure:
haftmann@28952
  3084
haftmann@28952
  3085
    src/HOL/Library/RType.thy ~> src/HOL/Typerep.thy
haftmann@28952
  3086
    src/HOL/Library/Code_Message.thy ~> src/HOL/
haftmann@28952
  3087
    src/HOL/Library/GCD.thy ~> src/HOL/
haftmann@28952
  3088
    src/HOL/Library/Order_Relation.thy ~> src/HOL/
haftmann@28952
  3089
    src/HOL/Library/Parity.thy ~> src/HOL/
haftmann@28952
  3090
    src/HOL/Library/Univ_Poly.thy ~> src/HOL/
huffman@30173
  3091
    src/HOL/Real/ContNotDenum.thy ~> src/HOL/Library/
haftmann@28952
  3092
    src/HOL/Real/Lubs.thy ~> src/HOL/
haftmann@28952
  3093
    src/HOL/Real/PReal.thy ~> src/HOL/
haftmann@28952
  3094
    src/HOL/Real/Rational.thy ~> src/HOL/
haftmann@28952
  3095
    src/HOL/Real/RComplete.thy ~> src/HOL/
haftmann@28952
  3096
    src/HOL/Real/RealDef.thy ~> src/HOL/
haftmann@28952
  3097
    src/HOL/Real/RealPow.thy ~> src/HOL/
haftmann@28952
  3098
    src/HOL/Real/Real.thy ~> src/HOL/
haftmann@28952
  3099
    src/HOL/Complex/Complex_Main.thy ~> src/HOL/
haftmann@28952
  3100
    src/HOL/Complex/Complex.thy ~> src/HOL/
huffman@30173
  3101
    src/HOL/Complex/FrechetDeriv.thy ~> src/HOL/Library/
huffman@30173
  3102
    src/HOL/Complex/Fundamental_Theorem_Algebra.thy ~> src/HOL/Library/
haftmann@28952
  3103
    src/HOL/Hyperreal/Deriv.thy ~> src/HOL/
haftmann@28952
  3104
    src/HOL/Hyperreal/Fact.thy ~> src/HOL/
haftmann@28952
  3105
    src/HOL/Hyperreal/Integration.thy ~> src/HOL/
haftmann@28952
  3106
    src/HOL/Hyperreal/Lim.thy ~> src/HOL/
haftmann@28952
  3107
    src/HOL/Hyperreal/Ln.thy ~> src/HOL/
haftmann@28952
  3108
    src/HOL/Hyperreal/Log.thy ~> src/HOL/
haftmann@28952
  3109
    src/HOL/Hyperreal/MacLaurin.thy ~> src/HOL/
haftmann@28952
  3110
    src/HOL/Hyperreal/NthRoot.thy ~> src/HOL/
haftmann@28952
  3111
    src/HOL/Hyperreal/Series.thy ~> src/HOL/
haftmann@29197
  3112
    src/HOL/Hyperreal/SEQ.thy ~> src/HOL/
haftmann@28952
  3113
    src/HOL/Hyperreal/Taylor.thy ~> src/HOL/
haftmann@28952
  3114
    src/HOL/Hyperreal/Transcendental.thy ~> src/HOL/
haftmann@28952
  3115
    src/HOL/Real/Float ~> src/HOL/Library/
haftmann@29197
  3116
    src/HOL/Real/HahnBanach ~> src/HOL/HahnBanach
haftmann@29197
  3117
    src/HOL/Real/RealVector.thy ~> src/HOL/
haftmann@28952
  3118
haftmann@28952
  3119
    src/HOL/arith_data.ML ~> src/HOL/Tools
haftmann@28952
  3120
    src/HOL/hologic.ML ~> src/HOL/Tools
haftmann@28952
  3121
    src/HOL/simpdata.ML ~> src/HOL/Tools
haftmann@28952
  3122
    src/HOL/int_arith1.ML ~> src/HOL/Tools/int_arith.ML
haftmann@28952
  3123
    src/HOL/int_factor_simprocs.ML ~> src/HOL/Tools
haftmann@28952
  3124
    src/HOL/nat_simprocs.ML ~> src/HOL/Tools
haftmann@28952
  3125
    src/HOL/Real/float_arith.ML ~> src/HOL/Tools
haftmann@28952
  3126
    src/HOL/Real/float_syntax.ML ~> src/HOL/Tools
haftmann@28952
  3127
    src/HOL/Real/rat_arith.ML ~> src/HOL/Tools
haftmann@28952
  3128
    src/HOL/Real/real_arith.ML ~> src/HOL/Tools
haftmann@28952
  3129
haftmann@29395
  3130
    src/HOL/Library/Array.thy ~> src/HOL/Imperative_HOL
haftmann@29395
  3131
    src/HOL/Library/Heap_Monad.thy ~> src/HOL/Imperative_HOL
haftmann@29395
  3132
    src/HOL/Library/Heap.thy ~> src/HOL/Imperative_HOL
haftmann@29395
  3133
    src/HOL/Library/Imperative_HOL.thy ~> src/HOL/Imperative_HOL
haftmann@29395
  3134
    src/HOL/Library/Ref.thy ~> src/HOL/Imperative_HOL
haftmann@29395
  3135
    src/HOL/Library/Relational.thy ~> src/HOL/Imperative_HOL
haftmann@29395
  3136
wenzelm@30845
  3137
* If methods "eval" and "evaluation" encounter a structured proof
wenzelm@30845
  3138
state with !!/==>, only the conclusion is evaluated to True (if
wenzelm@30845
  3139
possible), avoiding strange error messages.
wenzelm@30845
  3140
wenzelm@30845
  3141
* Method "sizechange" automates termination proofs using (a
wenzelm@30845
  3142
modification of) the size-change principle.  Requires SAT solver.  See
wenzelm@30845
  3143
src/HOL/ex/Termination.thy for examples.
wenzelm@30845
  3144
wenzelm@30845
  3145
* Simplifier: simproc for let expressions now unfolds if bound
wenzelm@30845
  3146
variable occurs at most once in let expression body.  INCOMPATIBILITY.
wenzelm@30845
  3147
wenzelm@30845
  3148
* Method "arith": Linear arithmetic now ignores all inequalities when
wenzelm@30845
  3149
fast_arith_neq_limit is exceeded, instead of giving up entirely.
wenzelm@30845
  3150
wenzelm@30845
  3151
* New attribute "arith" for facts that should always be used
wenzelm@30845
  3152
automatically by arithmetic. It is intended to be used locally in
wenzelm@30845
  3153
proofs, e.g.
wenzelm@30845
  3154
wenzelm@30845
  3155
  assumes [arith]: "x > 0"
wenzelm@30845
  3156
nipkow@30702
  3157
Global usage is discouraged because of possible performance impact.
nipkow@30702
  3158
wenzelm@30845
  3159
* New classes "top" and "bot" with corresponding operations "top" and
wenzelm@30845
  3160
"bot" in theory Orderings; instantiation of class "complete_lattice"
wenzelm@30845
  3161
requires instantiation of classes "top" and "bot".  INCOMPATIBILITY.
wenzelm@30845
  3162
wenzelm@30845
  3163
* Changed definition lemma "less_fun_def" in order to provide an
wenzelm@30845
  3164
instance for preorders on functions; use lemma "less_le" instead.
wenzelm@30845
  3165
INCOMPATIBILITY.
wenzelm@30845
  3166
wenzelm@30845
  3167
* Theory Orderings: class "wellorder" moved here, with explicit
wenzelm@30845
  3168
induction rule "less_induct" as assumption.  For instantiation of
wenzelm@30845
  3169
"wellorder" by means of predicate "wf", use rule wf_wellorderI.
wenzelm@30845
  3170
INCOMPATIBILITY.
wenzelm@30845
  3171
wenzelm@30845
  3172
* Theory Orderings: added class "preorder" as superclass of "order".
wenzelm@27793
  3173
INCOMPATIBILITY: Instantiation proofs for order, linorder
wenzelm@27793
  3174
etc. slightly changed.  Some theorems named order_class.* now named
wenzelm@27793
  3175
preorder_class.*.
wenzelm@27793
  3176
wenzelm@30845
  3177
* Theory Relation: renamed "refl" to "refl_on", "reflexive" to "refl,
wenzelm@30845
  3178
"diag" to "Id_on".
wenzelm@30845
  3179
wenzelm@30845
  3180
* Theory Finite_Set: added a new fold combinator of type
wenzelm@30845
  3181
nipkow@28855
  3182
  ('a => 'b => 'b) => 'b => 'a set => 'b
wenzelm@30845
  3183
wenzelm@30845
  3184
Occasionally this is more convenient than the old fold combinator
wenzelm@30845
  3185
which is now defined in terms of the new one and renamed to
wenzelm@30845
  3186
fold_image.
wenzelm@30845
  3187
wenzelm@30845
  3188
* Theories Ring_and_Field and OrderedGroup: The lemmas "group_simps"
wenzelm@30845
  3189
and "ring_simps" have been replaced by "algebra_simps" (which can be
wenzelm@30845
  3190
extended with further lemmas!).  At the moment both still exist but
wenzelm@30845
  3191
the former will disappear at some point.
wenzelm@30845
  3192
wenzelm@30845
  3193
* Theory Power: Lemma power_Suc is now declared as a simp rule in
wenzelm@30845
  3194
class recpower.  Type-specific simp rules for various recpower types
wenzelm@30845
  3195
have been removed.  INCOMPATIBILITY, rename old lemmas as follows:
huffman@30269
  3196
huffman@30269
  3197
rat_power_0    -> power_0
huffman@30269
  3198
rat_power_Suc  -> power_Suc
huffman@30269
  3199
realpow_0      -> power_0
huffman@30269
  3200
realpow_Suc    -> power_Suc
huffman@30269
  3201
complexpow_0   -> power_0
huffman@30269
  3202
complexpow_Suc -> power_Suc
huffman@30269
  3203
power_poly_0   -> power_0
huffman@30269
  3204
power_poly_Suc -> power_Suc
huffman@30269
  3205
wenzelm@30845
  3206
* Theories Ring_and_Field and Divides: Definition of "op dvd" has been
wenzelm@27793
  3207
moved to separate class dvd in Ring_and_Field; a couple of lemmas on
wenzelm@27793
  3208
dvd has been generalized to class comm_semiring_1.  Likewise a bunch
wenzelm@27793
  3209
of lemmas from Divides has been generalized from nat to class
wenzelm@27793
  3210
semiring_div.  INCOMPATIBILITY.  This involves the following theorem
wenzelm@27793
  3211
renames resulting from duplicate elimination:
haftmann@27651
  3212
haftmann@27651
  3213
    dvd_def_mod ~>          dvd_eq_mod_eq_0
haftmann@27651
  3214
    zero_dvd_iff ~>         dvd_0_left_iff
haftmann@28559
  3215
    dvd_0 ~>                dvd_0_right
haftmann@27651
  3216
    DIVISION_BY_ZERO_DIV ~> div_by_0
haftmann@27651
  3217
    DIVISION_BY_ZERO_MOD ~> mod_by_0
haftmann@27651
  3218
    mult_div ~>             div_mult_self2_is_id
haftmann@27651
  3219
    mult_mod ~>             mod_mult_self2_is_0
haftmann@27651
  3220
wenzelm@30845
  3221
* Theory IntDiv: removed many lemmas that are instances of class-based
wenzelm@30845
  3222
generalizations (from Divides and Ring_and_Field).  INCOMPATIBILITY,
wenzelm@30845
  3223
rename old lemmas as follows:
nipkow@29981
  3224
nipkow@29981
  3225
dvd_diff               -> nat_dvd_diff
nipkow@29981
  3226
dvd_zminus_iff         -> dvd_minus_iff
nipkow@30208
  3227
mod_add1_eq            -> mod_add_eq
nipkow@30208
  3228
mod_mult1_eq           -> mod_mult_right_eq
nipkow@30208
  3229
mod_mult1_eq'          -> mod_mult_left_eq
nipkow@30208
  3230
mod_mult_distrib_mod   -> mod_mult_eq
nipkow@29981
  3231
nat_mod_add_left_eq    -> mod_add_left_eq
nipkow@29981
  3232
nat_mod_add_right_eq   -> mod_add_right_eq
nipkow@29981
  3233
nat_mod_div_trivial    -> mod_div_trivial
nipkow@29981
  3234
nat_mod_mod_trivial    -> mod_mod_trivial
nipkow@29981
  3235
zdiv_zadd_self1        -> div_add_self1
nipkow@29981
  3236
zdiv_zadd_self2        -> div_add_self2
nipkow@30181
  3237
zdiv_zmult_self1       -> div_mult_self2_is_id
nipkow@29981
  3238
zdiv_zmult_self2       -> div_mult_self1_is_id
nipkow@29981
  3239
zdvd_triv_left         -> dvd_triv_left
nipkow@29981
  3240
zdvd_triv_right        -> dvd_triv_right
nipkow@29981
  3241
zdvd_zmult_cancel_disj -> dvd_mult_cancel_left
nipkow@30022
  3242
zmod_eq0_zdvd_iff      -> dvd_eq_mod_eq_0[symmetric]
nipkow@29981
  3243
zmod_zadd_left_eq      -> mod_add_left_eq
nipkow@29981
  3244
zmod_zadd_right_eq     -> mod_add_right_eq
nipkow@29981
  3245
zmod_zadd_self1        -> mod_add_self1
nipkow@29981
  3246
zmod_zadd_self2        -> mod_add_self2
nipkow@30208
  3247
zmod_zadd1_eq          -> mod_add_eq
nipkow@29981
  3248
zmod_zdiff1_eq         -> mod_diff_eq
nipkow@29981
  3249
zmod_zdvd_zmod         -> mod_mod_cancel
nipkow@29981
  3250
zmod_zmod_cancel       -> mod_mod_cancel
nipkow@29981
  3251
zmod_zmult_self1       -> mod_mult_self2_is_0
nipkow@29981
  3252
zmod_zmult_self2       -> mod_mult_self1_is_0
nipkow@29981
  3253
zmod_1                 -> mod_by_1
nipkow@29981
  3254
zdiv_1                 -> div_by_1
nipkow@29981
  3255
zdvd_abs1              -> abs_dvd_iff
nipkow@29981
  3256
zdvd_abs2              -> dvd_abs_iff
nipkow@29981
  3257
zdvd_refl              -> dvd_refl
nipkow@29981
  3258
zdvd_trans             -> dvd_trans
nipkow@29981
  3259
zdvd_zadd              -> dvd_add
nipkow@29981
  3260
zdvd_zdiff             -> dvd_diff
nipkow@29981
  3261
zdvd_zminus_iff        -> dvd_minus_iff
nipkow@29981
  3262
zdvd_zminus2_iff       -> minus_dvd_iff
nipkow@29981
  3263
zdvd_zmultD            -> dvd_mult_right
nipkow@29981
  3264
zdvd_zmultD2           -> dvd_mult_left
nipkow@29981
  3265
zdvd_zmult_mono        -> mult_dvd_mono
nipkow@29981
  3266
zdvd_0_right           -> dvd_0_right
nipkow@29981
  3267
zdvd_0_left            -> dvd_0_left_iff
nipkow@29981
  3268
zdvd_1_left            -> one_dvd
nipkow@29981
  3269
zminus_dvd_iff         -> minus_dvd_iff
nipkow@29981
  3270
wenzelm@30845
  3271
* Theory Rational: 'Fract k 0' now equals '0'.  INCOMPATIBILITY.
wenzelm@30845
  3272
wenzelm@30845
  3273
* The real numbers offer decimal input syntax: 12.34 is translated
wenzelm@30845
  3274
into 1234/10^2. This translation is not reversed upon output.
wenzelm@30845
  3275
wenzelm@30845
  3276
* Theory Library/Polynomial defines an abstract type 'a poly of
wenzelm@30845
  3277
univariate polynomials with coefficients of type 'a.  In addition to
wenzelm@30845
  3278
the standard ring operations, it also supports div and mod.  Code
wenzelm@30845
  3279
generation is also supported, using list-style constructors.
wenzelm@30845
  3280
wenzelm@30845
  3281
* Theory Library/Inner_Product defines a class of real_inner for real
wenzelm@30845
  3282
inner product spaces, with an overloaded operation inner :: 'a => 'a
wenzelm@30845
  3283
=> real.  Class real_inner is a subclass of real_normed_vector from
wenzelm@30845
  3284
theory RealVector.
wenzelm@30845
  3285
wenzelm@30845
  3286
* Theory Library/Product_Vector provides instances for the product
wenzelm@30845
  3287
type 'a * 'b of several classes from RealVector and Inner_Product.
wenzelm@30845
  3288
Definitions of addition, subtraction, scalar multiplication, norms,
wenzelm@30845
  3289
and inner products are included.
wenzelm@30845
  3290
wenzelm@30845
  3291
* Theory Library/Bit defines the field "bit" of integers modulo 2.  In
wenzelm@30845
  3292
addition to the field operations, numerals and case syntax are also
wenzelm@30845
  3293
supported.
wenzelm@30845
  3294
wenzelm@30845
  3295
* Theory Library/Diagonalize provides constructive version of Cantor's
wenzelm@30845
  3296
first diagonalization argument.
wenzelm@30845
  3297
wenzelm@30845
  3298
* Theory Library/GCD: Curried operations gcd, lcm (for nat) and zgcd,
haftmann@27651
  3299
zlcm (for int); carried together from various gcd/lcm developements in
wenzelm@30845
  3300
the HOL Distribution.  Constants zgcd and zlcm replace former igcd and
wenzelm@30845
  3301
ilcm; corresponding theorems renamed accordingly.  INCOMPATIBILITY,
wenzelm@30845
  3302
may recover tupled syntax as follows:
haftmann@27651
  3303
haftmann@27651
  3304
    hide (open) const gcd
haftmann@27651
  3305
    abbreviation gcd where
haftmann@27651
  3306
      "gcd == (%(a, b). GCD.gcd a b)"
haftmann@27651
  3307
    notation (output)
haftmann@27651
  3308
      GCD.gcd ("gcd '(_, _')")
haftmann@27651
  3309
wenzelm@30845
  3310
The same works for lcm, zgcd, zlcm.
wenzelm@30845
  3311
wenzelm@30845
  3312
* Theory Library/Nat_Infinity: added addition, numeral syntax and more
wenzelm@30845
  3313
instantiations for algebraic structures.  Removed some duplicate
wenzelm@30845
  3314
theorems.  Changes in simp rules.  INCOMPATIBILITY.
wenzelm@30845
  3315
wenzelm@30845
  3316
* ML antiquotation @{code} takes a constant as argument and generates
wenzelm@27519
  3317
corresponding code in background and inserts name of the corresponding
wenzelm@27519
  3318
resulting ML value/function/datatype constructor binding in place.
wenzelm@27519
  3319
All occurrences of @{code} with a single ML block are generated
wenzelm@27519
  3320
simultaneously.  Provides a generic and safe interface for
wenzelm@30845
  3321
instrumentalizing code generation.  See
wenzelm@30845
  3322
src/HOL/Decision_Procs/Ferrack.thy for a more ambitious application.
wenzelm@30845
  3323
In future you ought to refrain from ad-hoc compiling generated SML
wenzelm@30845
  3324
code on the ML toplevel.  Note that (for technical reasons) @{code}
wenzelm@30845
  3325
cannot refer to constants for which user-defined serializations are
wenzelm@30845
  3326
set.  Refer to the corresponding ML counterpart directly in that
wenzelm@30845
  3327
cases.
wenzelm@27122
  3328
wenzelm@27122
  3329
* Command 'rep_datatype': instead of theorem names the command now
wenzelm@27122
  3330
takes a list of terms denoting the constructors of the type to be
wenzelm@27122
  3331
represented as datatype.  The characteristic theorems have to be
wenzelm@27122
  3332
proven.  INCOMPATIBILITY.  Also observe that the following theorems
wenzelm@27122
  3333
have disappeared in favour of existing ones:
wenzelm@27122
  3334
haftmann@27104
  3335
    unit_induct                 ~> unit.induct
haftmann@27104
  3336
    prod_induct                 ~> prod.induct
haftmann@27104
  3337
    sum_induct                  ~> sum.induct
haftmann@27104
  3338
    Suc_Suc_eq                  ~> nat.inject
haftmann@27104
  3339
    Suc_not_Zero Zero_not_Suc   ~> nat.distinct
haftmann@27104
  3340
haftmann@27104
  3341
ballarin@27696
  3342
*** HOL-Algebra ***
ballarin@27696
  3343
ballarin@27713
  3344
* New locales for orders and lattices where the equivalence relation
wenzelm@30106
  3345
is not restricted to equality.  INCOMPATIBILITY: all order and lattice
wenzelm@30106
  3346
locales use a record structure with field eq for the equivalence.
ballarin@27713
  3347
ballarin@27713
  3348
* New theory of factorial domains.
ballarin@27713
  3349
wenzelm@30845
  3350
* Units_l_inv and Units_r_inv are now simp rules by default.
ballarin@27696
  3351
INCOMPATIBILITY.  Simplifier proof that require deletion of l_inv
ballarin@27696
  3352
and/or r_inv will now also require deletion of these lemmas.
ballarin@27696
  3353
wenzelm@30845
  3354
* Renamed the following theorems, INCOMPATIBILITY:
wenzelm@30845
  3355
ballarin@27696
  3356
UpperD ~> Upper_memD
ballarin@27696
  3357
LowerD ~> Lower_memD
ballarin@27696
  3358
least_carrier ~> least_closed
ballarin@27696
  3359
greatest_carrier ~> greatest_closed
ballarin@27696
  3360
greatest_Lower_above ~> greatest_Lower_below
ballarin@27717
  3361
one_zero ~> carrier_one_zero
ballarin@27717
  3362
one_not_zero ~> carrier_one_not_zero  (collision with assumption)
ballarin@27696
  3363
wenzelm@27793
  3364
wenzelm@30849
  3365
*** HOL-Nominal ***
wenzelm@30849
  3366
wenzelm@30855
  3367
* Nominal datatypes can now contain type-variables.
wenzelm@30855
  3368
wenzelm@30855
  3369
* Commands 'nominal_inductive' and 'equivariance' work with local
wenzelm@30855
  3370
theory targets.
wenzelm@30855
  3371
wenzelm@30855
  3372
* Nominal primrec can now works with local theory targets and its
wenzelm@30855
  3373
specification syntax now conforms to the general format as seen in
wenzelm@30855
  3374
'inductive' etc.
wenzelm@30855
  3375
wenzelm@30855
  3376
* Method "perm_simp" honours the standard simplifier attributes
wenzelm@30855
  3377
(no_asm), (no_asm_use) etc.
wenzelm@30855
  3378
wenzelm@30855
  3379
* The new predicate #* is defined like freshness, except that on the
wenzelm@30855
  3380
left hand side can be a set or list of atoms.
wenzelm@30855
  3381
wenzelm@30855
  3382
* Experimental command 'nominal_inductive2' derives strong induction
wenzelm@30855
  3383
principles for inductive definitions.  In contrast to
wenzelm@30855
  3384
'nominal_inductive', which can only deal with a fixed number of
wenzelm@30855
  3385
binders, it can deal with arbitrary expressions standing for sets of
wenzelm@30855
  3386
atoms to be avoided.  The only inductive definition we have at the
wenzelm@30855
  3387
moment that needs this generalisation is the typing rule for Lets in
wenzelm@30855
  3388
the algorithm W:
wenzelm@30855
  3389
wenzelm@30855
  3390
 Gamma |- t1 : T1   (x,close Gamma T1)::Gamma |- t2 : T2   x#Gamma
wenzelm@30855
  3391
 -----------------------------------------------------------------
wenzelm@30855
  3392
         Gamma |- Let x be t1 in t2 : T2
wenzelm@30855
  3393
wenzelm@30855
  3394
In this rule one wants to avoid all the binders that are introduced by
wenzelm@30855
  3395
"close Gamma T1".  We are looking for other examples where this
wenzelm@30855
  3396
feature might be useful.  Please let us know.
wenzelm@30849
  3397
wenzelm@30849
  3398
huffman@30173
  3399
*** HOLCF ***
huffman@30173
  3400
huffman@30173
  3401
* Reimplemented the simplification procedure for proving continuity
huffman@30173
  3402
subgoals.  The new simproc is extensible; users can declare additional
huffman@30173
  3403
continuity introduction rules with the attribute [cont2cont].
huffman@30173
  3404
huffman@30173
  3405
* The continuity simproc now uses a different introduction rule for
huffman@30173
  3406
solving continuity subgoals on terms with lambda abstractions.  In
huffman@30173
  3407
some rare cases the new simproc may fail to solve subgoals that the
huffman@30173
  3408
old one could solve, and "simp add: cont2cont_LAM" may be necessary.
huffman@30173
  3409
Potential INCOMPATIBILITY.
huffman@30173
  3410
wenzelm@30847
  3411
* Command 'fixrec': specification syntax now conforms to the general
wenzelm@30855
  3412
format as seen in 'inductive' etc.  See src/HOLCF/ex/Fixrec_ex.thy for
wenzelm@30855
  3413
examples.  INCOMPATIBILITY.
wenzelm@30845
  3414
wenzelm@30845
  3415
wenzelm@30845
  3416
*** ZF ***
wenzelm@30845
  3417
wenzelm@30845
  3418
* Proof of Zorn's Lemma for partial orders.
huffman@30173
  3419
huffman@30173
  3420
wenzelm@27246
  3421
*** ML ***
wenzelm@28088
  3422
wenzelm@30845
  3423
* Multithreading for Poly/ML 5.1/5.2 is no longer supported, only for
wenzelm@30845
  3424
Poly/ML 5.2.1 or later.  Important note: the TimeLimit facility
wenzelm@30845
  3425
depends on multithreading, so timouts will not work before Poly/ML
wenzelm@30845
  3426
5.2.1!
wenzelm@30845
  3427
wenzelm@29161
  3428
* High-level support for concurrent ML programming, see
wenzelm@29161
  3429
src/Pure/Cuncurrent.  The data-oriented model of "future values" is
wenzelm@29161
  3430
particularly convenient to organize independent functional
wenzelm@29161
  3431
computations.  The concept of "synchronized variables" provides a
wenzelm@29161
  3432
higher-order interface for components with shared state, avoiding the
wenzelm@30845
  3433
delicate details of mutexes and condition variables.  (Requires
wenzelm@30845
  3434
Poly/ML 5.2.1 or later.)
wenzelm@30845
  3435
wenzelm@30845
  3436
* ML bindings produced via Isar commands are stored within the Isar
wenzelm@30845
  3437
context (theory or proof).  Consequently, commands like 'use' and 'ML'
wenzelm@30845
  3438
become thread-safe and work with undo as expected (concerning
wenzelm@30845
  3439
top-level bindings, not side-effects on global references).
wenzelm@30845
  3440
INCOMPATIBILITY, need to provide proper Isar context when invoking the
wenzelm@30845
  3441
compiler at runtime; really global bindings need to be given outside a
wenzelm@30845
  3442
theory.  (Requires Poly/ML 5.2 or later.)
wenzelm@30845
  3443
wenzelm@30845
  3444
* Command 'ML_prf' is analogous to 'ML' but works within a proof
wenzelm@30845
  3445
context.  Top-level ML bindings are stored within the proof context in
wenzelm@30845
  3446
a purely sequential fashion, disregarding the nested proof structure.
wenzelm@30845
  3447
ML bindings introduced by 'ML_prf' are discarded at the end of the
wenzelm@30845
  3448
proof.  (Requires Poly/ML 5.2 or later.)
wenzelm@29161
  3449
wenzelm@30532
  3450
* Simplified ML attribute and method setup, cf. functions Attrib.setup
wenzelm@30845
  3451
and Method.setup, as well as Isar commands 'attribute_setup' and
wenzelm@30547
  3452
'method_setup'.  INCOMPATIBILITY for 'method_setup', need to simplify
wenzelm@30547
  3453
existing code accordingly, or use plain 'setup' together with old
wenzelm@30547
  3454
Method.add_method.
wenzelm@30532
  3455
wenzelm@28294
  3456
* Simplified ML oracle interface Thm.add_oracle promotes 'a -> cterm
wenzelm@28294
  3457
to 'a -> thm, while results are always tagged with an authentic oracle
wenzelm@28294
  3458
name.  The Isar command 'oracle' is now polymorphic, no argument type
wenzelm@28294
  3459
is specified.  INCOMPATIBILITY, need to simplify existing oracle code
wenzelm@28294
  3460
accordingly.  Note that extra performance may be gained by producing
wenzelm@28294
  3461
the cterm carefully, avoiding slow Thm.cterm_of.
wenzelm@28294
  3462
wenzelm@30845
  3463
* Simplified interface for defining document antiquotations via
wenzelm@30845
  3464
ThyOutput.antiquotation, ThyOutput.output, and optionally
wenzelm@30845
  3465
ThyOutput.maybe_pretty_source.  INCOMPATIBILITY, need to simplify user
wenzelm@30845
  3466
antiquotations accordingly, see src/Pure/Thy/thy_output.ML for common
wenzelm@30845
  3467
examples.
wenzelm@28099
  3468
wenzelm@30395
  3469
* More systematic treatment of long names, abstract name bindings, and
wenzelm@30395
  3470
name space operations.  Basic operations on qualified names have been
wenzelm@30399
  3471
move from structure NameSpace to Long_Name, e.g. Long_Name.base_name,
wenzelm@30395
  3472
Long_Name.append.  Old type bstring has been mostly replaced by
wenzelm@30395
  3473
abstract type binding (see structure Binding), which supports precise
wenzelm@30845
  3474
qualification by packages and local theory targets, as well as proper
wenzelm@30845
  3475
tracking of source positions.  INCOMPATIBILITY, need to wrap old
wenzelm@30845
  3476
bstring values into Binding.name, or better pass through abstract
wenzelm@30399
  3477
bindings everywhere.  See further src/Pure/General/long_name.ML,
wenzelm@30395
  3478
src/Pure/General/binding.ML and src/Pure/General/name_space.ML
wenzelm@30395
  3479
wenzelm@28089
  3480
* Result facts (from PureThy.note_thms, ProofContext.note_thms,
wenzelm@28089
  3481
LocalTheory.note etc.) now refer to the *full* internal name, not the
wenzelm@28089
  3482
bstring as before.  INCOMPATIBILITY, not detected by ML type-checking!
wenzelm@28089
  3483
wenzelm@27287
  3484
* Disposed old type and term read functions (Sign.read_def_typ,
wenzelm@27287
  3485
Sign.read_typ, Sign.read_def_terms, Sign.read_term,
wenzelm@27287
  3486
Thm.read_def_cterms, Thm.read_cterm etc.).  INCOMPATIBILITY, should
wenzelm@27287
  3487
use regular Syntax.read_typ, Syntax.read_term, Syntax.read_typ_global,
wenzelm@27269
  3488
Syntax.read_term_global etc.; see also OldGoals.read_term as last
wenzelm@27269
  3489
resort for legacy applications.
wenzelm@27269
  3490
wenzelm@30609
  3491
* Disposed old declarations, tactics, tactic combinators that refer to
wenzelm@30609
  3492
the simpset or claset of an implicit theory (such as Addsimps,
wenzelm@30609
  3493
Simp_tac, SIMPSET).  INCOMPATIBILITY, should use @{simpset} etc. in
wenzelm@30609
  3494
embedded ML text, or local_simpset_of with a proper context passed as
wenzelm@30609
  3495
explicit runtime argument.
wenzelm@30609
  3496
wenzelm@30845
  3497
* Rules and tactics that read instantiations (read_instantiate,
wenzelm@30845
  3498
res_inst_tac, thin_tac, subgoal_tac etc.) now demand a proper proof
wenzelm@30845
  3499
context, which is required for parsing and type-checking.  Moreover,
wenzelm@30845
  3500
the variables are specified as plain indexnames, not string encodings
wenzelm@30845
  3501
thereof.  INCOMPATIBILITY.
wenzelm@30845
  3502
wenzelm@30845
  3503
* Generic Toplevel.add_hook interface allows to analyze the result of
wenzelm@30845
  3504
transactions.  E.g. see src/Pure/ProofGeneral/proof_general_pgip.ML
wenzelm@30845
  3505
for theorem dependency output of transactions resulting in a new
wenzelm@30845
  3506
theory state.
wenzelm@30845
  3507
wenzelm@30845
  3508
* ML antiquotations: block-structured compilation context indicated by
wenzelm@27391
  3509
\<lbrace> ... \<rbrace>; additional antiquotation forms:
wenzelm@27391
  3510
wenzelm@30845
  3511
  @{binding name}                         - basic name binding
wenzelm@27519
  3512
  @{let ?pat = term}                      - term abbreviation (HO matching)
wenzelm@27519
  3513
  @{note name = fact}                     - fact abbreviation
wenzelm@27519
  3514
  @{thm fact}                             - singleton fact (with attributes)
wenzelm@27519
  3515
  @{thms fact}                            - general fact (with attributes)
wenzelm@27519
  3516
  @{lemma prop by method}                 - singleton goal
wenzelm@27519
  3517
  @{lemma prop by meth1 meth2}            - singleton goal
wenzelm@27519
  3518
  @{lemma prop1 ... propN by method}      - general goal
wenzelm@27519
  3519
  @{lemma prop1 ... propN by meth1 meth2} - general goal
wenzelm@27519
  3520
  @{lemma (open) ...}                     - open derivation
wenzelm@27380
  3521
wenzelm@27246
  3522
wenzelm@27979
  3523
*** System ***
wenzelm@27979
  3524
wenzelm@28248
  3525
* The Isabelle "emacs" tool provides a specific interface to invoke
wenzelm@28248
  3526
Proof General / Emacs, with more explicit failure if that is not
wenzelm@28248
  3527
installed (the old isabelle-interface script silently falls back on
wenzelm@28248
  3528
isabelle-process).  The PROOFGENERAL_HOME setting determines the
wenzelm@28248
  3529
installation location of the Proof General distribution.
wenzelm@28248
  3530
wenzelm@27979
  3531
* Isabelle/lib/classes/Pure.jar provides basic support to integrate
wenzelm@27979
  3532
the Isabelle process into a JVM/Scala application.  See
wenzelm@27979
  3533
Isabelle/lib/jedit/plugin for a minimal example.  (The obsolete Java
wenzelm@27979
  3534
process wrapper has been discontinued.)
wenzelm@27979
  3535
wenzelm@30845
  3536
* Added homegrown Isabelle font with unicode layout, see lib/fonts.
wenzelm@30845
  3537
wenzelm@30845
  3538
* Various status messages (with exact source position information) are
wenzelm@27979
  3539
emitted, if proper markup print mode is enabled.  This allows
wenzelm@27979
  3540
user-interface components to provide detailed feedback on internal
wenzelm@27979
  3541
prover operations.
wenzelm@27979
  3542
wenzelm@27979
  3543
wenzelm@27143
  3544
wenzelm@27008
  3545
New in Isabelle2008 (June 2008)
wenzelm@27008
  3546
-------------------------------
wenzelm@25464
  3547
wenzelm@25522
  3548
*** General ***
wenzelm@25522
  3549
wenzelm@27061
  3550
* The Isabelle/Isar Reference Manual (isar-ref) has been reorganized
wenzelm@27061
  3551
and updated, with formally checked references as hyperlinks.
wenzelm@27061
  3552
wenzelm@25994
  3553
* Theory loader: use_thy (and similar operations) no longer set the
wenzelm@25994
  3554
implicit ML context, which was occasionally hard to predict and in
wenzelm@25994
  3555
conflict with concurrency.  INCOMPATIBILITY, use ML within Isar which
wenzelm@25994
  3556
provides a proper context already.
wenzelm@25994
  3557
wenzelm@26323
  3558
* Theory loader: old-style ML proof scripts being *attached* to a thy
wenzelm@26323
  3559
file are no longer supported.  INCOMPATIBILITY, regular 'uses' and
wenzelm@26323
  3560
'use' within a theory file will do the job.
wenzelm@26323
  3561
wenzelm@26650
  3562
* Name space merge now observes canonical order, i.e. the second space
wenzelm@26650
  3563
is inserted into the first one, while existing entries in the first
wenzelm@26659
  3564
space take precedence.  INCOMPATIBILITY in rare situations, may try to
wenzelm@26650
  3565
swap theory imports.
wenzelm@26650
  3566
wenzelm@27067
  3567
* Syntax: symbol \<chi> is now considered a letter.  Potential
wenzelm@27067
  3568
INCOMPATIBILITY in identifier syntax etc.
wenzelm@27067
  3569
wenzelm@27067
  3570
* Outer syntax: string tokens no longer admit escaped white space,
wenzelm@27067
  3571
which was an accidental (undocumented) feature.  INCOMPATIBILITY, use
wenzelm@27067
  3572
white space without escapes.
wenzelm@27067
  3573
wenzelm@27067
  3574
* Outer syntax: string tokens may contain arbitrary character codes
wenzelm@27067
  3575
specified via 3 decimal digits (as in SML).  E.g. "foo\095bar" for
wenzelm@27067
  3576
"foo_bar".
wenzelm@27067
  3577
wenzelm@25522
  3578
haftmann@25502
  3579
*** Pure ***
haftmann@25502
  3580
wenzelm@26718
  3581
* Context-dependent token translations.  Default setup reverts locally
wenzelm@26718
  3582
fixed variables, and adds hilite markup for undeclared frees.
wenzelm@26718
  3583
berghofe@26681
  3584
* Unused theorems can be found using the new command 'unused_thms'.
berghofe@26681
  3585
There are three ways of invoking it:
berghofe@26681
  3586
berghofe@26681
  3587
(1) unused_thms
berghofe@26681
  3588
     Only finds unused theorems in the current theory.
berghofe@26681
  3589
berghofe@26681
  3590
(2) unused_thms thy_1 ... thy_n -
berghofe@26681
  3591
     Finds unused theorems in the current theory and all of its ancestors,
berghofe@26681
  3592
     excluding the theories thy_1 ... thy_n and all of their ancestors.
berghofe@26681
  3593
berghofe@26681
  3594
(3) unused_thms thy_1 ... thy_n - thy'_1 ... thy'_m
berghofe@26681
  3595
     Finds unused theorems in the theories thy'_1 ... thy'_m and all of
berghofe@26681
  3596
     their ancestors, excluding the theories thy_1 ... thy_n and all of
berghofe@26681
  3597
     their ancestors.
berghofe@26681
  3598
wenzelm@26718
  3599
In order to increase the readability of the list produced by
wenzelm@26718
  3600
unused_thms, theorems that have been created by a particular instance
wenzelm@26874
  3601
of a theory command such as 'inductive' or 'function' are considered
wenzelm@26874
  3602
to belong to the same "group", meaning that if at least one theorem in
wenzelm@26718
  3603
this group is used, the other theorems in the same group are no longer
wenzelm@26718
  3604
reported as unused.  Moreover, if all theorems in the group are
wenzelm@26718
  3605
unused, only one theorem in the group is displayed.
wenzelm@26718
  3606
wenzelm@26718
  3607
Note that proof objects have to be switched on in order for
wenzelm@26718
  3608
unused_thms to work properly (i.e. !proofs must be >= 1, which is
wenzelm@26874
  3609
usually the case when using Proof General with the default settings).
berghofe@26681
  3610
wenzelm@26650
  3611
* Authentic naming of facts disallows ad-hoc overwriting of previous
wenzelm@26650
  3612
theorems within the same name space.  INCOMPATIBILITY, need to remove
wenzelm@26650
  3613
duplicate fact bindings, or even accidental fact duplications.  Note
wenzelm@26650
  3614
that tools may maintain dynamically scoped facts systematically, using
wenzelm@26650
  3615
PureThy.add_thms_dynamic.
wenzelm@26650
  3616
wenzelm@26660
  3617
* Command 'hide' now allows to hide from "fact" name space as well.
wenzelm@26660
  3618
wenzelm@26496
  3619
* Eliminated destructive theorem database, simpset, claset, and
wenzelm@26496
  3620
clasimpset.  Potential INCOMPATIBILITY, really need to observe linear
wenzelm@26496
  3621
update of theories within ML code.
wenzelm@26479
  3622
wenzelm@26955
  3623
* Eliminated theory ProtoPure and CPure, leaving just one Pure theory.
wenzelm@26955
  3624
INCOMPATIBILITY, object-logics depending on former Pure require
wenzelm@26955
  3625
additional setup PureThy.old_appl_syntax_setup; object-logics
wenzelm@26955
  3626
depending on former CPure need to refer to Pure.
wenzelm@26650
  3627
wenzelm@26495
  3628
* Commands 'use' and 'ML' are now purely functional, operating on
wenzelm@26479
  3629
theory/local_theory.  Removed former 'ML_setup' (on theory), use 'ML'
wenzelm@26479
  3630
instead.  Added 'ML_val' as mere diagnostic replacement for 'ML'.
wenzelm@26479
  3631
INCOMPATIBILITY.
wenzelm@26479
  3632
wenzelm@26874
  3633
* Command 'setup': discontinued implicit version with ML reference.
wenzelm@26434
  3634
wenzelm@25970
  3635
* Instantiation target allows for simultaneous specification of class
wenzelm@25970
  3636
instance operations together with an instantiation proof.
wenzelm@25970
  3637
Type-checking phase allows to refer to class operations uniformly.
wenzelm@27067
  3638
See src/HOL/Complex/Complex.thy for an Isar example and
wenzelm@27067
  3639
src/HOL/Library/Eval.thy for an ML example.
haftmann@25502
  3640
wenzelm@26201
  3641
* Indexing of literal facts: be more serious about including only
wenzelm@26201
  3642
facts from the visible specification/proof context, but not the
wenzelm@26201
  3643
background context (locale etc.).  Affects `prop` notation and method
wenzelm@26201
  3644
"fact".  INCOMPATIBILITY: need to name facts explicitly in rare
wenzelm@26201
  3645
situations.
wenzelm@26201
  3646
wenzelm@26925
  3647
* Method "cases", "induct", "coinduct": removed obsolete/undocumented
wenzelm@26925
  3648
"(open)" option, which used to expose internal bound variables to the
wenzelm@26925
  3649
proof text.
wenzelm@26925
  3650
wenzelm@26925
  3651
* Isar statements: removed obsolete case "rule_context".
wenzelm@26925
  3652
INCOMPATIBILITY, better use explicit fixes/assumes.
wenzelm@26925
  3653
wenzelm@26874
  3654
* Locale proofs: default proof step now includes 'unfold_locales';
wenzelm@26874
  3655
hence 'proof' without argument may be used to unfold locale
wenzelm@26874
  3656
predicates.
ballarin@26765
  3657
ballarin@26765
  3658
haftmann@26762
  3659
*** Document preparation ***
haftmann@26762
  3660
wenzelm@26914
  3661
* Simplified pdfsetup.sty: color/hyperref is used unconditionally for
wenzelm@26914
  3662
both pdf and dvi (hyperlinks usually work in xdvi as well); removed
wenzelm@26914
  3663
obsolete thumbpdf setup (contemporary PDF viewers do this on the
wenzelm@26914
  3664
spot); renamed link color from "darkblue" to "linkcolor" (default
wenzelm@26920
  3665
value unchanged, can be redefined via \definecolor); no longer sets
wenzelm@26920
  3666
"a4paper" option (unnecessary or even intrusive).
wenzelm@26914
  3667
wenzelm@27008
  3668
* Antiquotation @{lemma A method} proves proposition A by the given
wenzelm@27008
  3669
method (either a method name or a method name plus (optional) method
wenzelm@27008
  3670
arguments in parentheses) and prints A just like @{prop A}.
haftmann@26762
  3671
haftmann@26762
  3672
wenzelm@25464
  3673
*** HOL ***
wenzelm@25464
  3674
wenzelm@27067
  3675
* New primrec package.  Specification syntax conforms in style to
wenzelm@27067
  3676
definition/function/....  No separate induction rule is provided.  The
wenzelm@27067
  3677
"primrec" command distinguishes old-style and new-style specifications
wenzelm@27067
  3678
by syntax.  The former primrec package is now named OldPrimrecPackage.
wenzelm@27067
  3679
When adjusting theories, beware: constants stemming from new-style
wenzelm@27067
  3680
primrec specifications have authentic syntax.
wenzelm@27067
  3681
wenzelm@27067
  3682
* Metis prover is now an order of magnitude faster, and also works
wenzelm@27067
  3683
with multithreading.
wenzelm@27067
  3684
wenzelm@27067
  3685
* Metis: the maximum number of clauses that can be produced from a
wenzelm@27067
  3686
theorem is now given by the attribute max_clauses.  Theorems that
wenzelm@27067
  3687
exceed this number are ignored, with a warning printed.
wenzelm@27067
  3688
wenzelm@27067
  3689
* Sledgehammer no longer produces structured proofs by default. To
wenzelm@27067
  3690
enable, declare [[sledgehammer_full = true]].  Attributes
wenzelm@27067
  3691
reconstruction_modulus, reconstruction_sorts renamed
wenzelm@27067
  3692
sledgehammer_modulus, sledgehammer_sorts.  INCOMPATIBILITY.
wenzelm@27067
  3693
haftmann@27104
  3694
* Method "induct_scheme" derives user-specified induction rules
wenzelm@27067
  3695
from well-founded induction and completeness of patterns. This factors
wenzelm@27067
  3696
out some operations that are done internally by the function package
wenzelm@27067
  3697
and makes them available separately.  See
wenzelm@27067
  3698
src/HOL/ex/Induction_Scheme.thy for examples.
wenzelm@27067
  3699
wenzelm@27067
  3700
* More flexible generation of measure functions for termination
wenzelm@27067
  3701
proofs: Measure functions can be declared by proving a rule of the
wenzelm@27067
  3702
form "is_measure f" and giving it the [measure_function] attribute.
wenzelm@27067
  3703
The "is_measure" predicate is logically meaningless (always true), and
wenzelm@27067
  3704
just guides the heuristic.  To find suitable measure functions, the
wenzelm@27067
  3705
termination prover sets up the goal "is_measure ?f" of the appropriate
wenzelm@27067
  3706
type and generates all solutions by prolog-style backwards proof using
wenzelm@27067
  3707
the declared rules.
wenzelm@27067
  3708
wenzelm@27067
  3709
This setup also deals with rules like 
wenzelm@27067
  3710
wenzelm@27067
  3711
  "is_measure f ==> is_measure (list_size f)"
wenzelm@27067
  3712
wenzelm@27067
  3713
which accommodates nested datatypes that recurse through lists.
wenzelm@27067
  3714
Similar rules are predeclared for products and option types.
wenzelm@27067
  3715
berghofe@26964
  3716
* Turned the type of sets "'a set" into an abbreviation for "'a => bool"
berghofe@26964
  3717
berghofe@26964
  3718
  INCOMPATIBILITIES:
berghofe@26964
  3719
wenzelm@27008
  3720
  - Definitions of overloaded constants on sets have to be replaced by
wenzelm@27008
  3721
    definitions on => and bool.
berghofe@26964
  3722
berghofe@26964
  3723
  - Some definitions of overloaded operators on sets can now be proved
wenzelm@27008
  3724
    using the definitions of the operators on => and bool.  Therefore,
wenzelm@27008
  3725
    the following theorems have been renamed:
berghofe@26964
  3726
berghofe@26964
  3727
      subset_def   -> subset_eq
berghofe@26964
  3728
      psubset_def  -> psubset_eq
berghofe@26964
  3729
      set_diff_def -> set_diff_eq
berghofe@26964
  3730
      Compl_def    -> Compl_eq
berghofe@26964
  3731
      Sup_set_def  -> Sup_set_eq
berghofe@26964
  3732
      Inf_set_def  -> Inf_set_eq
berghofe@26964
  3733
      sup_set_def  -> sup_set_eq
berghofe@26964
  3734
      inf_set_def  -> inf_set_eq
berghofe@26964
  3735
berghofe@26964
  3736
  - Due to the incompleteness of the HO unification algorithm, some
berghofe@26964
  3737
    rules such as subst may require manual instantiation, if some of
berghofe@26964
  3738
    the unknowns in the rule is a set.
berghofe@26964
  3739
berghofe@26964
  3740
  - Higher order unification and forward proofs:
berghofe@26964
  3741
    The proof pattern
berghofe@26964
  3742
berghofe@26964
  3743
      have "P (S::'a set)" <...>
berghofe@26964
  3744
      then have "EX S. P S" ..
berghofe@26964
  3745
wenzelm@27008
  3746
    no longer works (due to the incompleteness of the HO unification
wenzelm@27008
  3747
    algorithm) and must be replaced by the pattern
berghofe@26964
  3748
berghofe@26964
  3749
      have "EX S. P S"
berghofe@26964
  3750
      proof
berghofe@26964
  3751
        show "P S" <...>
berghofe@26964
  3752
      qed
berghofe@26964
  3753
berghofe@26964
  3754
  - Calculational reasoning with subst (or similar rules):
berghofe@26964
  3755
    The proof pattern
berghofe@26964
  3756
berghofe@26964
  3757
      have "P (S::'a set)" <...>
berghofe@26964
  3758
      also have "S = T" <...>
berghofe@26964
  3759
      finally have "P T" .
berghofe@26964
  3760
wenzelm@27008
  3761
    no longer works (for similar reasons as the previous example) and
wenzelm@27008
  3762
    must be replaced by something like
berghofe@26964
  3763
berghofe@26964
  3764
      have "P (S::'a set)" <...>
berghofe@26964
  3765
      moreover have "S = T" <...>
berghofe@26964
  3766
      ultimately have "P T" by simp
berghofe@26964
  3767
berghofe@26964
  3768
  - Tactics or packages written in ML code:
berghofe@26964
  3769
    Code performing pattern matching on types via
berghofe@26964
  3770
berghofe@26964
  3771
      Type ("set", [T]) => ...
berghofe@26964
  3772
wenzelm@27008
  3773
    must be rewritten. Moreover, functions like strip_type or
wenzelm@27008
  3774
    binder_types no longer return the right value when applied to a
wenzelm@27008
  3775
    type of the form
berghofe@26964
  3776
berghofe@26964
  3777
      T1 => ... => Tn => U => bool
berghofe@26964
  3778
berghofe@26964
  3779
    rather than
berghofe@26964
  3780
berghofe@26964
  3781
      T1 => ... => Tn => U set
berghofe@26964
  3782
wenzelm@26874
  3783
* Merged theories Wellfounded_Recursion, Accessible_Part and
wenzelm@27067
  3784
Wellfounded_Relations to theory Wellfounded.
krauss@26748
  3785
haftmann@26513
  3786
* Explicit class "eq" for executable equality.  INCOMPATIBILITY.
haftmann@26513
  3787
wenzelm@26874
  3788
* Class finite no longer treats UNIV as class parameter.  Use class
wenzelm@26874
  3789
enum from theory Library/Enum instead to achieve a similar effect.
haftmann@26445
  3790
INCOMPATIBILITY.
haftmann@26445
  3791
wenzelm@26874
  3792
* Theory List: rule list_induct2 now has explicitly named cases "Nil"
wenzelm@26874
  3793
and "Cons".  INCOMPATIBILITY.
wenzelm@26874
  3794
wenzelm@26422
  3795
* HOL (and FOL): renamed variables in rules imp_elim and swap.
wenzelm@26422
  3796
Potential INCOMPATIBILITY.
wenzelm@26422
  3797
wenzelm@26874
  3798
* Theory Product_Type: duplicated lemmas split_Pair_apply and
wenzelm@26874
  3799
injective_fst_snd removed, use split_eta and prod_eqI instead.
wenzelm@26874
  3800
Renamed upd_fst to apfst and upd_snd to apsnd.  INCOMPATIBILITY.
haftmann@26355
  3801
wenzelm@26335
  3802
* Theory Nat: removed redundant lemmas that merely duplicate lemmas of
wenzelm@26335
  3803
the same name in theory Orderings:
wenzelm@26335
  3804
wenzelm@26335
  3805
  less_trans
wenzelm@26335
  3806
  less_linear
wenzelm@26335
  3807
  le_imp_less_or_eq
wenzelm@26335
  3808
  le_less_trans
wenzelm@26335
  3809
  less_le_trans
wenzelm@26335
  3810
  less_not_sym
wenzelm@26335
  3811
  less_asym
wenzelm@26335
  3812
wenzelm@26335
  3813
Renamed less_imp_le to less_imp_le_nat, and less_irrefl to
wenzelm@26335
  3814
less_irrefl_nat.  Potential INCOMPATIBILITY due to more general types
wenzelm@26335
  3815
and different variable names.
wenzelm@26315
  3816
haftmann@26231
  3817
* Library/Option_ord.thy: Canonical order on option type.
haftmann@26231
  3818
wenzelm@27008
  3819
* Library/RBT.thy: Red-black trees, an efficient implementation of
wenzelm@27008
  3820
finite maps.
krauss@26197
  3821
haftmann@26231
  3822
* Library/Countable.thy: Type class for countable types.
haftmann@26231
  3823
wenzelm@26180
  3824
* Theory Int: The representation of numerals has changed.  The infix
wenzelm@26180
  3825
operator BIT and the bit datatype with constructors B0 and B1 have
wenzelm@26180
  3826
disappeared.  INCOMPATIBILITY, use "Int.Bit0 x" and "Int.Bit1 y" in
wenzelm@26180
  3827
place of "x BIT bit.B0" and "y BIT bit.B1", respectively.  Theorems
wenzelm@26180
  3828
involving BIT, B0, or B1 have been renamed with "Bit0" or "Bit1"
wenzelm@26180
  3829
accordingly.
wenzelm@26180
  3830
wenzelm@26180
  3831
* Theory Nat: definition of <= and < on natural numbers no longer
wenzelm@26180
  3832
depend on well-founded relations.  INCOMPATIBILITY.  Definitions
wenzelm@26180
  3833
le_def and less_def have disappeared.  Consider lemmas not_less
wenzelm@26180
  3834
[symmetric, where ?'a = nat] and less_eq [symmetric] instead.
wenzelm@26180
  3835
wenzelm@26180
  3836
* Theory Finite_Set: locales ACf, ACe, ACIf, ACIfSL and ACIfSLlin
wenzelm@26180
  3837
(whose purpose mainly is for various fold_set functionals) have been
wenzelm@26874
  3838
abandoned in favor of the existing algebraic classes
wenzelm@26180
  3839
ab_semigroup_mult, comm_monoid_mult, ab_semigroup_idem_mult,
wenzelm@26180
  3840
lower_semilattice (resp. upper_semilattice) and linorder.
haftmann@26139
  3841
INCOMPATIBILITY.
haftmann@26041
  3842
wenzelm@26180
  3843
* Theory Transitive_Closure: induct and cases rules now declare proper
wenzelm@26180
  3844
case_names ("base" and "step").  INCOMPATIBILITY.
wenzelm@26180
  3845
wenzelm@26180
  3846
* Theorem Inductive.lfp_ordinal_induct generalized to complete
wenzelm@26180
  3847
lattices.  The form set-specific version is available as
wenzelm@26180
  3848
Inductive.lfp_ordinal_induct_set.
haftmann@26013
  3849
wenzelm@26874
  3850
* Renamed theorems "power.simps" to "power_int.simps".
wenzelm@27067
  3851
INCOMPATIBILITY.
haftmann@25961
  3852
wenzelm@26180
  3853
* Class semiring_div provides basic abstract properties of semirings
haftmann@25942
  3854
with division and modulo operations.  Subsumes former class dvd_mod.
haftmann@25942
  3855
wenzelm@26180
  3856
* Merged theories IntDef, Numeral and IntArith into unified theory
wenzelm@26180
  3857
Int.  INCOMPATIBILITY.
wenzelm@26180
  3858
wenzelm@26180
  3859
* Theory Library/Code_Index: type "index" now represents natural
wenzelm@26180
  3860
numbers rather than integers.  INCOMPATIBILITY.
wenzelm@26180
  3861
wenzelm@26180
  3862
* New class "uminus" with operation "uminus" (split of from class
wenzelm@26180
  3863
"minus" which now only has operation "minus", binary).
haftmann@25919
  3864
INCOMPATIBILITY.
haftmann@25919
  3865
wenzelm@25522
  3866
* Constants "card", "internal_split", "option_map" now with authentic
haftmann@25919
  3867
syntax.  INCOMPATIBILITY.
wenzelm@25522
  3868
wenzelm@25522
  3869
* Definitions subset_def, psubset_def, set_diff_def, Compl_def,
wenzelm@25522
  3870
le_bool_def, less_bool_def, le_fun_def, less_fun_def, inf_bool_def,
wenzelm@25522
  3871
sup_bool_def, Inf_bool_def, Sup_bool_def, inf_fun_def, sup_fun_def,
wenzelm@25522
  3872
Inf_fun_def, Sup_fun_def, inf_set_def, sup_set_def, Inf_set_def,
wenzelm@25522
  3873
Sup_set_def, le_def, less_def, option_map_def now with object
haftmann@25919
  3874
equality.  INCOMPATIBILITY.
wenzelm@25464
  3875
schirmer@25705
  3876
* Records. Removed K_record, and replaced it by pure lambda term
wenzelm@25726
  3877
%x. c. The simplifier setup is now more robust against eta expansion.
schirmer@25705
  3878
INCOMPATIBILITY: in cases explicitly referring to K_record.
wenzelm@25464
  3879
wenzelm@27067
  3880
* Library/Multiset: {#a, b, c#} abbreviates {#a#} + {#b#} + {#c#}.
wenzelm@27067
  3881
wenzelm@27067
  3882
* Library/ListVector: new theory of arithmetic vector operations.
wenzelm@27067
  3883
wenzelm@27067
  3884
* Library/Order_Relation: new theory of various orderings as sets of
wenzelm@27067
  3885
pairs.  Defines preorders, partial orders, linear orders and
wenzelm@27067
  3886
well-orders on sets and on types.
krauss@26877
  3887
wenzelm@25726
  3888
krauss@26197
  3889
*** ZF ***
krauss@26197
  3890
wenzelm@26874
  3891
* Renamed some theories to allow to loading both ZF and HOL in the
wenzelm@26874
  3892
same session:
wenzelm@26874
  3893
wenzelm@26874
  3894
  Datatype  -> Datatype_ZF
wenzelm@26874
  3895
  Inductive -> Inductive_ZF
wenzelm@26874
  3896
  Int       -> Int_ZF
wenzelm@26874
  3897
  IntDiv    -> IntDiv_ZF
wenzelm@26874
  3898
  Nat       -> Nat_ZF
wenzelm@26874
  3899
  List      -> List_ZF
wenzelm@26874
  3900
  Main      -> Main_ZF
wenzelm@26874
  3901
wenzelm@26874
  3902
INCOMPATIBILITY: ZF theories that import individual theories below
wenzelm@26874
  3903
Main might need to be adapted.  Regular theory Main is still
wenzelm@26874
  3904
available, as trivial extension of Main_ZF.
krauss@26197
  3905
krauss@26197
  3906
wenzelm@25737
  3907
*** ML ***
wenzelm@25737
  3908
wenzelm@27067
  3909
* ML within Isar: antiquotation @{const name} or @{const
wenzelm@27067
  3910
name(typargs)} produces statically-checked Const term.
wenzelm@27067
  3911
wenzelm@26401
  3912
* Functor NamedThmsFun: data is available to the user as dynamic fact
wenzelm@26724
  3913
(of the same name).  Removed obsolete print command.
wenzelm@26401
  3914
wenzelm@27067
  3915
* Removed obsolete "use_legacy_bindings" function.
wenzelm@26188
  3916
wenzelm@25737
  3917
* The ``print mode'' is now a thread-local value derived from a global
wenzelm@25737
  3918
template (the former print_mode reference), thus access becomes
wenzelm@25737
  3919
non-critical.  The global print_mode reference is for session
wenzelm@25737
  3920
management only; user-code should use print_mode_value,
wenzelm@25737
  3921
print_mode_active, PrintMode.setmp etc.  INCOMPATIBILITY.
wenzelm@25737
  3922
wenzelm@26874
  3923
* Functions system/system_out provide a robust way to invoke external
wenzelm@29161
  3924
shell commands, with propagation of interrupts (requires Poly/ML
wenzelm@29161
  3925
5.2.1).  Do not use OS.Process.system etc. from the basis library!
wenzelm@26222
  3926
wenzelm@25737
  3927
wenzelm@25626
  3928
*** System ***
wenzelm@25626
  3929
wenzelm@27067
  3930
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs ---
wenzelm@27067
  3931
in accordance with Proof General 3.7, which prefers GNU emacs.
wenzelm@27067
  3932
wenzelm@27067
  3933
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm@27067
  3934
optional line editor may be specified via ISABELLE_LINE_EDITOR
wenzelm@27067
  3935
setting, the default settings attempt to locate "ledit" and "rlwrap".
wenzelm@27067
  3936
wenzelm@27067
  3937
* isatool browser now works with Cygwin as well, using general
wenzelm@27067
  3938
"javapath" function defined in Isabelle process environment.
wenzelm@27067
  3939
wenzelm@26575
  3940
* YXML notation provides a simple and efficient alternative to
wenzelm@26575
  3941
standard XML transfer syntax.  See src/Pure/General/yxml.ML and
wenzelm@26575
  3942
isatool yxml as described in the Isabelle system manual.
wenzelm@26575
  3943
wenzelm@27067
  3944
* JVM class isabelle.IsabelleProcess (located in Isabelle/lib/classes)
wenzelm@27067
  3945
provides general wrapper for managing an Isabelle process in a robust
wenzelm@27067
  3946
fashion, with ``cooked'' output from stdin/stderr.
wenzelm@27067
  3947
wenzelm@27067
  3948
* Rudimentary Isabelle plugin for jEdit (see Isabelle/lib/jedit),
wenzelm@27067
  3949
based on Isabelle/JVM process wrapper (see Isabelle/lib/classes).
wenzelm@27067
  3950
wenzelm@26575
  3951
* Removed obsolete THIS_IS_ISABELLE_BUILD feature.  NB: the documented
wenzelm@26575
  3952
way of changing the user's settings is via
wenzelm@26218
  3953
ISABELLE_HOME_USER/etc/settings, which is a fully featured bash
wenzelm@26218
  3954
script.
wenzelm@26218
  3955
wenzelm@25776
  3956
* Multithreading.max_threads := 0 refers to the number of actual CPU
wenzelm@25776
  3957
cores of the underlying machine, which is a good starting point for
wenzelm@25776
  3958
optimal performance tuning.  The corresponding usedir option -M allows
wenzelm@25778
  3959
"max" as an alias for "0".  WARNING: does not work on certain versions
wenzelm@25778
  3960
of Mac OS (with Poly/ML 5.1).
wenzelm@25776
  3961
wenzelm@27067
  3962
* isabelle-process: non-ML sessions are run with "nice", to reduce the
wenzelm@27067
  3963
adverse effect of Isabelle flooding interactive front-ends (notably
wenzelm@27067
  3964
ProofGeneral / XEmacs).
wenzelm@25855
  3965
wenzelm@25626
  3966
wenzelm@25464
  3967
wenzelm@25429
  3968
New in Isabelle2007 (November 2007)
wenzelm@25429
  3969
-----------------------------------
wenzelm@17754
  3970
wenzelm@17754
  3971
*** General ***
wenzelm@17754
  3972
wenzelm@22826
  3973
* More uniform information about legacy features, notably a
wenzelm@22826
  3974
warning/error of "Legacy feature: ...", depending on the state of the
wenzelm@23367
  3975
tolerate_legacy_features flag (default true). FUTURE INCOMPATIBILITY:
wenzelm@23367
  3976
legacy features will disappear eventually.
wenzelm@22826
  3977
wenzelm@17918
  3978
* Theory syntax: the header format ``theory A = B + C:'' has been
wenzelm@17918
  3979
discontinued in favour of ``theory A imports B C begin''.  Use isatool
wenzelm@17918
  3980
fixheaders to convert existing theory files.  INCOMPATIBILITY.
wenzelm@17918
  3981
wenzelm@17918
  3982
* Theory syntax: the old non-Isar theory file format has been
wenzelm@17918
  3983
discontinued altogether.  Note that ML proof scripts may still be used
wenzelm@17918
  3984
with Isar theories; migration is usually quite simple with the ML
wenzelm@17918
  3985
function use_legacy_bindings.  INCOMPATIBILITY.
wenzelm@17918
  3986
wenzelm@22871
  3987
* Theory syntax: some popular names (e.g. 'class', 'declaration',
wenzelm@22871
  3988
'fun', 'help', 'if') are now keywords.  INCOMPATIBILITY, use double
wenzelm@22871
  3989
quotes.
wenzelm@19814
  3990
wenzelm@23888
  3991
* Theory loader: be more serious about observing the static theory
wenzelm@23888
  3992
header specifications (including optional directories), but not the
wenzelm@24172
  3993
accidental file locations of previously successful loads.  The strict
wenzelm@24172
  3994
update policy of former update_thy is now already performed by
wenzelm@24172
  3995
use_thy, so the former has been removed; use_thys updates several
wenzelm@24172
  3996
theories simultaneously, just as 'imports' within a theory header
wenzelm@24172
  3997
specification, but without merging the results.  Potential
wenzelm@24172
  3998
INCOMPATIBILITY: may need to refine theory headers and commands
wenzelm@24172
  3999
ROOT.ML which depend on load order.
wenzelm@23888
  4000
wenzelm@23888
  4001
* Theory loader: optional support for content-based file
wenzelm@23888
  4002
identification, instead of the traditional scheme of full physical
wenzelm@23889
  4003
path plus date stamp; configured by the ISABELLE_FILE_IDENT setting
wenzelm@23888
  4004
(cf. the system manual).  The new scheme allows to work with
wenzelm@23888
  4005
non-finished theories in persistent session images, such that source
wenzelm@23888
  4006
files may be moved later on without requiring reloads.
wenzelm@23888
  4007
wenzelm@24187
  4008
* Theory loader: old-style ML proof scripts being *attached* to a thy
wenzelm@24187
  4009
file (with the same base name as the theory) are considered a legacy
wenzelm@24800
  4010
feature, which will disappear eventually. Even now, the theory loader
wenzelm@24800
  4011
no longer maintains dependencies on such files.
wenzelm@24800
  4012
wenzelm@24800
  4013
* Syntax: the scope for resolving ambiguities via type-inference is
wenzelm@24800
  4014
now limited to individual terms, instead of whole simultaneous
wenzelm@24234
  4015
specifications as before. This greatly reduces the complexity of the
wenzelm@24234
  4016
syntax module and improves flexibility by separating parsing and
wenzelm@24234
  4017
type-checking. INCOMPATIBILITY: additional type-constraints (explicit
wenzelm@24234
  4018
'fixes' etc.) are required in rare situations.
wenzelm@24234
  4019
wenzelm@25034
  4020
* Syntax: constants introduced by new-style packages ('definition',
wenzelm@25034
  4021
'abbreviation' etc.) are passed through the syntax module in
wenzelm@25034
  4022
``authentic mode''. This means that associated mixfix annotations
wenzelm@25034
  4023
really stick to such constants, independently of potential name space
wenzelm@25034
  4024
ambiguities introduced later on. INCOMPATIBILITY: constants in parse
wenzelm@25034
  4025
trees are represented slightly differently, may need to adapt syntax
wenzelm@25034
  4026
translations accordingly. Use CONST marker in 'translations' and
wenzelm@25034
  4027
@{const_syntax} antiquotation in 'parse_translation' etc.
wenzelm@25034
  4028
wenzelm@17981
  4029
* Legacy goal package: reduced interface to the bare minimum required
wenzelm@17981
  4030
to keep existing proof scripts running.  Most other user-level
wenzelm@17981
  4031
functions are now part of the OldGoals structure, which is *not* open
wenzelm@17981
  4032
by default (consider isatool expandshort before open OldGoals).
wenzelm@17981
  4033
Removed top_sg, prin, printyp, pprint_term/typ altogether, because
wenzelm@17981
  4034
these tend to cause confusion about the actual goal (!) context being
wenzelm@17981
  4035
used here, which is not necessarily the same as the_context().
wenzelm@17918
  4036
wenzelm@23379
  4037
* Command 'find_theorems': supports "*" wild-card in "name:"
wenzelm@23379
  4038
criterion; "with_dups" option.  Certain ProofGeneral versions might
wenzelm@23379
  4039
support a specific search form (see ProofGeneral/CHANGES).
webertj@22965
  4040
wenzelm@20370
  4041
* The ``prems limit'' option (cf. ProofContext.prems_limit) is now -1
wenzelm@20370
  4042
by default, which means that "prems" (and also "fixed variables") are
wenzelm@20370
  4043
suppressed from proof state output.  Note that the ProofGeneral
wenzelm@20370
  4044
settings mechanism allows to change and save options persistently, but
wenzelm@20370
  4045
older versions of Isabelle will fail to start up if a negative prems
wenzelm@20370
  4046
limit is imposed.
wenzelm@20370
  4047
wenzelm@21308
  4048
* Local theory targets may be specified by non-nested blocks of
wenzelm@21308
  4049
``context/locale/class ... begin'' followed by ``end''.  The body may
wenzelm@21308
  4050
contain definitions, theorems etc., including any derived mechanism
wenzelm@21308
  4051
that has been implemented on top of these primitives.  This concept
wenzelm@21308
  4052
generalizes the existing ``theorem (in ...)'' towards more versatility
wenzelm@21308
  4053
and scalability.
wenzelm@21308
  4054
wenzelm@21960
  4055
* Proof General interface: proper undo of final 'end' command;
wenzelm@21960
  4056
discontinued Isabelle/classic mode (ML proof scripts).
wenzelm@21960
  4057
wenzelm@17754
  4058
wenzelm@17865
  4059
*** Document preparation ***
wenzelm@17865
  4060
wenzelm@21717
  4061
* Added antiquotation @{theory name} which prints the given name,
wenzelm@21717
  4062
after checking that it refers to a valid ancestor theory in the
wenzelm@21717
  4063
current context.
haftmann@21339
  4064
wenzelm@17869
  4065
* Added antiquotations @{ML_type text} and @{ML_struct text} which
wenzelm@17869
  4066
check the given source text as ML type/structure, printing verbatim.
wenzelm@17865
  4067
wenzelm@21717
  4068
* Added antiquotation @{abbrev "c args"} which prints the abbreviation
wenzelm@21717
  4069
"c args == rhs" given in the current context.  (Any number of
wenzelm@21735
  4070
arguments may be given on the LHS.)
wenzelm@21717
  4071
wenzelm@21717
  4072
wenzelm@17779
  4073
*** Pure ***
wenzelm@17779
  4074
wenzelm@24800
  4075
* The 'class' package offers a combination of axclass and locale to
wenzelm@25129
  4076
achieve Haskell-like type classes in Isabelle.  Definitions and
wenzelm@25129
  4077
theorems within a class context produce both relative results (with
wenzelm@25129
  4078
implicit parameters according to the locale context), and polymorphic
wenzelm@25129
  4079
constants with qualified polymorphism (according to the class
wenzelm@25129
  4080
context).  Within the body context of a 'class' target, a separate
wenzelm@25129
  4081
syntax layer ("user space type system") takes care of converting
wenzelm@25129
  4082
between global polymorphic consts and internal locale representation.
wenzelm@25177
  4083
See src/HOL/ex/Classpackage.thy for examples (as well as main HOL).
haftmann@25184
  4084
"isatool doc classes" provides a tutorial.
wenzelm@20807
  4085
haftmann@25199
  4086
* Generic code generator framework allows to generate executable
wenzelm@24800
  4087
code for ML and Haskell (including Isabelle classes).  A short usage
wenzelm@24800
  4088
sketch:
haftmann@20188
  4089
haftmann@20188
  4090
    internal compilation:
haftmann@25199
  4091
        export_code <list of constants (term syntax)> in SML
haftmann@20453
  4092
    writing SML code to a file:
haftmann@25199
  4093
        export_code <list of constants (term syntax)> in SML <filename>
haftmann@22735
  4094
    writing OCaml code to a file:
haftmann@25199
  4095
        export_code <list of constants (term syntax)> in OCaml <filename>
haftmann@20188
  4096
    writing Haskell code to a bunch of files:
haftmann@25199
  4097
        export_code <list of constants (term syntax)> in Haskell <filename>
haftmann@25199
  4098
haftmann@25199
  4099
    evaluating closed propositions to True/False using code generation:
haftmann@25184
  4100
        method ``eval''
haftmann@25184
  4101
haftmann@25184
  4102
Reasonable default setup of framework in HOL.
haftmann@20453
  4103
haftmann@20453
  4104
Theorem attributs for selecting and transforming function equations theorems:
haftmann@20453
  4105
haftmann@22845
  4106
    [code fun]:        select a theorem as function equation for a specific constant
haftmann@22845
  4107
    [code fun del]:    deselect a theorem as function equation for a specific constant
haftmann@22845
  4108
    [code inline]:     select an equation theorem for unfolding (inlining) in place
haftmann@22845
  4109
    [code inline del]: deselect an equation theorem for unfolding (inlining) in place
haftmann@20453
  4110
haftmann@22735
  4111
User-defined serializations (target in {SML, OCaml, Haskell}):
haftmann@20453
  4112
haftmann@20453
  4113
    code_const <and-list of constants (term syntax)>
haftmann@20453
  4114
      {(target) <and-list of const target syntax>}+
haftmann@20453
  4115
haftmann@20453
  4116
    code_type <and-list of type constructors>
haftmann@20453
  4117
      {(target) <and-list of type target syntax>}+
haftmann@20453
  4118
haftmann@20453
  4119
    code_instance <and-list of instances>
haftmann@20453
  4120
      {(target)}+
haftmann@20453
  4121
        where instance ::= <type constructor> :: <class>
haftmann@20453
  4122
haftmann@20453
  4123
    code_class <and_list of classes>
haftmann@20453
  4124
      {(target) <and-list of class target syntax>}+
haftmann@20453
  4125
        where class target syntax ::= <class name> {where {<classop> == <target syntax>}+}?
haftmann@20453
  4126
haftmann@25199
  4127
code_instance and code_class only are effective to target Haskell.
haftmann@22735
  4128
wenzelm@25177
  4129
For example usage see src/HOL/ex/Codegenerator.thy and
wenzelm@25177
  4130
src/HOL/ex/Codegenerator_Pretty.thy.  A separate tutorial on code
wenzelm@24800
  4131
generation from Isabelle/HOL theories is available via "isatool doc
wenzelm@24800
  4132
codegen".
haftmann@20188
  4133
wenzelm@25129
  4134
* Code generator: consts in 'consts_code' Isar commands are now
wenzelm@25129
  4135
referred to by usual term syntax (including optional type
wenzelm@25129
  4136
annotations).
wenzelm@25129
  4137
wenzelm@19254
  4138
* Command 'no_translations' removes translation rules from theory
wenzelm@19254
  4139
syntax.
wenzelm@19254
  4140
wenzelm@19625
  4141
* Overloaded definitions are now actually checked for acyclic
wenzelm@19714
  4142
dependencies.  The overloading scheme is slightly more general than
wenzelm@19714
  4143
that of Haskell98, although Isabelle does not demand an exact
wenzelm@19714
  4144
correspondence to type class and instance declarations.
wenzelm@19714
  4145
INCOMPATIBILITY, use ``defs (unchecked overloaded)'' to admit more
wenzelm@19714
  4146
exotic versions of overloading -- at the discretion of the user!
wenzelm@19711
  4147
wenzelm@19711
  4148
Polymorphic constants are represented via type arguments, i.e. the
wenzelm@19711
  4149
instantiation that matches an instance against the most general
wenzelm@19711
  4150
declaration given in the signature.  For example, with the declaration
wenzelm@19711
  4151
c :: 'a => 'a => 'a, an instance c :: nat => nat => nat is represented
wenzelm@19711
  4152
as c(nat).  Overloading is essentially simultaneous structural
wenzelm@19711
  4153
recursion over such type arguments.  Incomplete specification patterns
wenzelm@19714
  4154
impose global constraints on all occurrences, e.g. c('a * 'a) on the
wenzelm@19715
  4155
LHS means that more general c('a * 'b) will be disallowed on any RHS.
wenzelm@19714
  4156
Command 'print_theory' outputs the normalized system of recursive
wenzelm@19714
  4157
equations, see section "definitions".
wenzelm@19625
  4158
wenzelm@24086
  4159
* Configuration options are maintained within the theory or proof
wenzelm@24086
  4160
context (with name and type bool/int/string), providing a very simple
wenzelm@24086
  4161
interface to a poor-man's version of general context data.  Tools may
wenzelm@24110
  4162
declare options in ML (e.g. using Attrib.config_int) and then refer to
wenzelm@24110
  4163
these values using Config.get etc.  Users may change options via an
wenzelm@24110
  4164
associated attribute of the same name.  This form of context
wenzelm@24110
  4165
declaration works particularly well with commands 'declare' or
wenzelm@24110
  4166
'using', for example ``declare [[foo = 42]]''.  Thus it has become
wenzelm@24110
  4167
very easy to avoid global references, which would not observe Isar
wenzelm@24110
  4168
toplevel undo/redo and fail to work with multithreading.
wenzelm@24086
  4169
wenzelm@24172
  4170
Various global ML references of Pure and HOL have been turned into
wenzelm@24172
  4171
configuration options:
wenzelm@24172
  4172
wenzelm@24172
  4173
  Unify.search_bound		unify_search_bound
wenzelm@24172
  4174
  Unify.trace_bound		unify_trace_bound
wenzelm@24172
  4175
  Unify.trace_simp		unify_trace_simp
wenzelm@24172
  4176
  Unify.trace_types		unify_trace_types
wenzelm@24172
  4177
  Simplifier.simp_depth_limit	simp_depth_limit
wenzelm@24172
  4178
  Blast.depth_limit		blast_depth_limit
wenzelm@24172
  4179
  DatatypeProp.dtK		datatype_distinctness_limit
wenzelm@24172
  4180
  fast_arith_neq_limit  	fast_arith_neq_limit
wenzelm@24172
  4181
  fast_arith_split_limit	fast_arith_split_limit
wenzelm@24172
  4182
wenzelm@24086
  4183
* Named collections of theorems may be easily installed as context
wenzelm@24800
  4184
data using the functor NamedThmsFun (see also
wenzelm@24086
  4185
src/Pure/Tools/named_thms.ML).  The user may add or delete facts via
wenzelm@24110
  4186
attributes; there is also a toplevel print command.  This facility is
wenzelm@24110
  4187
just a common case of general context data, which is the preferred way
wenzelm@24110
  4188
for anything more complex than just a list of facts in canonical
wenzelm@24110
  4189
order.
wenzelm@24086
  4190
wenzelm@24032
  4191
* Isar: command 'declaration' augments a local theory by generic
wenzelm@24032
  4192
declaration functions written in ML.  This enables arbitrary content
wenzelm@24032
  4193
being added to the context, depending on a morphism that tells the
wenzelm@24032
  4194
difference of the original declaration context wrt. the application
wenzelm@24032
  4195
context encountered later on.
wenzelm@24032
  4196
wenzelm@24032
  4197
* Isar: proper interfaces for simplification procedures.  Command
wenzelm@24032
  4198
'simproc_setup' declares named simprocs (with match patterns, and body
wenzelm@24032
  4199
text in ML).  Attribute "simproc" adds/deletes simprocs in the current
wenzelm@24032
  4200
context.  ML antiquotation @{simproc name} retrieves named simprocs.
wenzelm@24032
  4201
wenzelm@24032
  4202
* Isar: an extra pair of brackets around attribute declarations
wenzelm@24032
  4203
abbreviates a theorem reference involving an internal dummy fact,
wenzelm@24032
  4204
which will be ignored later --- only the effect of the attribute on
wenzelm@24032
  4205
the background context will persist.  This form of in-place
wenzelm@24032
  4206
declarations is particularly useful with commands like 'declare' and
wenzelm@24032
  4207
'using', for example ``have A using [[simproc a]] by simp''.
wenzelm@24032
  4208
wenzelm@23369
  4209
* Isar: method "assumption" (and implicit closing of subproofs) now
wenzelm@23369
  4210
takes simple non-atomic goal assumptions into account: after applying
wenzelm@23369
  4211
an assumption as a rule the resulting subgoals are solved by atomic
wenzelm@23369
  4212
assumption steps.  This is particularly useful to finish 'obtain'
wenzelm@23369
  4213
goals, such as "!!x. (!!x. P x ==> thesis) ==> P x ==> thesis",
wenzelm@23369
  4214
without referring to the original premise "!!x. P x ==> thesis" in the
wenzelm@23369
  4215
Isar proof context.  POTENTIAL INCOMPATIBILITY: method "assumption" is
wenzelm@23369
  4216
more permissive.
wenzelm@23369
  4217
wenzelm@23369
  4218
* Isar: implicit use of prems from the Isar proof context is
wenzelm@23369
  4219
considered a legacy feature.  Common applications like ``have A .''
wenzelm@23369
  4220
may be replaced by ``have A by fact'' or ``note `A`''.  In general,
wenzelm@23369
  4221
referencing facts explicitly here improves readability and
wenzelm@23369
  4222
maintainability of proof texts.
wenzelm@23369
  4223
wenzelm@17865
  4224
* Isar: improper proof element 'guess' is like 'obtain', but derives
wenzelm@17865
  4225
the obtained context from the course of reasoning!  For example:
wenzelm@17865
  4226
wenzelm@17865
  4227
  assume "EX x y. A x & B y"   -- "any previous fact"
wenzelm@17865
  4228
  then guess x and y by clarify
wenzelm@17865
  4229
wenzelm@17865
  4230
This technique is potentially adventurous, depending on the facts and
wenzelm@17865
  4231
proof tools being involved here.
wenzelm@17865
  4232
wenzelm@18020
  4233
* Isar: known facts from the proof context may be specified as literal
wenzelm@18020
  4234
propositions, using ASCII back-quote syntax.  This works wherever
wenzelm@18020
  4235
named facts used to be allowed so far, in proof commands, proof
wenzelm@18020
  4236
methods, attributes etc.  Literal facts are retrieved from the context
wenzelm@18020
  4237
according to unification of type and term parameters.  For example,
wenzelm@18020
  4238
provided that "A" and "A ==> B" and "!!x. P x ==> Q x" are known
wenzelm@18020
  4239
theorems in the current context, then these are valid literal facts:
wenzelm@18020
  4240
`A` and `A ==> B` and `!!x. P x ==> Q x" as well as `P a ==> Q a` etc.
wenzelm@18020
  4241
wenzelm@18020
  4242
There is also a proof method "fact" which does the same composition
wenzelm@18044
  4243
for explicit goal states, e.g. the following proof texts coincide with
wenzelm@18044
  4244
certain special cases of literal facts:
wenzelm@18020
  4245
wenzelm@18020
  4246
  have "A" by fact                 ==  note `A`
wenzelm@18020
  4247
  have "A ==> B" by fact           ==  note `A ==> B`
wenzelm@18020
  4248
  have "!!x. P x ==> Q x" by fact  ==  note `!!x. P x ==> Q x`
wenzelm@18020
  4249
  have "P a ==> Q a" by fact       ==  note `P a ==> Q a`
wenzelm@18020
  4250
wenzelm@20118
  4251
* Isar: ":" (colon) is no longer a symbolic identifier character in
wenzelm@20118
  4252
outer syntax.  Thus symbolic identifiers may be used without
wenzelm@20118
  4253
additional white space in declarations like this: ``assume *: A''.
wenzelm@20118
  4254
wenzelm@20013
  4255
* Isar: 'print_facts' prints all local facts of the current context,
wenzelm@20013
  4256
both named and unnamed ones.
wenzelm@20013
  4257
wenzelm@18308
  4258
* Isar: 'def' now admits simultaneous definitions, e.g.:
wenzelm@18308
  4259
wenzelm@18308
  4260
  def x == "t" and y == "u"
wenzelm@18308
  4261
wenzelm@18540
  4262
* Isar: added command 'unfolding', which is structurally similar to
wenzelm@18540
  4263
'using', but affects both the goal state and facts by unfolding given
wenzelm@18815
  4264
rewrite rules.  Thus many occurrences of the 'unfold' method or
wenzelm@18540
  4265
'unfolded' attribute may be replaced by first-class proof text.
wenzelm@18540
  4266
wenzelm@18815
  4267
* Isar: methods 'unfold' / 'fold', attributes 'unfolded' / 'folded',
wenzelm@18815
  4268
and command 'unfolding' now all support object-level equalities
wenzelm@18815
  4269
(potentially conditional).  The underlying notion of rewrite rule is
wenzelm@18815
  4270
analogous to the 'rule_format' attribute, but *not* that of the
wenzelm@18815
  4271
Simplifier (which is usually more generous).
wenzelm@18815
  4272
kleing@24238
  4273
* Isar: the new attribute [rotated n] (default n = 1) rotates the
kleing@24238
  4274
premises of a theorem by n. Useful in conjunction with drule.
kleing@24238
  4275
wenzelm@19220
  4276
* Isar: the goal restriction operator [N] (default N = 1) evaluates a
wenzelm@19220
  4277
method expression within a sandbox consisting of the first N
wenzelm@19240
  4278
sub-goals, which need to exist.  For example, ``simp_all [3]''
wenzelm@19240
  4279
simplifies the first three sub-goals, while (rule foo, simp_all)[]
wenzelm@19240
  4280
simplifies all new goals that emerge from applying rule foo to the
wenzelm@19240
  4281
originally first one.
wenzelm@19220
  4282
wenzelm@19814
  4283
* Isar: schematic goals are no longer restricted to higher-order
wenzelm@19814
  4284
patterns; e.g. ``lemma "?P(?x)" by (rule TrueI)'' now works as
wenzelm@19814
  4285
expected.
wenzelm@19814
  4286
wenzelm@18901
  4287
* Isar: the conclusion of a long theorem statement is now either
wenzelm@18901
  4288
'shows' (a simultaneous conjunction, as before), or 'obtains'
wenzelm@18901
  4289
(essentially a disjunction of cases with local parameters and
wenzelm@18901
  4290
assumptions).  The latter allows to express general elimination rules
wenzelm@18910
  4291
adequately; in this notation common elimination rules look like this:
wenzelm@18901
  4292
wenzelm@18901
  4293
  lemma exE:    -- "EX x. P x ==> (!!x. P x ==> thesis) ==> thesis"
wenzelm@18901
  4294
    assumes "EX x. P x"
wenzelm@18901
  4295
    obtains x where "P x"
wenzelm@18901
  4296
wenzelm@18901
  4297
  lemma conjE:  -- "A & B ==> (A ==> B ==> thesis) ==> thesis"
wenzelm@18901
  4298
    assumes "A & B"
wenzelm@18901
  4299
    obtains A and B
wenzelm@18901
  4300
wenzelm@18901
  4301
  lemma disjE:  -- "A | B ==> (A ==> thesis) ==> (B ==> thesis) ==> thesis"
wenzelm@18901
  4302
    assumes "A | B"
wenzelm@18901
  4303
    obtains
wenzelm@18901
  4304
      A
wenzelm@18901
  4305
    | B
wenzelm@18901
  4306
wenzelm@18910
  4307
The subsequent classical rules even refer to the formal "thesis"
wenzelm@18901
  4308
explicitly:
wenzelm@18901
  4309
wenzelm@18901
  4310
  lemma classical:     -- "(~ thesis ==> thesis) ==> thesis"
wenzelm@18901
  4311
    obtains "~ thesis"
wenzelm@18901
  4312
wenzelm@18910
  4313
  lemma Peirce's_Law:  -- "((thesis ==> something) ==> thesis) ==> thesis"
wenzelm@18910
  4314
    obtains "thesis ==> something"
wenzelm@18901
  4315
wenzelm@18901
  4316
The actual proof of an 'obtains' statement is analogous to that of the
wenzelm@18910
  4317
Isar proof element 'obtain', only that there may be several cases.
wenzelm@18910
  4318
Optional case names may be specified in parentheses; these will be
wenzelm@18910
  4319
available both in the present proof and as annotations in the
wenzelm@18910
  4320
resulting rule, for later use with the 'cases' method (cf. attribute
wenzelm@18910
  4321
case_names).
wenzelm@18901
  4322
wenzelm@21447
  4323
* Isar: the assumptions of a long theorem statement are available as
wenzelm@21447
  4324
"assms" fact in the proof context.  This is more appropriate than the
wenzelm@21447
  4325
(historical) "prems", which refers to all assumptions of the current
wenzelm@21447
  4326
context, including those from the target locale, proof body etc.
wenzelm@21447
  4327
wenzelm@19263
  4328
* Isar: 'print_statement' prints theorems from the current theory or
wenzelm@19263
  4329
proof context in long statement form, according to the syntax of a
wenzelm@19263
  4330
top-level lemma.
wenzelm@19263
  4331
wenzelm@18901
  4332
* Isar: 'obtain' takes an optional case name for the local context
wenzelm@18901
  4333
introduction rule (default "that").
wenzelm@18901
  4334
wenzelm@19587
  4335
* Isar: removed obsolete 'concl is' patterns.  INCOMPATIBILITY, use
wenzelm@19587
  4336
explicit (is "_ ==> ?foo") in the rare cases where this still happens
wenzelm@19587
  4337
to occur.
wenzelm@19587
  4338
wenzelm@19682
  4339
* Pure: syntax "CONST name" produces a fully internalized constant
wenzelm@19682
  4340
according to the current context.  This is particularly useful for
wenzelm@19682
  4341
syntax translations that should refer to internal constant
wenzelm@19682
  4342
representations independently of name spaces.
wenzelm@19682
  4343
wenzelm@21537
  4344
* Pure: syntax constant for foo (binder "FOO ") is called "foo_binder"
wenzelm@21537
  4345
instead of "FOO ". This allows multiple binder declarations to coexist
wenzelm@21537
  4346
in the same context.  INCOMPATIBILITY.
wenzelm@21537
  4347
wenzelm@21209
  4348
* Isar/locales: 'notation' provides a robust interface to the 'syntax'
wenzelm@21209
  4349
primitive that also works in a locale context (both for constants and
wenzelm@24950
  4350
fixed variables). Type declaration and internal syntactic representation
wenzelm@24950
  4351
of given constants retrieved from the context. Likewise, the
wenzelm@24950
  4352
'no_notation' command allows to remove given syntax annotations from the
wenzelm@24950
  4353
current context.
wenzelm@19682
  4354
wenzelm@19665
  4355
* Isar/locales: new derived specification elements 'axiomatization',
wenzelm@19665
  4356
'definition', 'abbreviation', which support type-inference, admit
wenzelm@19083
  4357
object-level specifications (equality, equivalence).  See also the
wenzelm@19083
  4358
isar-ref manual.  Examples:
wenzelm@19081
  4359
wenzelm@19665
  4360
  axiomatization
wenzelm@21595
  4361
    eq  (infix "===" 50) where
wenzelm@21595
  4362
    eq_refl: "x === x" and eq_subst: "x === y ==> P x ==> P y"
wenzelm@21595
  4363
wenzelm@21595
  4364
  definition "f x y = x + y + 1"
wenzelm@21595
  4365
  definition g where "g x = f x x"
wenzelm@19081
  4366
wenzelm@19363
  4367
  abbreviation
wenzelm@21595
  4368
    neq  (infix "=!=" 50) where
wenzelm@19363
  4369
    "x =!= y == ~ (x === y)"
wenzelm@19081
  4370
wenzelm@19083
  4371
These specifications may be also used in a locale context.  Then the
wenzelm@19083
  4372
constants being introduced depend on certain fixed parameters, and the
wenzelm@19083
  4373
constant name is qualified by the locale base name.  An internal
wenzelm@19083
  4374
abbreviation takes care for convenient input and output, making the
wenzelm@19088
  4375
parameters implicit and using the original short name.  See also
wenzelm@25177
  4376
src/HOL/ex/Abstract_NAT.thy for an example of deriving polymorphic
wenzelm@19083
  4377
entities from a monomorphic theory.
wenzelm@19083
  4378
wenzelm@19083
  4379
Presently, abbreviations are only available 'in' a target locale, but
wenzelm@19363
  4380
not inherited by general import expressions.  Also note that
wenzelm@19363
  4381
'abbreviation' may be used as a type-safe replacement for 'syntax' +
wenzelm@24735
  4382
'translations' in common applications.  The "no_abbrevs" print mode
wenzelm@24735
  4383
prevents folding of abbreviations in term output.
wenzelm@19084
  4384
wenzelm@19682
  4385
Concrete syntax is attached to specified constants in internal form,
wenzelm@19682
  4386
independently of name spaces.  The parse tree representation is
wenzelm@21209
  4387
slightly different -- use 'notation' instead of raw 'syntax', and
wenzelm@19682
  4388
'translations' with explicit "CONST" markup to accommodate this.
wenzelm@19665
  4389
wenzelm@24800
  4390
* Pure/Isar: unified syntax for new-style specification mechanisms
wenzelm@24800
  4391
(e.g.  'definition', 'abbreviation', or 'inductive' in HOL) admits
wenzelm@24800
  4392
full type inference and dummy patterns ("_").  For example:
wenzelm@24735
  4393
wenzelm@24735
  4394
  definition "K x _ = x"
wenzelm@24735
  4395
wenzelm@24738
  4396
  inductive conj for A B
wenzelm@24738
  4397
  where "A ==> B ==> conj A B"
wenzelm@24738
  4398
wenzelm@21735
  4399
* Pure: command 'print_abbrevs' prints all constant abbreviations of
wenzelm@21735
  4400
the current context.  Print mode "no_abbrevs" prevents inversion of
wenzelm@21735
  4401
abbreviations on output.
wenzelm@21735
  4402
wenzelm@24800
  4403
* Isar/locales: improved parameter handling: use of locales "var" and
wenzelm@24800
  4404
"struct" no longer necessary; - parameter renamings are no longer
wenzelm@24800
  4405
required to be injective.  For example, this allows to define
wenzelm@24800
  4406
endomorphisms as locale endom = homom mult mult h.
ballarin@19783
  4407
ballarin@19931
  4408
* Isar/locales: changed the way locales with predicates are defined.
ballarin@19931
  4409
Instead of accumulating the specification, the imported expression is
wenzelm@22126
  4410
now an interpretation.  INCOMPATIBILITY: different normal form of
wenzelm@22126
  4411
locale expressions.  In particular, in interpretations of locales with
wenzelm@22126
  4412
predicates, goals repesenting already interpreted fragments are not
wenzelm@22126
  4413
removed automatically.  Use methods `intro_locales' and
wenzelm@22126
  4414
`unfold_locales'; see below.
wenzelm@22126
  4415
wenzelm@22126
  4416
* Isar/locales: new methods `intro_locales' and `unfold_locales'
wenzelm@22126
  4417
provide backward reasoning on locales predicates.  The methods are
wenzelm@22126
  4418
aware of interpretations and discharge corresponding goals.
wenzelm@22126
  4419
`intro_locales' is less aggressive then `unfold_locales' and does not
wenzelm@22126
  4420
unfold predicates to assumptions.
ballarin@19931
  4421
ballarin@19931
  4422
* Isar/locales: the order in which locale fragments are accumulated
wenzelm@22126
  4423
has changed.  This enables to override declarations from fragments due
wenzelm@22126
  4424
to interpretations -- for example, unwanted simp rules.
ballarin@19931
  4425
ballarin@23920
  4426
* Isar/locales: interpretation in theories and proof contexts has been
ballarin@23920
  4427
extended.  One may now specify (and prove) equations, which are
ballarin@23920
  4428
unfolded in interpreted theorems.  This is useful for replacing
ballarin@23920
  4429
defined concepts (constants depending on locale parameters) by
ballarin@23920
  4430
concepts already existing in the target context.  Example:
ballarin@23920
  4431
ballarin@23920
  4432
  interpretation partial_order ["op <= :: [int, int] => bool"]
ballarin@23920
  4433
    where "partial_order.less (op <=) (x::int) y = (x < y)"
ballarin@23920
  4434
wenzelm@24800
  4435
Typically, the constant `partial_order.less' is created by a
wenzelm@24800
  4436
definition specification element in the context of locale
wenzelm@24800
  4437
partial_order.
wenzelm@24800
  4438
wenzelm@24859
  4439
* Method "induct": improved internal context management to support
wenzelm@24800
  4440
local fixes and defines on-the-fly. Thus explicit meta-level
wenzelm@24800
  4441
connectives !!  and ==> are rarely required anymore in inductive goals
wenzelm@24800
  4442
(using object-logic connectives for this purpose has been long
wenzelm@24800
  4443
obsolete anyway). Common proof patterns are explained in
wenzelm@25177
  4444
src/HOL/Induct/Common_Patterns.thy, see also
wenzelm@25177
  4445
src/HOL/Isar_examples/Puzzle.thy and src/HOL/Lambda for realistic
wenzelm@25177
  4446
examples.
wenzelm@24606
  4447
wenzelm@24859
  4448
* Method "induct": improved handling of simultaneous goals. Instead of
wenzelm@24606
  4449
introducing object-level conjunction, the statement is now split into
wenzelm@24606
  4450
several conclusions, while the corresponding symbolic cases are nested
wenzelm@24606
  4451
accordingly. INCOMPATIBILITY, proofs need to be structured explicitly,
wenzelm@25177
  4452
see src/HOL/Induct/Common_Patterns.thy, for example.
wenzelm@24606
  4453
wenzelm@24859
  4454
* Method "induct": mutual induction rules are now specified as a list
wenzelm@24800
  4455
of rule sharing the same induction cases. HOL packages usually provide
wenzelm@24606
  4456
foo_bar.inducts for mutually defined items foo and bar (e.g. inductive
wenzelm@24859
  4457
predicates/sets or datatypes). INCOMPATIBILITY, users need to specify
wenzelm@24859
  4458
mutual induction rules differently, i.e. like this:
wenzelm@18506
  4459
wenzelm@18506
  4460
  (induct rule: foo_bar.inducts)
wenzelm@18506
  4461
  (induct set: foo bar)
wenzelm@24859
  4462
  (induct pred: foo bar)
wenzelm@18506
  4463
  (induct type: foo bar)
wenzelm@18506
  4464
wenzelm@18506
  4465
The ML function ProjectRule.projections turns old-style rules into the
wenzelm@18506
  4466
new format.
wenzelm@18506
  4467
wenzelm@24859
  4468
* Method "coinduct": dual of induction, see
wenzelm@18399
  4469
src/HOL/Library/Coinductive_List.thy for various examples.
wenzelm@18399
  4470
wenzelm@24859
  4471
* Method "cases", "induct", "coinduct": the ``(open)'' option is
wenzelm@24859
  4472
considered a legacy feature.
wenzelm@24859
  4473
wenzelm@20919
  4474
* Attribute "symmetric" produces result with standardized schematic
wenzelm@20919
  4475
variables (index 0).  Potential INCOMPATIBILITY.
wenzelm@20919
  4476
wenzelm@22126
  4477
* Simplifier: by default the simplifier trace only shows top level
wenzelm@22126
  4478
rewrites now. That is, trace_simp_depth_limit is set to 1 by
wenzelm@22126
  4479
default. Thus there is less danger of being flooded by the trace. The
wenzelm@22126
  4480
trace indicates where parts have been suppressed.
nipkow@18674
  4481
  
wenzelm@18536
  4482
* Provers/classical: removed obsolete classical version of elim_format
wenzelm@18536
  4483
attribute; classical elim/dest rules are now treated uniformly when
wenzelm@18536
  4484
manipulating the claset.
wenzelm@18536
  4485
wenzelm@18694
  4486
* Provers/classical: stricter checks to ensure that supplied intro,
wenzelm@18694
  4487
dest and elim rules are well-formed; dest and elim rules must have at
wenzelm@18694
  4488
least one premise.
wenzelm@18694
  4489
wenzelm@18694
  4490
* Provers/classical: attributes dest/elim/intro take an optional
wenzelm@18695
  4491
weight argument for the rule (just as the Pure versions).  Weights are
wenzelm@18696
  4492
ignored by automated tools, but determine the search order of single
wenzelm@18694
  4493
rule steps.
paulson@18557
  4494
wenzelm@18536
  4495
* Syntax: input syntax now supports dummy variable binding "%_. b",
wenzelm@18536
  4496
where the body does not mention the bound variable.  Note that dummy
wenzelm@18536
  4497
patterns implicitly depend on their context of bounds, which makes
wenzelm@18536
  4498
"{_. _}" match any set comprehension as expected.  Potential
wenzelm@18536
  4499
INCOMPATIBILITY -- parse translations need to cope with syntactic
wenzelm@18536
  4500
constant "_idtdummy" in the binding position.
wenzelm@18536
  4501
wenzelm@18536
  4502
* Syntax: removed obsolete syntactic constant "_K" and its associated
wenzelm@18536
  4503
parse translation.  INCOMPATIBILITY -- use dummy abstraction instead,
wenzelm@18536
  4504
for example "A -> B" => "Pi A (%_. B)".
wenzelm@17779
  4505
wenzelm@20582
  4506
* Pure: 'class_deps' command visualizes the subclass relation, using
wenzelm@20582
  4507
the graph browser tool.
wenzelm@20582
  4508
wenzelm@24800
  4509
* Pure: 'print_theory' now suppresses certain internal declarations by
wenzelm@24800
  4510
default; use '!' option for full details.
wenzelm@20620
  4511
wenzelm@17865
  4512
nipkow@17806
  4513
*** HOL ***
nipkow@17806
  4514
wenzelm@25129
  4515
* Method "metis" proves goals by applying the Metis general-purpose
wenzelm@25129
  4516
resolution prover (see also http://gilith.com/software/metis/).
wenzelm@25129
  4517
Examples are in the directory MetisExamples.  WARNING: the
wenzelm@25129
  4518
Isabelle/HOL-Metis integration does not yet work properly with
wenzelm@25129
  4519
multi-threading.
wenzelm@25129
  4520
  
wenzelm@25129
  4521
* Command 'sledgehammer' invokes external automatic theorem provers as
wenzelm@25129
  4522
background processes.  It generates calls to the "metis" method if
wenzelm@25129
  4523
successful. These can be pasted into the proof.  Users do not have to
wenzelm@25129
  4524
wait for the automatic provers to return.  WARNING: does not really
wenzelm@25129
  4525
work with multi-threading.
wenzelm@25129
  4526
wenzelm@24804
  4527
* New "auto_quickcheck" feature tests outermost goal statements for
wenzelm@24804
  4528
potential counter-examples.  Controlled by ML references
wenzelm@24804
  4529
auto_quickcheck (default true) and auto_quickcheck_time_limit (default
wenzelm@25129
  4530
5000 milliseconds).  Fails silently if statements is outside of
wenzelm@25129
  4531
executable fragment, or any other codgenerator problem occurs.
wenzelm@24804
  4532
haftmann@25184
  4533
* New constant "undefined" with axiom "undefined x = undefined".
haftmann@25184
  4534
haftmann@25184
  4535
* Added class "HOL.eq", allowing for code generation with polymorphic
haftmann@25184
  4536
equality.
wenzelm@24800
  4537
wenzelm@24800
  4538
* Some renaming of class constants due to canonical name prefixing in
wenzelm@24800
  4539
the new 'class' package:
haftmann@22997
  4540
haftmann@25184
  4541
    HOL.abs ~> HOL.abs_class.abs
haftmann@22997
  4542
    HOL.divide ~> HOL.divide_class.divide
haftmann@25184
  4543
    0 ~> HOL.zero_class.zero
haftmann@25184
  4544
    1 ~> HOL.one_class.one
haftmann@25184
  4545
    op + ~> HOL.plus_class.plus
haftmann@25184
  4546
    op - ~> HOL.minus_class.minus
haftmann@25184
  4547
    uminus ~> HOL.minus_class.uminus
haftmann@25184
  4548
    op * ~> HOL.times_class.times
haftmann@25184
  4549
    op < ~> HOL.ord_class.less
haftmann@25184
  4550
    op <= > HOL.ord_class.less_eq
haftmann@24996
  4551
    Nat.power ~> Power.power_class.power
haftmann@22997
  4552
    Nat.size ~> Nat.size_class.size
haftmann@22997
  4553
    Numeral.number_of ~> Numeral.number_class.number_of
haftmann@24996
  4554
    FixedPoint.Inf ~> Lattices.complete_lattice_class.Inf
haftmann@24996
  4555
    FixedPoint.Sup ~> Lattices.complete_lattice_class.Sup
haftmann@23129
  4556
    Orderings.min ~> Orderings.ord_class.min
haftmann@23129
  4557
    Orderings.max ~> Orderings.ord_class.max
haftmann@25184
  4558
    Divides.op div ~> Divides.div_class.div
haftmann@25184
  4559
    Divides.op mod ~> Divides.div_class.mod
haftmann@25184
  4560
    Divides.op dvd ~> Divides.div_class.dvd
haftmann@25184
  4561
haftmann@25184
  4562
INCOMPATIBILITY.  Adaptions may be required in the following cases:
haftmann@25184
  4563
haftmann@25184
  4564
a) User-defined constants using any of the names "plus", "minus",
haftmann@25184
  4565
"times", "less" or "less_eq". The standard syntax translations for
haftmann@25184
  4566
"+", "-" and "*" may go wrong.  INCOMPATIBILITY: use more specific
haftmann@25184
  4567
names.
haftmann@25184
  4568
haftmann@25184
  4569
b) Variables named "plus", "minus", "times", "less", "less_eq"
haftmann@25184
  4570
INCOMPATIBILITY: use more specific names.
haftmann@25184
  4571
haftmann@25184
  4572
c) Permutative equations (e.g. "a + b = b + a")
haftmann@25184
  4573
Since the change of names also changes the order of terms, permutative
haftmann@25184
  4574
rewrite rules may get applied in a different order. Experience shows
haftmann@25184
  4575
that this is rarely the case (only two adaptions in the whole Isabelle
haftmann@25184
  4576
distribution).  INCOMPATIBILITY: rewrite proofs
haftmann@25184
  4577
haftmann@25184
  4578
d) ML code directly refering to constant names
haftmann@25184
  4579
This in general only affects hand-written proof tactics, simprocs and
haftmann@25184
  4580
so on.  INCOMPATIBILITY: grep your sourcecode and replace names.
haftmann@25184
  4581
Consider using @{const_name} antiquotation.
haftmann@24996
  4582
wenzelm@24800
  4583
* New class "default" with associated constant "default".
wenzelm@24800
  4584
wenzelm@24800
  4585
* Function "sgn" is now overloaded and available on int, real, complex
wenzelm@24800
  4586
(and other numeric types), using class "sgn".  Two possible defs of
wenzelm@24800
  4587
sgn are given as equational assumptions in the classes sgn_if and
wenzelm@24800
  4588
sgn_div_norm; ordered_idom now also inherits from sgn_if.
wenzelm@24800
  4589
INCOMPATIBILITY.
wenzelm@24800
  4590
haftmann@25184
  4591
* Locale "partial_order" now unified with class "order" (cf. theory
haftmann@25184
  4592
Orderings), added parameter "less".  INCOMPATIBILITY.
haftmann@25184
  4593
haftmann@25184
  4594
* Renamings in classes "order" and "linorder": facts "refl", "trans" and
haftmann@25184
  4595
"cases" to "order_refl", "order_trans" and "linorder_cases", to avoid
haftmann@25184
  4596
clashes with HOL "refl" and "trans".  INCOMPATIBILITY.
haftmann@25184
  4597
haftmann@25184
  4598
* Classes "order" and "linorder": potential INCOMPATIBILITY due to
haftmann@25184
  4599
changed order of proof goals in instance proofs.
haftmann@25184
  4600
haftmann@25184
  4601
* The transitivity reasoner for partial and linear orders is set up
haftmann@25184
  4602
for classes "order" and "linorder".  Instances of the reasoner are available
haftmann@25184
  4603
in all contexts importing or interpreting the corresponding locales.
haftmann@25184
  4604
Method "order" invokes the reasoner separately; the reasoner
haftmann@25184
  4605
is also integrated with the Simplifier as a solver.  Diagnostic
haftmann@25184
  4606
command 'print_orders' shows the available instances of the reasoner
haftmann@25184
  4607
in the current context.
haftmann@25184
  4608
haftmann@25184
  4609
* Localized monotonicity predicate in theory "Orderings"; integrated
haftmann@25184
  4610
lemmas max_of_mono and min_of_mono with this predicate.
haftmann@25184
  4611
INCOMPATIBILITY.
haftmann@25184
  4612
haftmann@25184
  4613
* Formulation of theorem "dense" changed slightly due to integration
haftmann@25184
  4614
with new class dense_linear_order.
haftmann@25184
  4615
haftmann@25184
  4616
* Uniform lattice theory development in HOL.
haftmann@22422
  4617
haftmann@22422
  4618
    constants "meet" and "join" now named "inf" and "sup"
haftmann@22422
  4619
    constant "Meet" now named "Inf"
haftmann@22422
  4620
haftmann@22450
  4621
    classes "meet_semilorder" and "join_semilorder" now named
haftmann@22450
  4622
      "lower_semilattice" and "upper_semilattice"
haftmann@22450
  4623
    class "lorder" now named "lattice"
haftmann@22450
  4624
    class "comp_lat" now named "complete_lattice"
haftmann@22450
  4625
haftmann@22450
  4626
    Instantiation of lattice classes allows explicit definitions
haftmann@24342
  4627
    for "inf" and "sup" operations (or "Inf" and "Sup" for complete lattices).
haftmann@22450
  4628
haftmann@23129
  4629
  INCOMPATIBILITY.  Theorem renames:
haftmann@22450
  4630
haftmann@22422
  4631
    meet_left_le            ~> inf_le1
haftmann@22422
  4632
    meet_right_le           ~> inf_le2
haftmann@22422
  4633
    join_left_le            ~> sup_ge1
haftmann@22422
  4634
    join_right_le           ~> sup_ge2
haftmann@22422
  4635
    meet_join_le            ~> inf_sup_ord
haftmann@22422
  4636
    le_meetI                ~> le_infI
haftmann@22422
  4637
    join_leI                ~> le_supI
haftmann@22422
  4638
    le_meet                 ~> le_inf_iff
haftmann@22422
  4639
    le_join                 ~> ge_sup_conv
haftmann@22422
  4640
    meet_idempotent         ~> inf_idem
haftmann@22422
  4641
    join_idempotent         ~> sup_idem
haftmann@22422
  4642
    meet_comm               ~> inf_commute
haftmann@22422
  4643
    join_comm               ~> sup_commute
haftmann@22422
  4644
    meet_leI1               ~> le_infI1
haftmann@22422
  4645
    meet_leI2               ~> le_infI2
haftmann@22422
  4646
    le_joinI1               ~> le_supI1
haftmann@22422
  4647
    le_joinI2               ~> le_supI2
haftmann@22422
  4648
    meet_assoc              ~> inf_assoc
haftmann@22422
  4649
    join_assoc              ~> sup_assoc
haftmann@22422
  4650
    meet_left_comm          ~> inf_left_commute
haftmann@22422
  4651
    meet_left_idempotent    ~> inf_left_idem
haftmann@22422
  4652
    join_left_comm          ~> sup_left_commute
haftmann@22422
  4653
    join_left_idempotent    ~> sup_left_idem
haftmann@22422
  4654
    meet_aci                ~> inf_aci
haftmann@22422
  4655
    join_aci                ~> sup_aci
haftmann@22422
  4656
    le_def_meet             ~> le_iff_inf
haftmann@22422
  4657
    le_def_join             ~> le_iff_sup
haftmann@22422
  4658
    join_absorp2            ~> sup_absorb2
haftmann@22422
  4659
    join_absorp1            ~> sup_absorb1
haftmann@22422
  4660
    meet_absorp1            ~> inf_absorb1
haftmann@22422
  4661
    meet_absorp2            ~> inf_absorb2
haftmann@22422
  4662
    meet_join_absorp        ~> inf_sup_absorb
haftmann@22422
  4663
    join_meet_absorp        ~> sup_inf_absorb
haftmann@22422
  4664
    distrib_join_le         ~> distrib_sup_le
haftmann@22422
  4665
    distrib_meet_le         ~> distrib_inf_le
haftmann@22422
  4666
haftmann@22422
  4667
    add_meet_distrib_left   ~> add_inf_distrib_left
haftmann@22422
  4668
    add_join_distrib_left   ~> add_sup_distrib_left
haftmann@22422
  4669
    is_join_neg_meet        ~> is_join_neg_inf
haftmann@22422
  4670
    is_meet_neg_join        ~> is_meet_neg_sup
haftmann@22422
  4671
    add_meet_distrib_right  ~> add_inf_distrib_right
haftmann@22422
  4672
    add_join_distrib_right  ~> add_sup_distrib_right
haftmann@22422
  4673
    add_meet_join_distribs  ~> add_sup_inf_distribs
haftmann@22422
  4674
    join_eq_neg_meet        ~> sup_eq_neg_inf
haftmann@22422
  4675
    meet_eq_neg_join        ~> inf_eq_neg_sup
haftmann@22422
  4676
    add_eq_meet_join        ~> add_eq_inf_sup
haftmann@22422
  4677
    meet_0_imp_0            ~> inf_0_imp_0
haftmann@22422
  4678
    join_0_imp_0            ~> sup_0_imp_0
haftmann@22422
  4679
    meet_0_eq_0             ~> inf_0_eq_0
haftmann@22422
  4680
    join_0_eq_0             ~> sup_0_eq_0
haftmann@22422
  4681
    neg_meet_eq_join        ~> neg_inf_eq_sup
haftmann@22422
  4682
    neg_join_eq_meet        ~> neg_sup_eq_inf
haftmann@22422
  4683
    join_eq_if              ~> sup_eq_if
haftmann@22422
  4684
haftmann@22422
  4685
    mono_meet               ~> mono_inf
haftmann@22422
  4686
    mono_join               ~> mono_sup
haftmann@22422
  4687
    meet_bool_eq            ~> inf_bool_eq
haftmann@22422
  4688
    join_bool_eq            ~> sup_bool_eq
haftmann@22422
  4689
    meet_fun_eq             ~> inf_fun_eq
haftmann@22422
  4690
    join_fun_eq             ~> sup_fun_eq
haftmann@22422
  4691
    meet_set_eq             ~> inf_set_eq
haftmann@22422
  4692
    join_set_eq             ~> sup_set_eq
haftmann@22422
  4693
    meet1_iff               ~> inf1_iff
haftmann@22422
  4694
    meet2_iff               ~> inf2_iff
haftmann@22422
  4695
    meet1I                  ~> inf1I
haftmann@22422
  4696
    meet2I                  ~> inf2I
haftmann@22422
  4697
    meet1D1                 ~> inf1D1
haftmann@22422
  4698
    meet2D1                 ~> inf2D1
haftmann@22422
  4699
    meet1D2                 ~> inf1D2
haftmann@22422
  4700
    meet2D2                 ~> inf2D2
haftmann@22422
  4701
    meet1E                  ~> inf1E
haftmann@22422
  4702
    meet2E                  ~> inf2E
haftmann@22422
  4703
    join1_iff               ~> sup1_iff
haftmann@22422
  4704
    join2_iff               ~> sup2_iff
haftmann@22422
  4705
    join1I1                 ~> sup1I1
haftmann@22422
  4706
    join2I1                 ~> sup2I1
haftmann@22422
  4707
    join1I1                 ~> sup1I1
haftmann@22422
  4708
    join2I2                 ~> sup1I2
haftmann@22422
  4709
    join1CI                 ~> sup1CI
haftmann@22422
  4710
    join2CI                 ~> sup2CI
haftmann@22422
  4711
    join1E                  ~> sup1E
haftmann@22422
  4712
    join2E                  ~> sup2E
haftmann@22422
  4713
haftmann@22422
  4714
    is_meet_Meet            ~> is_meet_Inf
haftmann@22422
  4715
    Meet_bool_def           ~> Inf_bool_def
haftmann@22422
  4716
    Meet_fun_def            ~> Inf_fun_def
haftmann@22422
  4717
    Meet_greatest           ~> Inf_greatest
haftmann@22422
  4718
    Meet_lower              ~> Inf_lower
haftmann@22422
  4719
    Meet_set_def            ~> Inf_set_def
haftmann@22422
  4720
haftmann@24342
  4721
    Sup_def                 ~> Sup_Inf
haftmann@24342
  4722
    Sup_bool_eq             ~> Sup_bool_def
haftmann@24342
  4723
    Sup_fun_eq              ~> Sup_fun_def
haftmann@24342
  4724
    Sup_set_eq              ~> Sup_set_def
haftmann@24342
  4725
haftmann@22422
  4726
    listsp_meetI            ~> listsp_infI
haftmann@22422
  4727
    listsp_meet_eq          ~> listsp_inf_eq
haftmann@22422
  4728
haftmann@22450
  4729
    meet_min                ~> inf_min
haftmann@22450
  4730
    join_max                ~> sup_max
haftmann@22450
  4731
haftmann@25184
  4732
* Added syntactic class "size"; overloaded constant "size" now has
haftmann@25184
  4733
type "'a::size ==> bool"
haftmann@25184
  4734
haftmann@25184
  4735
* Internal reorganisation of `size' of datatypes: size theorems
haftmann@25184
  4736
"foo.size" are no longer subsumed by "foo.simps" (but are still
haftmann@25184
  4737
simplification rules by default!); theorems "prod.size" now named
haftmann@25184
  4738
"*.size".
haftmann@25184
  4739
haftmann@25184
  4740
* Class "div" now inherits from class "times" rather than "type".
haftmann@25184
  4741
INCOMPATIBILITY.
haftmann@25184
  4742
haftmann@25184
  4743
* HOL/Finite_Set: "name-space" locales Lattice, Distrib_lattice,
haftmann@25184
  4744
Linorder etc.  have disappeared; operations defined in terms of
haftmann@25184
  4745
fold_set now are named Inf_fin, Sup_fin.  INCOMPATIBILITY.
haftmann@25184
  4746
haftmann@25184
  4747
* HOL/Nat: neq0_conv no longer declared as iff.  INCOMPATIBILITY.
haftmann@25184
  4748
haftmann@25184
  4749
* HOL-Word: New extensive library and type for generic, fixed size
haftmann@25184
  4750
machine words, with arithemtic, bit-wise, shifting and rotating
haftmann@25184
  4751
operations, reflection into int, nat, and bool lists, automation for
haftmann@25184
  4752
linear arithmetic (by automatic reflection into nat or int), including
haftmann@25184
  4753
lemmas on overflow and monotonicity.  Instantiated to all appropriate
haftmann@25184
  4754
arithmetic type classes, supporting automatic simplification of
haftmann@25184
  4755
numerals on all operations.
haftmann@25184
  4756
haftmann@25184
  4757
* Library/Boolean_Algebra: locales for abstract boolean algebras.
haftmann@25184
  4758
haftmann@25184
  4759
* Library/Numeral_Type: numbers as types, e.g. TYPE(32).
haftmann@25184
  4760
haftmann@25184
  4761
* Code generator library theories:
haftmann@25184
  4762
  - Code_Integer represents HOL integers by big integer literals in target
haftmann@25184
  4763
    languages.
haftmann@25184
  4764
  - Code_Char represents HOL characters by character literals in target
haftmann@25184
  4765
    languages.
haftmann@25184
  4766
  - Code_Char_chr like Code_Char, but also offers treatment of character
haftmann@25184
  4767
    codes; includes Code_Integer.
haftmann@25184
  4768
  - Executable_Set allows to generate code for finite sets using lists.
haftmann@25184
  4769
  - Executable_Rat implements rational numbers as triples (sign, enumerator,
haftmann@25184
  4770
    denominator).
haftmann@25184
  4771
  - Executable_Real implements a subset of real numbers, namly those
haftmann@25184
  4772
    representable by rational numbers.
haftmann@25184
  4773
  - Efficient_Nat implements natural numbers by integers, which in general will
haftmann@25184
  4774
    result in higher efficency; pattern matching with 0/Suc is eliminated;
haftmann@25184
  4775
    includes Code_Integer.
haftmann@25184
  4776
  - Code_Index provides an additional datatype index which is mapped to
haftmann@25184
  4777
    target-language built-in integers.
haftmann@26355
  4778
  - Code_Message provides an additional datatype message_string which is isomorphic to
haftmann@25184
  4779
    strings; messages are mapped to target-language strings.
haftmann@25184
  4780
haftmann@25184
  4781
* New package for inductive predicates
haftmann@25184
  4782
haftmann@25184
  4783
  An n-ary predicate p with m parameters z_1, ..., z_m can now be defined via
haftmann@25184
  4784
haftmann@25184
  4785
    inductive
haftmann@25184
  4786
      p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
haftmann@25184
  4787
      for z_1 :: U_1 and ... and z_n :: U_m
haftmann@25184
  4788
    where
haftmann@25184
  4789
      rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n"
haftmann@25184
  4790
    | ...
haftmann@25184
  4791
haftmann@25184
  4792
  with full support for type-inference, rather than
haftmann@25184
  4793
haftmann@25184
  4794
    consts s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
haftmann@25184
  4795
haftmann@25184
  4796
    abbreviation p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
haftmann@25184
  4797
    where "p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m"
haftmann@25184
  4798
haftmann@25184
  4799
    inductive "s z_1 ... z_m"
haftmann@25184
  4800
    intros
haftmann@25184
  4801
      rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m"
haftmann@25184
  4802
      ...
haftmann@25184
  4803
haftmann@25184
  4804
  For backward compatibility, there is a wrapper allowing inductive
haftmann@25184
  4805
  sets to be defined with the new package via
haftmann@25184
  4806
haftmann@25184
  4807
    inductive_set
haftmann@25184
  4808
      s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
haftmann@25184
  4809
      for z_1 :: U_1 and ... and z_n :: U_m
haftmann@25184
  4810
    where
haftmann@25184
  4811
      rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m"
haftmann@25184
  4812
    | ...
haftmann@25184
  4813
haftmann@25184
  4814
  or
haftmann@25184
  4815
haftmann@25184
  4816
    inductive_set
haftmann@25184
  4817
      s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set"
haftmann@25184
  4818
      and p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool"
haftmann@25184
  4819
      for z_1 :: U_1 and ... and z_n :: U_m
haftmann@25184
  4820
    where
haftmann@25184
  4821
      "p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m"
haftmann@25184
  4822
    | rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n"
haftmann@25184
  4823
    | ...
haftmann@25184
  4824
haftmann@25184
  4825
  if the additional syntax "p ..." is required.
haftmann@25184
  4826
haftmann@25184
  4827
  Numerous examples can be found in the subdirectories src/HOL/Auth,
haftmann@25184
  4828
  src/HOL/Bali, src/HOL/Induct, and src/HOL/MicroJava.
haftmann@25184
  4829
haftmann@25184
  4830
  INCOMPATIBILITIES:
haftmann@25184
  4831
haftmann@25184
  4832
  - Since declaration and definition of inductive sets or predicates
haftmann@25184
  4833
    is no longer separated, abbreviations involving the newly
haftmann@25184
  4834
    introduced sets or predicates must be specified together with the
haftmann@25184
  4835
    introduction rules after the 'where' keyword (see above), rather
haftmann@25184
  4836
    than before the actual inductive definition.
haftmann@25184
  4837
haftmann@25184
  4838
  - The variables in induction and elimination rules are now
haftmann@25184
  4839
    quantified in the order of their occurrence in the introduction
haftmann@25184
  4840
    rules, rather than in alphabetical order. Since this may break
haftmann@25184
  4841
    some proofs, these proofs either have to be repaired, e.g. by
haftmann@25184
  4842
    reordering the variables a_i_1 ... a_i_{k_i} in Isar 'case'
haftmann@25184
  4843
    statements of the form
haftmann@25184
  4844
haftmann@25184
  4845
      case (rule_i a_i_1 ... a_i_{k_i})
haftmann@25184
  4846
haftmann@25184
  4847
    or the old order of quantification has to be restored by explicitly adding
haftmann@25184
  4848
    meta-level quantifiers in the introduction rules, i.e.
haftmann@25184
  4849
haftmann@25184
  4850
      | rule_i: "!!a_i_1 ... a_i_{k_i}. ... ==> p z_1 ... z_m t_i_1 ... t_i_n"
haftmann@25184
  4851
haftmann@25184
  4852
  - The format of the elimination rules is now
haftmann@25184
  4853
haftmann@25184
  4854
      p z_1 ... z_m x_1 ... x_n ==>
haftmann@25184
  4855
        (!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P)
haftmann@25184
  4856
        ==> ... ==> P
haftmann@25184
  4857
haftmann@25184
  4858
    for predicates and
haftmann@25184
  4859
haftmann@25184
  4860
      (x_1, ..., x_n) : s z_1 ... z_m ==>
haftmann@25184
  4861
        (!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P)
haftmann@25184
  4862
        ==> ... ==> P
haftmann@25184
  4863
haftmann@25184
  4864
    for sets rather than
haftmann@25184
  4865
haftmann@25184
  4866
      x : s z_1 ... z_m ==>
haftmann@25184
  4867
        (!!a_1_1 ... a_1_{k_1}. x = (t_1_1, ..., t_1_n) ==> ... ==> P)
haftmann@25184
  4868
        ==> ... ==> P
haftmann@25184
  4869
haftmann@25184
  4870
    This may require terms in goals to be expanded to n-tuples
haftmann@25184
  4871
    (e.g. using case_tac or simplification with the split_paired_all
haftmann@25184
  4872
    rule) before the above elimination rule is applicable.
haftmann@25184
  4873
haftmann@25184
  4874
  - The elimination or case analysis rules for (mutually) inductive
haftmann@25184
  4875
    sets or predicates are now called "p_1.cases" ... "p_k.cases". The
haftmann@25184
  4876
    list of rules "p_1_..._p_k.elims" is no longer available.
haftmann@25184
  4877
krauss@25198
  4878
* New package "function"/"fun" for general recursive functions,
krauss@25198
  4879
supporting mutual and nested recursion, definitions in local contexts,
krauss@25198
  4880
more general pattern matching and partiality. See HOL/ex/Fundefs.thy
krauss@25198
  4881
for small examples, and the separate tutorial on the function
krauss@25198
  4882
package. The old recdef "package" is still available as before, but
krauss@25198
  4883
users are encouraged to use the new package.
krauss@25198
  4884
krauss@25198
  4885
* Method "lexicographic_order" automatically synthesizes termination
krauss@25198
  4886
relations as lexicographic combinations of size measures. 
krauss@25198
  4887
haftmann@25184
  4888
* Case-expressions allow arbitrary constructor-patterns (including
haftmann@25184
  4889
"_") and take their order into account, like in functional
haftmann@25184
  4890
programming.  Internally, this is translated into nested
haftmann@25184
  4891
case-expressions; missing cases are added and mapped to the predefined
haftmann@25184
  4892
constant "undefined". In complicated cases printing may no longer show
haftmann@25184
  4893
the original input but the internal form. Lambda-abstractions allow
haftmann@25184
  4894
the same form of pattern matching: "% pat1 => e1 | ..." is an
haftmann@25184
  4895
abbreviation for "%x. case x of pat1 => e1 | ..." where x is a new
haftmann@25184
  4896
variable.
haftmann@25184
  4897
haftmann@25184
  4898
* IntDef: The constant "int :: nat => int" has been removed; now "int"
haftmann@25184
  4899
is an abbreviation for "of_nat :: nat => int". The simplification
haftmann@25184
  4900
rules for "of_nat" have been changed to work like "int" did
haftmann@25184
  4901
previously.  Potential INCOMPATIBILITY:
haftmann@25184
  4902
  - "of_nat (Suc m)" simplifies to "1 + of_nat m" instead of "of_nat m + 1"
haftmann@25184
  4903
  - of_nat_diff and of_nat_mult are no longer default simp rules
haftmann@25184
  4904
haftmann@25184
  4905
* Method "algebra" solves polynomial equations over (semi)rings using
haftmann@25184
  4906
Groebner bases. The (semi)ring structure is defined by locales and the
haftmann@25184
  4907
tool setup depends on that generic context. Installing the method for
haftmann@25184
  4908
a specific type involves instantiating the locale and possibly adding
haftmann@25184
  4909
declarations for computation on the coefficients.  The method is
haftmann@25184
  4910
already instantiated for natural numbers and for the axiomatic class
haftmann@25184
  4911
of idoms with numerals.  See also the paper by Chaieb and Wenzel at
haftmann@25184
  4912
CALCULEMUS 2007 for the general principles underlying this
haftmann@25184
  4913
architecture of context-aware proof-tools.
haftmann@25184
  4914
haftmann@25184
  4915
* Method "ferrack" implements quantifier elimination over
haftmann@25184
  4916
special-purpose dense linear orders using locales (analogous to
haftmann@25184
  4917
"algebra"). The method is already installed for class
haftmann@25184
  4918
{ordered_field,recpower,number_ring} which subsumes real, hyperreal,
haftmann@25184
  4919
rat, etc.
haftmann@25184
  4920
haftmann@25184
  4921
* Former constant "List.op @" now named "List.append".  Use ML
haftmann@25184
  4922
antiquotations @{const_name List.append} or @{term " ... @ ... "} to
haftmann@25184
  4923
circumvent possible incompatibilities when working on ML level.
haftmann@25184
  4924
haftmann@25184
  4925
* primrec: missing cases mapped to "undefined" instead of "arbitrary".
haftmann@25184
  4926
haftmann@25184
  4927
* New function listsum :: 'a list => 'a for arbitrary monoids.
haftmann@25184
  4928
Special syntax: "SUM x <- xs. f x" (and latex variants)
haftmann@25184
  4929
haftmann@25184
  4930
* New syntax for Haskell-like list comprehension (input only), eg.
haftmann@25184
  4931
[(x,y). x <- xs, y <- ys, x ~= y], see also src/HOL/List.thy.
haftmann@25184
  4932
haftmann@25184
  4933
* The special syntax for function "filter" has changed from [x :
haftmann@25184
  4934
xs. P] to [x <- xs. P] to avoid an ambiguity caused by list
haftmann@25184
  4935
comprehension syntax, and for uniformity.  INCOMPATIBILITY.
haftmann@25184
  4936
haftmann@25184
  4937
* [a..b] is now defined for arbitrary linear orders.  It used to be
haftmann@25184
  4938
defined on nat only, as an abbreviation for [a..<Suc b]
haftmann@25184
  4939
INCOMPATIBILITY.
haftmann@25184
  4940
haftmann@25184
  4941
* Renamed lemma "set_take_whileD"  to "set_takeWhileD".
haftmann@25184
  4942
haftmann@25184
  4943
* New functions "sorted" and "sort" in src/HOL/List.thy.
haftmann@25184
  4944
haftmann@25184
  4945
* New lemma collection field_simps (an extension of ring_simps) for
haftmann@25184
  4946
manipulating (in)equations involving division. Multiplies with all
haftmann@25184
  4947
denominators that can be proved to be non-zero (in equations) or
haftmann@25184
  4948
positive/negative (in inequations).
haftmann@25184
  4949
haftmann@25184
  4950
* Lemma collections ring_eq_simps, group_eq_simps and ring_distrib
haftmann@25184
  4951
have been improved and renamed to ring_simps, group_simps and
haftmann@25184
  4952
ring_distribs.  Removed lemmas field_xyz in theory Ring_and_Field
haftmann@25184
  4953
because they were subsumed by lemmas xyz.  INCOMPATIBILITY.
haftmann@25184
  4954
haftmann@25184
  4955
* Theory Library/Commutative_Ring: switched from recdef to function
haftmann@25184
  4956
package; constants add, mul, pow now curried.  Infix syntax for
haftmann@25184
  4957
algebraic operations.
haftmann@25163
  4958
wenzelm@24800
  4959
* Dropped redundant lemma def_imp_eq in favor of meta_eq_to_obj_eq.
haftmann@22218
  4960
INCOMPATIBILITY.
haftmann@22218
  4961
wenzelm@24800
  4962
* Dropped redundant lemma if_def2 in favor of if_bool_eq_conj.
haftmann@22218
  4963
INCOMPATIBILITY.
haftmann@22218
  4964
wenzelm@22126
  4965
* HOL/records: generalised field-update to take a function on the
wenzelm@22126
  4966
field rather than the new value: r(|A := x|) is translated to A_update
wenzelm@22126
  4967
(K x) r The K-combinator that is internally used is called K_record.
schirmer@21226
  4968
INCOMPATIBILITY: Usage of the plain update functions has to be
schirmer@21226
  4969
adapted.
schirmer@21226
  4970
 
wenzelm@24800
  4971
* Class "semiring_0" now contains annihilation axioms x * 0 = 0 and 0
wenzelm@24800
  4972
* x = 0, which are required for a semiring.  Richer structures do not
wenzelm@24800
  4973
inherit from semiring_0 anymore, because this property is a theorem
wenzelm@24800
  4974
there, not an axiom.  INCOMPATIBILITY: In instances of semiring_0,
wenzelm@24800
  4975
there is more to prove, but this is mostly trivial.
wenzelm@24800
  4976
wenzelm@24800
  4977
* Class "recpower" is generalized to arbitrary monoids, not just
wenzelm@24800
  4978
commutative semirings.  INCOMPATIBILITY: may need to incorporate
haftmann@25163
  4979
commutativity or semiring properties additionally.
wenzelm@22126
  4980
wenzelm@22126
  4981
* Constant "List.list_all2" in List.thy now uses authentic syntax.
wenzelm@24800
  4982
INCOMPATIBILITY: translations containing list_all2 may go wrong,
wenzelm@24800
  4983
better use 'abbreviation'.
wenzelm@24800
  4984
wenzelm@24800
  4985
* Renamed constant "List.op mem" to "List.member".  INCOMPATIBILITY.
wenzelm@24800
  4986
wenzelm@22126
  4987
* Numeral syntax: type 'bin' which was a mere type copy of 'int' has
wenzelm@24800
  4988
been abandoned in favour of plain 'int'.  INCOMPATIBILITY --
wenzelm@22126
  4989
significant changes for setting up numeral syntax for types:
wenzelm@24800
  4990
  - New constants Numeral.pred and Numeral.succ instead
haftmann@20485
  4991
      of former Numeral.bin_pred and Numeral.bin_succ.
haftmann@20485
  4992
  - Use integer operations instead of bin_add, bin_mult and so on.
haftmann@20485
  4993
  - Numeral simplification theorems named Numeral.numeral_simps instead of Bin_simps.
haftmann@20485
  4994
  - ML structure Bin_Simprocs now named Int_Numeral_Base_Simprocs.
haftmann@20485
  4995
wenzelm@25177
  4996
See src/HOL/Integ/IntArith.thy for an example setup.
wenzelm@25177
  4997
wenzelm@25177
  4998
* Command 'normal_form' computes the normal form of a term that may
wenzelm@25177
  4999
contain free variables.  For example ``normal_form "rev [a, b, c]"''
wenzelm@25177
  5000
produces ``[b, c, a]'' (without proof).  This command is suitable for
wenzelm@25177
  5001
heavy-duty computations because the functions are compiled to ML
wenzelm@25177
  5002
first.  Correspondingly, a method "normalization" is provided.  See
wenzelm@25177
  5003
further src/HOL/ex/NormalForm.thy and src/Tools/nbe.ML.
nipkow@19895
  5004
wenzelm@17996
  5005
* Alternative iff syntax "A <-> B" for equality on bool (with priority
wenzelm@17996
  5006
25 like -->); output depends on the "iff" print_mode, the default is
wenzelm@17996
  5007
"A = B" (with priority 50).
wenzelm@17996
  5008
wenzelm@21265
  5009
* Relations less (<) and less_eq (<=) are also available on type bool.
wenzelm@21265
  5010
Modified syntax to disallow nesting without explicit parentheses,
wenzelm@24800
  5011
e.g. "(x < y) < z" or "x < (y < z)", but NOT "x < y < z".  Potential
wenzelm@24800
  5012
INCOMPATIBILITY.
wenzelm@21265
  5013
nipkow@18674
  5014
* "LEAST x:A. P" expands to "LEAST x. x:A & P" (input only).
nipkow@18674
  5015
krauss@20716
  5016
* Relation composition operator "op O" now has precedence 75 and binds
krauss@20716
  5017
stronger than union and intersection. INCOMPATIBILITY.
krauss@20716
  5018
wenzelm@22126
  5019
* The old set interval syntax "{m..n(}" (and relatives) has been
wenzelm@22126
  5020
removed.  Use "{m..<n}" (and relatives) instead.
nipkow@19377
  5021
wenzelm@17865
  5022
* In the context of the assumption "~(s = t)" the Simplifier rewrites
wenzelm@24800
  5023
"t = s" to False (by simproc "neq").  INCOMPATIBILITY, consider using
wenzelm@24800
  5024
``declare [[simproc del: neq]]''.
wenzelm@24800
  5025
wenzelm@24800
  5026
* Simplifier: "m dvd n" where m and n are numbers is evaluated to
wenzelm@24800
  5027
True/False.
wenzelm@24800
  5028
wenzelm@24800
  5029
* Theorem Cons_eq_map_conv no longer declared as "simp".
nipkow@19211
  5030
ballarin@19279
  5031
* Theorem setsum_mult renamed to setsum_right_distrib.
ballarin@19279
  5032
nipkow@19211
  5033
* Prefer ex1I over ex_ex1I in single-step reasoning, e.g. by the
wenzelm@22126
  5034
``rule'' method.
wenzelm@22126
  5035
wenzelm@24800
  5036
* Reimplemented methods "sat" and "satx", with several improvements:
wenzelm@24800
  5037
goals no longer need to be stated as "<prems> ==> False", equivalences
wenzelm@24800
  5038
(i.e. "=" on type bool) are handled, variable names of the form
wenzelm@24800
  5039
"lit_<n>" are no longer reserved, significant speedup.
wenzelm@24800
  5040
wenzelm@24800
  5041
* Methods "sat" and "satx" can now replay MiniSat proof traces.
wenzelm@22126
  5042
zChaff is still supported as well.
wenzelm@22126
  5043
wenzelm@22126
  5044
* 'inductive' and 'datatype': provide projections of mutual rules,
wenzelm@22126
  5045
bundled as foo_bar.inducts;
wenzelm@22126
  5046
wenzelm@22126
  5047
* Library: moved theories Parity, GCD, Binomial, Infinite_Set to
wenzelm@22126
  5048
Library.
wenzelm@21256
  5049
wenzelm@21256
  5050
* Library: moved theory Accessible_Part to main HOL.
wenzelm@19572
  5051
wenzelm@18446
  5052
* Library: added theory Coinductive_List of potentially infinite lists
wenzelm@18446
  5053
as greatest fixed-point.
wenzelm@18399
  5054
wenzelm@19254
  5055
* Library: added theory AssocList which implements (finite) maps as
schirmer@19252
  5056
association lists.
webertj@17809
  5057
wenzelm@24800
  5058
* Method "evaluation" solves goals (i.e. a boolean expression)
wenzelm@24800
  5059
efficiently by compiling it to ML.  The goal is "proved" (via an
wenzelm@24800
  5060
oracle) if it evaluates to True.
wenzelm@20807
  5061
wenzelm@20807
  5062
* Linear arithmetic now splits certain operators (e.g. min, max, abs)
wenzelm@24800
  5063
also when invoked by the simplifier.  This results in the Simplifier
wenzelm@24800
  5064
being more powerful on arithmetic goals.  INCOMPATIBILITY.
wenzelm@24800
  5065
Configuration option fast_arith_split_limit=0 recovers the old
wenzelm@24800
  5066
behavior.
webertj@20217
  5067
wenzelm@22126
  5068
* Support for hex (0x20) and binary (0b1001) numerals.
wenzelm@19254
  5069
wenzelm@20807
  5070
* New method: reify eqs (t), where eqs are equations for an
wenzelm@20807
  5071
interpretation I :: 'a list => 'b => 'c and t::'c is an optional
wenzelm@20807
  5072
parameter, computes a term s::'b and a list xs::'a list and proves the
wenzelm@20807
  5073
theorem I xs s = t. This is also known as reification or quoting. The
wenzelm@20807
  5074
resulting theorem is applied to the subgoal to substitute t with I xs
wenzelm@20807
  5075
s.  If t is omitted, the subgoal itself is reified.
wenzelm@20807
  5076
wenzelm@20807
  5077
* New method: reflection corr_thm eqs (t). The parameters eqs and (t)
wenzelm@20807
  5078
are as explained above. corr_thm is a theorem for I vs (f t) = I vs t,
wenzelm@20807
  5079
where f is supposed to be a computable function (in the sense of code
wenzelm@20807
  5080
generattion). The method uses reify to compute s and xs as above then
wenzelm@20807
  5081
applies corr_thm and uses normalization by evaluation to "prove" f s =
wenzelm@20807
  5082
r and finally gets the theorem t = r, which is again applied to the
wenzelm@25177
  5083
subgoal. An Example is available in src/HOL/ex/ReflectionEx.thy.
wenzelm@25177
  5084
wenzelm@25177
  5085
* Reflection: Automatic reification now handels binding, an example is
wenzelm@25177
  5086
available in src/HOL/ex/ReflectionEx.thy
wenzelm@20807
  5087
wenzelm@25397
  5088
* HOL-Statespace: ``State Spaces: The Locale Way'' introduces a
schirmer@25409
  5089
command 'statespace' that is similar to 'record', but introduces an
wenzelm@25397
  5090
abstract specification based on the locale infrastructure instead of
wenzelm@25397
  5091
HOL types.  This leads to extra flexibility in composing state spaces,
wenzelm@25397
  5092
in particular multiple inheritance and renaming of components.
wenzelm@25397
  5093
wenzelm@25397
  5094
wenzelm@19653
  5095
*** HOL-Complex ***
wenzelm@19653
  5096
huffman@22971
  5097
* Hyperreal: Functions root and sqrt are now defined on negative real
huffman@22971
  5098
inputs so that root n (- x) = - root n x and sqrt (- x) = - sqrt x.
huffman@22971
  5099
Nonnegativity side conditions have been removed from many lemmas, so
huffman@22971
  5100
that more subgoals may now be solved by simplification; potential
huffman@22971
  5101
INCOMPATIBILITY.
huffman@22971
  5102
wenzelm@24800
  5103
* Real: new type classes formalize real normed vector spaces and
huffman@21791
  5104
algebras, using new overloaded constants scaleR :: real => 'a => 'a
huffman@21791
  5105
and norm :: 'a => real.
huffman@21791
  5106
wenzelm@24800
  5107
* Real: constant of_real :: real => 'a::real_algebra_1 injects from
wenzelm@24800
  5108
reals into other types. The overloaded constant Reals :: 'a set is now
wenzelm@24800
  5109
defined as range of_real; potential INCOMPATIBILITY.
wenzelm@24800
  5110
wenzelm@24800
  5111
* Real: proper support for ML code generation, including 'quickcheck'.
nipkow@23013
  5112
Reals are implemented as arbitrary precision rationals.
nipkow@23013
  5113
wenzelm@22126
  5114
* Hyperreal: Several constants that previously worked only for the
wenzelm@22126
  5115
reals have been generalized, so they now work over arbitrary vector
wenzelm@22126
  5116
spaces. Type annotations may need to be added in some cases; potential
wenzelm@22126
  5117
INCOMPATIBILITY.
huffman@21791
  5118
huffman@22972
  5119
  Infinitesimal  :: ('a::real_normed_vector) star set
huffman@22972
  5120
  HFinite        :: ('a::real_normed_vector) star set
huffman@22972
  5121
  HInfinite      :: ('a::real_normed_vector) star set
huffman@21791
  5122
  approx         :: ('a::real_normed_vector) star => 'a star => bool
huffman@21791
  5123
  monad          :: ('a::real_normed_vector) star => 'a star set
huffman@21791
  5124
  galaxy         :: ('a::real_normed_vector) star => 'a star set
huffman@22972
  5125
  (NS)LIMSEQ     :: [nat => 'a::real_normed_vector, 'a] => bool
huffman@21791
  5126
  (NS)convergent :: (nat => 'a::real_normed_vector) => bool
huffman@21791
  5127
  (NS)Bseq       :: (nat => 'a::real_normed_vector) => bool
huffman@21791
  5128
  (NS)Cauchy     :: (nat => 'a::real_normed_vector) => bool
huffman@21791
  5129
  (NS)LIM        :: ['a::real_normed_vector => 'b::real_normed_vector, 'a, 'b] => bool
huffman@21791
  5130
  is(NS)Cont     :: ['a::real_normed_vector => 'b::real_normed_vector, 'a] => bool
huffman@21791
  5131
  deriv          :: ['a::real_normed_field => 'a, 'a, 'a] => bool
huffman@22972
  5132
  sgn            :: 'a::real_normed_vector => 'a
huffman@23116
  5133
  exp            :: 'a::{recpower,real_normed_field,banach} => 'a
huffman@21791
  5134
huffman@21791
  5135
* Complex: Some complex-specific constants are now abbreviations for
wenzelm@22126
  5136
overloaded ones: complex_of_real = of_real, cmod = norm, hcmod =
wenzelm@22126
  5137
hnorm.  Other constants have been entirely removed in favor of the
wenzelm@22126
  5138
polymorphic versions (INCOMPATIBILITY):
huffman@21791
  5139
huffman@21791
  5140
  approx        <-- capprox
huffman@21791
  5141
  HFinite       <-- CFinite
huffman@21791
  5142
  HInfinite     <-- CInfinite
huffman@21791
  5143
  Infinitesimal <-- CInfinitesimal
huffman@21791
  5144
  monad         <-- cmonad
huffman@21791
  5145
  galaxy        <-- cgalaxy
huffman@21791
  5146
  (NS)LIM       <-- (NS)CLIM, (NS)CRLIM
huffman@21791
  5147
  is(NS)Cont    <-- is(NS)Contc, is(NS)contCR
huffman@21791
  5148
  (ns)deriv     <-- (ns)cderiv
huffman@21791
  5149
wenzelm@19653
  5150
wenzelm@24801
  5151
*** HOL-Algebra ***
wenzelm@24801
  5152
wenzelm@24801
  5153
* Formalisation of ideals and the quotient construction over rings.
wenzelm@24801
  5154
wenzelm@24801
  5155
* Order and lattice theory no longer based on records.
wenzelm@24801
  5156
INCOMPATIBILITY.
wenzelm@24801
  5157
wenzelm@24801
  5158
* Renamed lemmas least_carrier -> least_closed and greatest_carrier ->
wenzelm@24801
  5159
greatest_closed.  INCOMPATIBILITY.
wenzelm@24801
  5160
wenzelm@24801
  5161
* Method algebra is now set up via an attribute.  For examples see
wenzelm@24801
  5162
Ring.thy.  INCOMPATIBILITY: the method is now weaker on combinations
wenzelm@24801
  5163
of algebraic structures.
wenzelm@24801
  5164
wenzelm@24801
  5165
* Renamed theory CRing to Ring.
wenzelm@24801
  5166
wenzelm@24801
  5167
wenzelm@24801
  5168
*** HOL-Nominal ***
wenzelm@24801
  5169
wenzelm@25148
  5170
* Substantial, yet incomplete support for nominal datatypes (binding
wenzelm@25177
  5171
structures) based on HOL-Nominal logic.  See src/HOL/Nominal and
wenzelm@25177
  5172
src/HOL/Nominal/Examples.  Prospective users should consult
wenzelm@25148
  5173
http://isabelle.in.tum.de/nominal/
wenzelm@25148
  5174
wenzelm@24801
  5175
wenzelm@17878
  5176
*** ML ***
wenzelm@17878
  5177
wenzelm@24643
  5178
* ML basics: just one true type int, which coincides with IntInf.int
wenzelm@24643
  5179
(even on SML/NJ).
wenzelm@24643
  5180
wenzelm@22138
  5181
* ML within Isar: antiquotations allow to embed statically-checked
wenzelm@22138
  5182
formal entities in the source, referring to the context available at
wenzelm@22138
  5183
compile-time.  For example:
wenzelm@22138
  5184
wenzelm@25142
  5185
ML {* @{sort "{zero,one}"} *}
wenzelm@22138
  5186
ML {* @{typ "'a => 'b"} *}
wenzelm@22138
  5187
ML {* @{term "%x. x"} *}
wenzelm@22138
  5188
ML {* @{prop "x == y"} *}
wenzelm@22138
  5189
ML {* @{ctyp "'a => 'b"} *}
wenzelm@22138
  5190
ML {* @{cterm "%x. x"} *}
wenzelm@22138
  5191
ML {* @{cprop "x == y"} *}
wenzelm@22138
  5192
ML {* @{thm asm_rl} *}
wenzelm@22138
  5193
ML {* @{thms asm_rl} *}
wenzelm@24692
  5194
ML {* @{type_name c} *}
wenzelm@25142
  5195
ML {* @{type_syntax c} *}
wenzelm@22376
  5196
ML {* @{const_name c} *}
wenzelm@22376
  5197
ML {* @{const_syntax c} *}
wenzelm@22138
  5198
ML {* @{context} *}
wenzelm@22138
  5199
ML {* @{theory} *}
wenzelm@22138
  5200
ML {* @{theory Pure} *}
wenzelm@24692
  5201
ML {* @{theory_ref} *}
wenzelm@24692
  5202
ML {* @{theory_ref Pure} *}
wenzelm@22138
  5203
ML {* @{simpset} *}
wenzelm@22138
  5204
ML {* @{claset} *}
wenzelm@22138
  5205
ML {* @{clasimpset} *}
wenzelm@22138
  5206
wenzelm@22151
  5207
The same works for sources being ``used'' within an Isar context.
wenzelm@22151
  5208
wenzelm@22152
  5209
* ML in Isar: improved error reporting; extra verbosity with
wenzelm@24706
  5210
ML_Context.trace enabled.
wenzelm@22152
  5211
wenzelm@19032
  5212
* Pure/General/table.ML: the join operations now works via exceptions
wenzelm@24706
  5213
DUP/SAME instead of type option. This is simpler in simple cases, and
wenzelm@19081
  5214
admits slightly more efficient complex applications.
wenzelm@18446
  5215
wenzelm@24800
  5216
* Pure: 'advanced' translation functions (parse_translation etc.) now
wenzelm@24800
  5217
use Context.generic instead of just theory.
wenzelm@24800
  5218
wenzelm@18642
  5219
* Pure: datatype Context.generic joins theory/Proof.context and
wenzelm@18644
  5220
provides some facilities for code that works in either kind of
wenzelm@18642
  5221
context, notably GenericDataFun for uniform theory and proof data.
wenzelm@18642
  5222
wenzelm@18737
  5223
* Pure: simplified internal attribute type, which is now always
wenzelm@24706
  5224
Context.generic * thm -> Context.generic * thm. Global (theory) vs.
wenzelm@24706
  5225
local (Proof.context) attributes have been discontinued, while
wenzelm@24706
  5226
minimizing code duplication. Thm.rule_attribute and
wenzelm@24706
  5227
Thm.declaration_attribute build canonical attributes; see also structure
wenzelm@24706
  5228
Context for further operations on Context.generic, notably
wenzelm@24706
  5229
GenericDataFun. INCOMPATIBILITY, need to adapt attribute type
wenzelm@19006
  5230
declarations and definitions.
wenzelm@19006
  5231
wenzelm@24800
  5232
* Context data interfaces (Theory/Proof/GenericDataFun): removed
wenzelm@24800
  5233
name/print, uninitialized data defaults to ad-hoc copy of empty value,
wenzelm@24800
  5234
init only required for impure data. INCOMPATIBILITY: empty really need
wenzelm@24800
  5235
to be empty (no dependencies on theory content!)
wenzelm@24800
  5236
wenzelm@19508
  5237
* Pure/kernel: consts certification ignores sort constraints given in
wenzelm@24800
  5238
signature declarations. (This information is not relevant to the
wenzelm@24800
  5239
logic, but only for type inference.) SIGNIFICANT INTERNAL CHANGE,
wenzelm@24800
  5240
potential INCOMPATIBILITY.
wenzelm@19508
  5241
wenzelm@19508
  5242
* Pure: axiomatic type classes are now purely definitional, with
wenzelm@19508
  5243
explicit proofs of class axioms and super class relations performed
wenzelm@24706
  5244
internally. See Pure/axclass.ML for the main internal interfaces --
wenzelm@36856
  5245
notably AxClass.define_class supercedes AxClass.add_axclass, and
wenzelm@24706
  5246
AxClass.axiomatize_class/classrel/arity supersede
wenzelm@19508
  5247
Sign.add_classes/classrel/arities.
wenzelm@19508
  5248
wenzelm@19006
  5249
* Pure/Isar: Args/Attrib parsers operate on Context.generic --
wenzelm@19006
  5250
global/local versions on theory vs. Proof.context have been
wenzelm@19006
  5251
discontinued; Attrib.syntax and Method.syntax have been adapted
wenzelm@19006
  5252
accordingly.  INCOMPATIBILITY, need to adapt parser expressions for
wenzelm@19006
  5253
attributes, methods, etc.
wenzelm@18642
  5254
wenzelm@18446
  5255
* Pure: several functions of signature "... -> theory -> theory * ..."
wenzelm@18446
  5256
have been reoriented to "... -> theory -> ... * theory" in order to
wenzelm@18446
  5257
allow natural usage in combination with the ||>, ||>>, |-> and
wenzelm@18446
  5258
fold_map combinators.
haftmann@18051
  5259
wenzelm@21647
  5260
* Pure: official theorem names (closed derivations) and additional
wenzelm@21647
  5261
comments (tags) are now strictly separate.  Name hints -- which are
wenzelm@21647
  5262
maintained as tags -- may be attached any time without affecting the
wenzelm@21647
  5263
derivation.
wenzelm@21647
  5264
wenzelm@18020
  5265
* Pure: primitive rule lift_rule now takes goal cterm instead of an
wenzelm@18145
  5266
actual goal state (thm).  Use Thm.lift_rule (Thm.cprem_of st i) to
wenzelm@18020
  5267
achieve the old behaviour.
wenzelm@18020
  5268
wenzelm@18020
  5269
* Pure: the "Goal" constant is now called "prop", supporting a
wenzelm@18020
  5270
slightly more general idea of ``protecting'' meta-level rule
wenzelm@18020
  5271
statements.
wenzelm@18020
  5272
wenzelm@20040
  5273
* Pure: Logic.(un)varify only works in a global context, which is now
wenzelm@20040
  5274
enforced instead of silently assumed.  INCOMPATIBILITY, may use
wenzelm@20040
  5275
Logic.legacy_(un)varify as temporary workaround.
wenzelm@20040
  5276
wenzelm@20090
  5277
* Pure: structure Name provides scalable operations for generating
wenzelm@20090
  5278
internal variable names, notably Name.variants etc.  This replaces
wenzelm@20090
  5279
some popular functions from term.ML:
wenzelm@20090
  5280
wenzelm@20090
  5281
  Term.variant		->  Name.variant
wenzelm@24800
  5282
  Term.variantlist	->  Name.variant_list
wenzelm@20090
  5283
  Term.invent_names	->  Name.invent_list
wenzelm@20090
  5284
wenzelm@20090
  5285
Note that low-level renaming rarely occurs in new code -- operations
wenzelm@20090
  5286
from structure Variable are used instead (see below).
wenzelm@20090
  5287
wenzelm@20040
  5288
* Pure: structure Variable provides fundamental operations for proper
wenzelm@20040
  5289
treatment of fixed/schematic variables in a context.  For example,
wenzelm@20040
  5290
Variable.import introduces fixes for schematics of given facts and
wenzelm@20040
  5291
Variable.export reverses the effect (up to renaming) -- this replaces
wenzelm@20040
  5292
various freeze_thaw operations.
wenzelm@20040
  5293
wenzelm@18567
  5294
* Pure: structure Goal provides simple interfaces for
wenzelm@17981
  5295
init/conclude/finish and tactical prove operations (replacing former
wenzelm@20040
  5296
Tactic.prove).  Goal.prove is the canonical way to prove results
wenzelm@20040
  5297
within a given context; Goal.prove_global is a degraded version for
wenzelm@20040
  5298
theory level goals, including a global Drule.standard.  Note that
wenzelm@20040
  5299
OldGoals.prove_goalw_cterm has long been obsolete, since it is
wenzelm@20040
  5300
ill-behaved in a local proof context (e.g. with local fixes/assumes or
wenzelm@20040
  5301
in a locale context).
wenzelm@17981
  5302
wenzelm@24706
  5303
* Pure/Syntax: generic interfaces for parsing (Syntax.parse_term etc.)
wenzelm@24706
  5304
and type checking (Syntax.check_term etc.), with common combinations
wenzelm@24706
  5305
(Syntax.read_term etc.). These supersede former Sign.read_term etc.
wenzelm@24706
  5306
which are considered legacy and await removal.
wenzelm@24706
  5307
wenzelm@24920
  5308
* Pure/Syntax: generic interfaces for type unchecking
wenzelm@24920
  5309
(Syntax.uncheck_terms etc.) and unparsing (Syntax.unparse_term etc.),
wenzelm@24920
  5310
with common combinations (Syntax.pretty_term, Syntax.string_of_term
wenzelm@24920
  5311
etc.).  Former Sign.pretty_term, Sign.string_of_term etc. are still
wenzelm@24924
  5312
available for convenience, but refer to the very same operations using
wenzelm@24924
  5313
a mere theory instead of a full context.
wenzelm@24920
  5314
wenzelm@18815
  5315
* Isar: simplified treatment of user-level errors, using exception
wenzelm@18687
  5316
ERROR of string uniformly.  Function error now merely raises ERROR,
wenzelm@18686
  5317
without any side effect on output channels.  The Isar toplevel takes
wenzelm@18686
  5318
care of proper display of ERROR exceptions.  ML code may use plain
wenzelm@18686
  5319
handle/can/try; cat_error may be used to concatenate errors like this:
wenzelm@18686
  5320
wenzelm@18686
  5321
  ... handle ERROR msg => cat_error msg "..."
wenzelm@18686
  5322
wenzelm@18686
  5323
Toplevel ML code (run directly or through the Isar toplevel) may be
wenzelm@18687
  5324
embedded into the Isar toplevel with exception display/debug like
wenzelm@18687
  5325
this:
wenzelm@18686
  5326
wenzelm@18686
  5327
  Isar.toplevel (fn () => ...)
wenzelm@18686
  5328
wenzelm@18686
  5329
INCOMPATIBILITY, removed special transform_error facilities, removed
wenzelm@18686
  5330
obsolete variants of user-level exceptions (ERROR_MESSAGE,
wenzelm@18686
  5331
Context.PROOF