author | wenzelm |
Sat, 04 Apr 2015 21:21:40 +0200 | |
changeset 59924 | 801b979ec0c2 |
parent 59903 | 9d70a39d1cf3 |
child 59926 | 003dbac78546 |
permissions | -rw-r--r-- |
57491 | 1 |
Isabelle NEWS -- history of user-relevant changes |
2 |
================================================= |
|
2553 | 3 |
|
57695 | 4 |
New in this Isabelle version |
5 |
---------------------------- |
|
6 |
||
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
7 |
*** General *** |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
8 |
|
59901 | 9 |
* Command 'experiment' opens an anonymous locale context with private |
10 |
naming policy. |
|
11 |
||
59660
49e498cedd02
support structural composition (THEN_ALL_NEW) for proof methods;
wenzelm
parents:
59648
diff
changeset
|
12 |
* Structural composition of proof methods (meth1; meth2) in Isar |
49e498cedd02
support structural composition (THEN_ALL_NEW) for proof methods;
wenzelm
parents:
59648
diff
changeset
|
13 |
corresponds to (tac1 THEN_ALL_NEW tac2) in ML. |
49e498cedd02
support structural composition (THEN_ALL_NEW) for proof methods;
wenzelm
parents:
59648
diff
changeset
|
14 |
|
59648 | 15 |
* Generated schematic variables in standard format of exported facts are |
16 |
incremented to avoid material in the proof context. Rare |
|
17 |
INCOMPATIBILITY, explicit instantiation sometimes needs to refer to |
|
18 |
different index. |
|
19 |
||
59569 | 20 |
* Commands 'method_setup' and 'attribute_setup' now work within a local |
21 |
theory context. |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
22 |
|
57946
6a26aa5fa65e
updated documentation concerning 'named_theorems';
wenzelm
parents:
57941
diff
changeset
|
23 |
* Command 'named_theorems' declares a dynamic fact within the context, |
59569 | 24 |
together with an attribute to maintain the content incrementally. This |
25 |
supersedes functor Named_Thms, but with a subtle change of semantics due |
|
26 |
to external visual order vs. internal reverse order. |
|
57946
6a26aa5fa65e
updated documentation concerning 'named_theorems';
wenzelm
parents:
57941
diff
changeset
|
27 |
|
58801 | 28 |
* Command 'notepad' requires proper nesting of begin/end and its proof |
29 |
structure in the body: 'oops' is no longer supported here. Minor |
|
30 |
INCOMPATIBILITY, use 'sorry' instead. |
|
31 |
||
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
32 |
* Outer syntax commands are managed authentically within the theory |
59569 | 33 |
context, without implicit global state. Potential for accidental |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
34 |
INCOMPATIBILITY, make sure that required theories are really imported. |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58872
diff
changeset
|
35 |
|
59105 | 36 |
* 'find_theorems': search patterns which are abstractions are |
59570 | 37 |
schematically expanded before search. Search results match the naive |
59569 | 38 |
expectation more closely, particularly wrt. abbreviations. |
59105 | 39 |
INCOMPATIBILITY. |
40 |
||
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57882
diff
changeset
|
41 |
|
58524 | 42 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
43 |
||
59308 | 44 |
* Old graph browser (Java/AWT 1.0) is superseded by improved graphview |
45 |
panel, which also includes PDF output. |
|
46 |
||
59569 | 47 |
* Improved folding mode "isabelle" based on Isar syntax. Alternatively, |
48 |
the "sidekick" mode may be used for document structure. |
|
49 |
||
50 |
* Extended bracket matching based on Isar language structure. System |
|
51 |
option jedit_structure_limit determines maximum number of lines to scan |
|
52 |
in the buffer. |
|
58758 | 53 |
|
58540 | 54 |
* Support for BibTeX files: context menu, context-sensitive token |
55 |
marker, SideKick parser. |
|
58524 | 56 |
|
58551 | 57 |
* Document antiquotation @{cite} provides formal markup, which is |
58 |
interpreted semi-formally based on .bib files that happen to be opened |
|
58592 | 59 |
in the editor (hyperlinks, completion etc.). |
58551 | 60 |
|
58785 | 61 |
* Less waste of vertical space via negative line spacing (see Global |
62 |
Options / Text Area). |
|
63 |
||
58524 | 64 |
|
58202 | 65 |
*** Pure *** |
66 |
||
59796 | 67 |
* Explicit instantiation via attributes "where", "of", and proof methods |
68 |
"rule_tac" with derivatives like "subgoal_tac" etc. admit dummy patterns |
|
69 |
("_") that stand for anonymous local variables. |
|
70 |
||
59835
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
71 |
* Proof methods with explicit instantiation ("rule_tac", "subgoal_tac" |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
72 |
etc.) allow an optional context of local variables ('for' declaration): |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
73 |
these variables become schematic in the instantiated theorem; this |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
74 |
behaviour is analogous to 'for' in attributes "where" and "of". |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
75 |
Configuration option rule_insts_schematic (default false) controls use |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
76 |
of schematic variables outside the context. Minor INCOMPATIBILITY, |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
77 |
declare rule_insts_schematic = true temporarily and update to use local |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
78 |
variable declarations or dummy patterns instead. |
97872c658a44
rule_insts_schematic is considered legacy and false by default;
wenzelm
parents:
59815
diff
changeset
|
79 |
|
58202 | 80 |
* Command "class_deps" takes optional sort arguments constraining |
81 |
the search space. |
|
82 |
||
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58373
diff
changeset
|
83 |
* Lexical separation of signed and unsigend numerals: categories "num" |
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58373
diff
changeset
|
84 |
and "float" are unsigend. INCOMPATIBILITY: subtle change in precedence |
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58373
diff
changeset
|
85 |
of numeral signs, particulary in expressions involving infix syntax like |
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58373
diff
changeset
|
86 |
"(- 1) ^ n". |
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58373
diff
changeset
|
87 |
|
58421 | 88 |
* Old inner token category "xnum" has been discontinued. Potential |
89 |
INCOMPATIBILITY for exotic syntax: may use mixfix grammar with "num" |
|
90 |
token category instead. |
|
91 |
||
58202 | 92 |
|
57737 | 93 |
*** HOL *** |
94 |
||
59868 | 95 |
* Given up separate type class no_zero_divisors in favour of fully algebraic |
96 |
semiring_no_zero_divisors. INCOMPATIBILITY. |
|
97 |
||
98 |
* Class linordered_semidom really requires no zero divisors. |
|
99 |
INCOMPATIBILITY. |
|
100 |
||
101 |
* Classes division_ring, field and linordered_field always demand |
|
102 |
`inverse 0 = 0`. Given up separate classes division_ring_inverse_zero, |
|
103 |
field_inverse_zero and linordered_field_inverse_zero. |
|
104 |
INCOMPATIBILITY. |
|
105 |
||
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59813
diff
changeset
|
106 |
* Type classes cancel_ab_semigroup_add / cancel_monoid_add specify |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59813
diff
changeset
|
107 |
explicit additive inverse operation. INCOMPATIBILITY. |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59813
diff
changeset
|
108 |
|
59739 | 109 |
* New proof method "rewrite" (in ~~/src/HOL/Library/Rewrite) for |
110 |
single-step rewriting with subterm selection based on patterns. |
|
111 |
||
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59739
diff
changeset
|
112 |
* The functions "sin" and "cos" are now defined for any "'{real_normed_algebra_1,banach}" |
59659
1ce77bca58f8
Removed the infix operator "choose" to allow HOLCF to build
paulson <lp15@cam.ac.uk>
parents:
59648
diff
changeset
|
113 |
type, so in particular on "real" and "complex" uniformly. |
1ce77bca58f8
Removed the infix operator "choose" to allow HOLCF to build
paulson <lp15@cam.ac.uk>
parents:
59648
diff
changeset
|
114 |
Minor INCOMPATIBILITY: type constraints may be needed. |
1ce77bca58f8
Removed the infix operator "choose" to allow HOLCF to build
paulson <lp15@cam.ac.uk>
parents:
59648
diff
changeset
|
115 |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
116 |
* New library of properties of the complex transcendental functions sin, cos, tan, exp, |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59868
diff
changeset
|
117 |
Ln, Arctan, Arcsin, Arccos. Ported from HOL Light. |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59739
diff
changeset
|
118 |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59661
diff
changeset
|
119 |
* The factorial function, "fact", now has type "nat => 'a" (of a sort that admits |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59661
diff
changeset
|
120 |
numeric types including nat, int, real and complex. INCOMPATIBILITY: |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59661
diff
changeset
|
121 |
an expression such as "fact 3 = 6" may require a type constraint, and the combination |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59661
diff
changeset
|
122 |
"real (fact k)" is likely to be unsatisfactory. If a type conversion is still necessary, |
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
123 |
then use "of_nat (fact k)" or "real_of_nat (fact k)". |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59661
diff
changeset
|
124 |
|
59587
8ea7b22525cb
Removed the obsolete functions "natfloor" and "natceiling"
nipkow
parents:
59570
diff
changeset
|
125 |
* removed functions "natfloor" and "natceiling", |
8ea7b22525cb
Removed the obsolete functions "natfloor" and "natceiling"
nipkow
parents:
59570
diff
changeset
|
126 |
use "nat o floor" and "nat o ceiling" instead. |
8ea7b22525cb
Removed the obsolete functions "natfloor" and "natceiling"
nipkow
parents:
59570
diff
changeset
|
127 |
A few of the lemmas have been retained and adapted: in their names |
8ea7b22525cb
Removed the obsolete functions "natfloor" and "natceiling"
nipkow
parents:
59570
diff
changeset
|
128 |
"natfloor"/"natceiling" has been replaced by "nat_floor"/"nat_ceiling". |
8ea7b22525cb
Removed the obsolete functions "natfloor" and "natceiling"
nipkow
parents:
59570
diff
changeset
|
129 |
|
59557 | 130 |
* Qualified some duplicated fact names required for boostrapping |
131 |
the type class hierarchy: |
|
132 |
ab_add_uminus_conv_diff ~> diff_conv_add_uminus |
|
133 |
field_inverse_zero ~> inverse_zero |
|
134 |
field_divide_inverse ~> divide_inverse |
|
135 |
field_inverse ~> left_inverse |
|
136 |
Minor INCOMPATIBILITY. |
|
137 |
||
59555 | 138 |
* Eliminated fact duplicates: |
139 |
mult_less_imp_less_right ~> mult_right_less_imp_less |
|
140 |
mult_less_imp_less_left ~> mult_left_less_imp_less |
|
141 |
Minor INCOMPATIBILITY. |
|
142 |
||
59536 | 143 |
* Fact consolidation: even_less_0_iff is subsumed by |
144 |
double_add_less_zero_iff_single_add_less_zero (simp by default anyway). |
|
145 |
||
59569 | 146 |
* Discontinued old-fashioned "codegen" tool. Code generation can always |
147 |
be externally triggered using an appropriate ROOT file plus a |
|
148 |
corresponding theory. Parametrization is possible using environment |
|
149 |
variables, or ML snippets in the most extreme cases. Minor |
|
150 |
INCOMPATIBILITY. |
|
59480 | 151 |
|
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58770
diff
changeset
|
152 |
* Add NO_MATCH-simproc, allows to check for syntactic non-equality |
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58770
diff
changeset
|
153 |
|
58649
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
haftmann
parents:
58645
diff
changeset
|
154 |
* Generalized and consolidated some theorems concerning divsibility: |
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
haftmann
parents:
58645
diff
changeset
|
155 |
dvd_reduce ~> dvd_add_triv_right_iff |
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
haftmann
parents:
58645
diff
changeset
|
156 |
dvd_plus_eq_right ~> dvd_add_right_iff |
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
haftmann
parents:
58645
diff
changeset
|
157 |
dvd_plus_eq_left ~> dvd_add_left_iff |
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
haftmann
parents:
58645
diff
changeset
|
158 |
Minor INCOMPATIBILITY. |
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
haftmann
parents:
58645
diff
changeset
|
159 |
|
58770 | 160 |
* "even" and "odd" are mere abbreviations for "2 dvd _" and "~ 2 dvd _" |
161 |
and part of HOL-Main. |
|
58645 | 162 |
even_def ~> even_iff_mod_2_eq_zero |
58740 | 163 |
INCOMPATIBILITY. |
58645 | 164 |
|
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
165 |
* Lemma name consolidation: divide_Numeral1 ~> divide_numeral_1 |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
166 |
Minor INCOMPATIBILITY. |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
167 |
|
58776
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
hoelzl
parents:
58775
diff
changeset
|
168 |
* field_simps: Use NO_MATCH-simproc for distribution rules, to avoid |
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
hoelzl
parents:
58775
diff
changeset
|
169 |
non-termination in case of distributing a division. With this change |
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
hoelzl
parents:
58775
diff
changeset
|
170 |
field_simps is in some cases slightly less powerful, if it fails try |
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
hoelzl
parents:
58775
diff
changeset
|
171 |
to add algebra_simps, or use divide_simps. |
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
hoelzl
parents:
58775
diff
changeset
|
172 |
Minor INCOMPATIBILITY. |
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
hoelzl
parents:
58775
diff
changeset
|
173 |
|
58321 | 174 |
* Bootstrap of listsum as special case of abstract product over lists. |
175 |
Fact rename: |
|
176 |
listsum_def ~> listsum.eq_foldr |
|
177 |
INCOMPATIBILITY. |
|
178 |
||
59569 | 179 |
* Command and antiquotation "value" provide different evaluation slots |
180 |
(again), where the previous strategy (nbe after ML) serves as default. |
|
58100
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
haftmann
parents:
58067
diff
changeset
|
181 |
Minor INCOMPATIBILITY. |
f54a8a4134d3
restored generic value slot, retaining default behaviour and separate approximate command
haftmann
parents:
58067
diff
changeset
|
182 |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
183 |
* New (co)datatype package: |
58373 | 184 |
- The 'datatype_new' command has been renamed 'datatype'. The old |
185 |
command of that name is now called 'old_datatype' and is provided |
|
186 |
by "~~/src/HOL/Library/Old_Datatype.thy". See |
|
187 |
'isabelle doc datatypes' for information on porting. |
|
188 |
INCOMPATIBILITY. |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
189 |
- Renamed theorems: |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
190 |
disc_corec ~> corec_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
191 |
disc_corec_iff ~> corec_disc_iff |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
192 |
disc_exclude ~> distinct_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
193 |
disc_exhaust ~> exhaust_disc |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
194 |
disc_map_iff ~> map_disc_iff |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
195 |
sel_corec ~> corec_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
196 |
sel_exhaust ~> exhaust_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
197 |
sel_map ~> map_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
198 |
sel_set ~> set_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
199 |
sel_split ~> split_sel |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
200 |
sel_split_asm ~> split_sel_asm |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
201 |
strong_coinduct ~> coinduct_strong |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
202 |
weak_case_cong ~> case_cong_weak |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
203 |
INCOMPATIBILITY. |
58192 | 204 |
- The "no_code" option to "free_constructors", "datatype_new", and |
205 |
"codatatype" has been renamed "plugins del: code". |
|
206 |
INCOMPATIBILITY. |
|
58044 | 207 |
- The rules "set_empty" have been removed. They are easy |
208 |
consequences of other set rules "by auto". |
|
209 |
INCOMPATIBILITY. |
|
210 |
- The rule "set_cases" is now registered with the "[cases set]" |
|
57990 | 211 |
attribute. This can influence the behavior of the "cases" proof |
212 |
method when more than one case rule is applicable (e.g., an |
|
213 |
assumption is of the form "w : set ws" and the method "cases w" |
|
214 |
is invoked). The solution is to specify the case rule explicitly |
|
215 |
(e.g. "cases w rule: widget.exhaust"). |
|
216 |
INCOMPATIBILITY. |
|
59675 | 217 |
- Renamed theories: |
218 |
BNF_Comp ~> BNF_Composition |
|
219 |
BNF_FP_Base ~> BNF_Fixpoint_Base |
|
220 |
BNF_GFP ~> BNF_Greatest_Fixpoint |
|
221 |
BNF_LFP ~> BNF_Least_Fixpoint |
|
222 |
BNF_Constructions_on_Wellorders ~> BNF_Wellorder_Constructions |
|
223 |
Cardinals/Constructions_on_Wellorders ~> Cardinals/Wellorder_Constructions |
|
224 |
INCOMPATIBILITY. |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
225 |
|
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
226 |
* Old datatype package: |
58310 | 227 |
- The old 'datatype' command has been renamed 'old_datatype', and |
58373 | 228 |
'rep_datatype' has been renamed 'old_rep_datatype'. They are |
229 |
provided by "~~/src/HOL/Library/Old_Datatype.thy". See |
|
58310 | 230 |
'isabelle doc datatypes' for information on porting. |
58373 | 231 |
INCOMPATIBILITY. |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
232 |
- Renamed theorems: |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
233 |
weak_case_cong ~> case_cong_weak |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
234 |
INCOMPATIBILITY. |
58373 | 235 |
- Renamed theory: |
236 |
~~/src/HOL/Datatype.thy ~> ~~/src/HOL/Library/Old_Datatype.thy |
|
237 |
INCOMPATIBILITY. |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57946
diff
changeset
|
238 |
|
58368 | 239 |
* Product over lists via constant "listprod". |
240 |
||
59039 | 241 |
* Nitpick: |
242 |
- Fixed soundness bug related to the strict and nonstrict subset |
|
243 |
operations. |
|
244 |
||
57737 | 245 |
* Sledgehammer: |
59511 | 246 |
- CVC4 is now included with Isabelle instead of CVC3 and run by |
247 |
default. |
|
57737 | 248 |
- Minimization is now always enabled by default. |
249 |
Removed subcommand: |
|
250 |
min |
|
59039 | 251 |
- The proof reconstruction, both one-liners and Isar, has been |
252 |
dramatically improved. |
|
253 |
- Improved support for CVC4 and veriT. |
|
57737 | 254 |
|
58062 | 255 |
* Old and new SMT modules: |
58067 | 256 |
- The old 'smt' method has been renamed 'old_smt' and moved to |
59569 | 257 |
'src/HOL/Library/Old_SMT.thy'. It is provided for compatibility, |
258 |
until applications have been ported to use the new 'smt' method. For |
|
259 |
the method to work, an older version of Z3 (e.g. Z3 3.2 or 4.0) must |
|
260 |
be installed, and the environment variable "OLD_Z3_SOLVER" must |
|
261 |
point to it. |
|
58062 | 262 |
INCOMPATIBILITY. |
58067 | 263 |
- The 'smt2' method has been renamed 'smt'. |
58060 | 264 |
INCOMPATIBILITY. |
59569 | 265 |
- New option 'smt_reconstruction_step_timeout' to limit the |
266 |
reconstruction time of Z3 proof steps in the new 'smt' method. |
|
59216 | 267 |
- New option 'smt_statistics' to display statistics of the new 'smt' |
268 |
method, especially runtime statistics of Z3 proof reconstruction. |
|
58060 | 269 |
|
58247
98d0f85d247f
enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents:
58202
diff
changeset
|
270 |
* List: renamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc |
98d0f85d247f
enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents:
58202
diff
changeset
|
271 |
|
58626 | 272 |
* New infrastructure for compiling, running, evaluating and testing |
59569 | 273 |
generated code in target languages in HOL/Library/Code_Test. See |
274 |
HOL/Codegenerator_Test/Code_Test* for examples. |
|
58008 | 275 |
|
58630 | 276 |
* Library/Sum_of_Squares: simplified and improved "sos" method. Always |
277 |
use local CSDP executable, which is much faster than the NEOS server. |
|
278 |
The "sos_cert" functionality is invoked as "sos" with additional |
|
279 |
argument. Minor INCOMPATIBILITY. |
|
280 |
||
59813 | 281 |
* Theory "Library/Multiset": |
282 |
- Introduced "replicate_mset" operation. |
|
283 |
- Introduced alternative characterizations of the multiset ordering in |
|
284 |
"Library/Multiset_Order". |
|
285 |
- Renamed |
|
286 |
in_multiset_of ~> in_multiset_in_set |
|
287 |
INCOMPATIBILITY. |
|
288 |
- Added attributes: |
|
289 |
image_mset.id [simp] |
|
290 |
image_mset_id [simp] |
|
291 |
elem_multiset_of_set [simp, intro] |
|
292 |
comp_fun_commute_plus_mset [simp] |
|
293 |
comp_fun_commute.fold_mset_insert [OF comp_fun_commute_plus_mset, simp] |
|
294 |
in_mset_fold_plus_iff [iff] |
|
295 |
set_of_Union_mset [simp] |
|
296 |
in_Union_mset_iff [iff] |
|
297 |
INCOMPATIBILITY. |
|
298 |
||
58990 | 299 |
* HOL-Decision_Procs: |
300 |
- New counterexample generator quickcheck[approximation] for |
|
301 |
inequalities of transcendental functions. |
|
302 |
Uses hardware floating point arithmetic to randomly discover |
|
303 |
potential counterexamples. Counterexamples are certified with the |
|
304 |
'approximation' method. |
|
305 |
See HOL/Decision_Procs/ex/Approximation_Quickcheck_Ex.thy for |
|
306 |
examples. |
|
307 |
||
59354 | 308 |
* HOL-Probability: Reworked measurability prover |
309 |
- applies destructor rules repeatetly |
|
310 |
- removed application splitting (replaced by destructor rule) |
|
59569 | 311 |
- added congruence rules to rewrite measure spaces under the sets |
312 |
projection |
|
313 |
||
58630 | 314 |
|
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
315 |
*** Document preparation *** |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
316 |
|
59446 | 317 |
* Discontinued obsolete option "document_graph": session_graph.pdf is |
59450 | 318 |
produced unconditionally for HTML browser_info and PDF-LaTeX document. |
59446 | 319 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
320 |
* Document markup commands 'chapter', 'section', 'subsection', |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
321 |
'subsubsection', 'text', 'txt', 'text_raw' work uniformly in any |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
322 |
context, even before the initial 'theory' command. Obsolete proof |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
323 |
commands 'sect', 'subsect', 'subsubsect', 'txt_raw' have been |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
324 |
discontinued, use 'section', 'subsection', 'subsubsection', 'text_raw' |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
325 |
instead. The old 'header' command is still retained for some time, but |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
326 |
should be replaced by 'chapter', 'section' etc. (using "isabelle |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
327 |
update_header"). Minor INCOMPATIBILITY. |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
328 |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
329 |
* Diagnostic commands and document markup commands within a proof do not |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
330 |
affect the command tag for output. Thus commands like 'thm' are subject |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
331 |
to proof document structure, and no longer "stick out" accidentally. |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
332 |
Commands 'text' and 'txt' merely differ in the LaTeX style, not their |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58990
diff
changeset
|
333 |
tags. Potential INCOMPATIBILITY in exotic situations. |
58868
c5e1cce7ace3
uniform heading commands work in any context, even in theory header;
wenzelm
parents:
58861
diff
changeset
|
334 |
|
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
335 |
* Official support for "tt" style variants, via \isatt{...} or |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
336 |
\begin{isabellett}...\end{isabellett}. The somewhat fragile \verb or |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
337 |
verbatim environment of LaTeX is no longer used. This allows @{ML} etc. |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
338 |
as argument to other macros (such as footnotes). |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
339 |
|
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
340 |
* Document antiquotation @{verbatim} prints ASCII text literally in "tt" |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
341 |
style. |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
342 |
|
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58708
diff
changeset
|
343 |
|
58066 | 344 |
*** ML *** |
345 |
||
59899 | 346 |
* Subtle change of name space policy: undeclared entries are now |
347 |
considered inaccessible, instead of accessible via the fully-qualified |
|
348 |
internal name. This mainly affects Name_Space.intern (and derivatives), |
|
349 |
which may produce an unexpected Long_Name.hidden prefix. Note that |
|
350 |
contempory applications use the strict Name_Space.check (and |
|
351 |
derivatives) instead, which is not affected by the change. Potential |
|
352 |
INCOMPATIBILITY in rare applications of Name_Space.intern. |
|
353 |
||
59621
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
354 |
* The main operations to certify logical entities are Thm.ctyp_of and |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
355 |
Thm.cterm_of with a local context; old-style global theory variants are |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
356 |
available as Thm.global_ctyp_of and Thm.global_cterm_of. |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
357 |
INCOMPATIBILITY. |
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59588
diff
changeset
|
358 |
|
59582 | 359 |
* Elementary operations in module Thm are no longer pervasive. |
360 |
INCOMPATIBILITY, need to use qualified Thm.prop_of, Thm.cterm_of, |
|
361 |
Thm.term_of etc. |
|
362 |
||
59180
c0fa3b3bdabd
discontinued central critical sections: NAMED_CRITICAL / CRITICAL;
wenzelm
parents:
59175
diff
changeset
|
363 |
* Former combinators NAMED_CRITICAL and CRITICAL for central critical |
c0fa3b3bdabd
discontinued central critical sections: NAMED_CRITICAL / CRITICAL;
wenzelm
parents:
59175
diff
changeset
|
364 |
sections have been discontinued, in favour of the more elementary |
c0fa3b3bdabd
discontinued central critical sections: NAMED_CRITICAL / CRITICAL;
wenzelm
parents:
59175
diff
changeset
|
365 |
Multithreading.synchronized and its high-level derivative |
c0fa3b3bdabd
discontinued central critical sections: NAMED_CRITICAL / CRITICAL;
wenzelm
parents:
59175
diff
changeset
|
366 |
Synchronized.var (which is usually sufficient in applications). Subtle |
c0fa3b3bdabd
discontinued central critical sections: NAMED_CRITICAL / CRITICAL;
wenzelm
parents:
59175
diff
changeset
|
367 |
INCOMPATIBILITY: synchronized access needs to be atomic and cannot be |
c0fa3b3bdabd
discontinued central critical sections: NAMED_CRITICAL / CRITICAL;
wenzelm
parents:
59175
diff
changeset
|
368 |
nested. |
c0fa3b3bdabd
discontinued central critical sections: NAMED_CRITICAL / CRITICAL;
wenzelm
parents:
59175
diff
changeset
|
369 |
|
59112 | 370 |
* Cartouches within ML sources are turned into values of type |
371 |
Input.source (with formal position information). |
|
372 |
||
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58957
diff
changeset
|
373 |
* Proper context for various elementary tactics: assume_tac, |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59480
diff
changeset
|
374 |
resolve_tac, eresolve_tac, dresolve_tac, forward_tac, match_tac, |
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59480
diff
changeset
|
375 |
compose_tac, Splitter.split_tac etc. INCOMPATIBILITY. |
58956
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
wenzelm
parents:
58928
diff
changeset
|
376 |
|
58066 | 377 |
* Tactical PARALLEL_ALLGOALS is the most common way to refer to |
378 |
PARALLEL_GOALS. |
|
379 |
||
59057
5b649fb2f2e1
added ML antiquotation @{apply n} or @{apply n(k)};
wenzelm
parents:
59039
diff
changeset
|
380 |
* Basic combinators map, fold, fold_map, split_list, apply are |
5b649fb2f2e1
added ML antiquotation @{apply n} or @{apply n(k)};
wenzelm
parents:
59039
diff
changeset
|
381 |
available as parameterized antiquotations, e.g. @{map 4} for lists of |
5b649fb2f2e1
added ML antiquotation @{apply n} or @{apply n(k)};
wenzelm
parents:
59039
diff
changeset
|
382 |
quadruples. |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58630
diff
changeset
|
383 |
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59057
diff
changeset
|
384 |
* Renamed "pairself" to "apply2", in accordance to @{apply 2}. |
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59057
diff
changeset
|
385 |
INCOMPATIBILITY. |
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59057
diff
changeset
|
386 |
|
59139
e557a9ddee5f
Synchronized.value is actually synchronized (NB: underlying Unsynchronized.ref is not necessarily volatile);
wenzelm
parents:
59112
diff
changeset
|
387 |
* Synchronized.value (ML) is actually synchronized (as in Scala): |
e557a9ddee5f
Synchronized.value is actually synchronized (NB: underlying Unsynchronized.ref is not necessarily volatile);
wenzelm
parents:
59112
diff
changeset
|
388 |
subtle change of semantics with minimal potential for INCOMPATIBILITY. |
e557a9ddee5f
Synchronized.value is actually synchronized (NB: underlying Unsynchronized.ref is not necessarily volatile);
wenzelm
parents:
59112
diff
changeset
|
389 |
|
59564
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents:
59557
diff
changeset
|
390 |
* Goal.prove_multi is superseded by the fully general Goal.prove_common, |
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents:
59557
diff
changeset
|
391 |
which also allows to specify a fork priority. |
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents:
59557
diff
changeset
|
392 |
|
58066 | 393 |
|
58610 | 394 |
*** System *** |
395 |
||
58846 | 396 |
* Support for Proof General and Isar TTY loop has been discontinued. |
397 |
Minor INCOMPATIBILITY. |
|
58842 | 398 |
|
59200 | 399 |
* JVM system property "isabelle.threads" determines size of Scala thread |
400 |
pool, like Isabelle system option "threads" for ML. |
|
401 |
||
59201
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
402 |
* JVM system property "isabelle.laf" determines the default Swing |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
403 |
look-and-feel, via internal class name or symbolic name as in the jEdit |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
404 |
menu Global Options / Appearance. |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59200
diff
changeset
|
405 |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
406 |
* System option "pretty_margin" is superseded by "thy_output_margin", |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
407 |
which is also accessible via document antiquotation option "margin". |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
408 |
Only the margin for document output may be changed, but not the global |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
409 |
pretty printing: that is 76 for plain console output, and adapted |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
410 |
dynamically in GUI front-ends. Implementations of document |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
411 |
antiquotations need to observe the margin explicitly according to |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
412 |
Thy_Output.string_of_margin. Minor INCOMPATIBILITY. |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59139
diff
changeset
|
413 |
|
58861
5ff61774df11
command-line terminator ";" is no longer accepted;
wenzelm
parents:
58846
diff
changeset
|
414 |
* Historical command-line terminator ";" is no longer accepted. Minor |
5ff61774df11
command-line terminator ";" is no longer accepted;
wenzelm
parents:
58846
diff
changeset
|
415 |
INCOMPATIBILITY, use "isabelle update_semicolons" to remove obsolete |
5ff61774df11
command-line terminator ";" is no longer accepted;
wenzelm
parents:
58846
diff
changeset
|
416 |
semicolons from theory sources. |
5ff61774df11
command-line terminator ";" is no longer accepted;
wenzelm
parents:
58846
diff
changeset
|
417 |
|
58610 | 418 |
* The Isabelle tool "update_cartouches" changes theory files to use |
419 |
cartouches instead of old-style {* verbatim *} or `alt_string` tokens. |
|
420 |
||
59892
2a616319c171
added isabelle build option -x, to exclude sessions;
wenzelm
parents:
59891
diff
changeset
|
421 |
* The Isabelle tool "build" provides new options -k and -x. |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59849
diff
changeset
|
422 |
|
58610 | 423 |
|
57695 | 424 |
|
57452 | 425 |
New in Isabelle2014 (August 2014) |
426 |
--------------------------------- |
|
54055 | 427 |
|
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
54688
diff
changeset
|
428 |
*** General *** |
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
54688
diff
changeset
|
429 |
|
57452 | 430 |
* Support for official Standard ML within the Isabelle context. |
431 |
Command 'SML_file' reads and evaluates the given Standard ML file. |
|
432 |
Toplevel bindings are stored within the theory context; the initial |
|
433 |
environment is restricted to the Standard ML implementation of |
|
434 |
Poly/ML, without the add-ons of Isabelle/ML. Commands 'SML_import' |
|
435 |
and 'SML_export' allow to exchange toplevel bindings between the two |
|
436 |
separate environments. See also ~~/src/Tools/SML/Examples.thy for |
|
437 |
some examples. |
|
56499
7e0178c84994
allow text cartouches in regular outer syntax categories "text" and "altstring";
wenzelm
parents:
56450
diff
changeset
|
438 |
|
57504 | 439 |
* Standard tactics and proof methods such as "clarsimp", "auto" and |
440 |
"safe" now preserve equality hypotheses "x = expr" where x is a free |
|
441 |
variable. Locale assumptions and chained facts containing "x" |
|
442 |
continue to be useful. The new method "hypsubst_thin" and the |
|
443 |
configuration option "hypsubst_thin" (within the attribute name space) |
|
444 |
restore the previous behavior. INCOMPATIBILITY, especially where |
|
445 |
induction is done after these methods or when the names of free and |
|
446 |
bound variables clash. As first approximation, old proofs may be |
|
447 |
repaired by "using [[hypsubst_thin = true]]" in the critical spot. |
|
448 |
||
56232 | 449 |
* More static checking of proof methods, which allows the system to |
450 |
form a closure over the concrete syntax. Method arguments should be |
|
451 |
processed in the original proof context as far as possible, before |
|
452 |
operating on the goal state. In any case, the standard discipline for |
|
453 |
subgoal-addressing needs to be observed: no subgoals or a subgoal |
|
454 |
number that is out of range produces an empty result sequence, not an |
|
455 |
exception. Potential INCOMPATIBILITY for non-conformant tactical |
|
456 |
proof tools. |
|
457 |
||
57452 | 458 |
* Lexical syntax (inner and outer) supports text cartouches with |
459 |
arbitrary nesting, and without escapes of quotes etc. The Prover IDE |
|
460 |
supports input via ` (backquote). |
|
461 |
||
462 |
* The outer syntax categories "text" (for formal comments and document |
|
463 |
markup commands) and "altstring" (for literal fact references) allow |
|
464 |
cartouches as well, in addition to the traditional mix of quotations. |
|
465 |
||
466 |
* Syntax of document antiquotation @{rail} now uses \<newline> instead |
|
467 |
of "\\", to avoid the optical illusion of escaped backslash within |
|
57491 | 468 |
string token. General renovation of its syntax using text cartouches. |
57452 | 469 |
Minor INCOMPATIBILITY. |
470 |
||
471 |
* Discontinued legacy_isub_isup, which was a temporary workaround for |
|
472 |
Isabelle/ML in Isabelle2013-1. The prover process no longer accepts |
|
473 |
old identifier syntax with \<^isub> or \<^isup>. Potential |
|
474 |
INCOMPATIBILITY. |
|
475 |
||
476 |
* Document antiquotation @{url} produces markup for the given URL, |
|
477 |
which results in an active hyperlink within the text. |
|
478 |
||
479 |
* Document antiquotation @{file_unchecked} is like @{file}, but does |
|
480 |
not check existence within the file-system. |
|
481 |
||
482 |
* Updated and extended manuals: codegen, datatypes, implementation, |
|
483 |
isar-ref, jedit, system. |
|
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
484 |
|
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
54688
diff
changeset
|
485 |
|
54533 | 486 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
487 |
||
57650 | 488 |
* Improved Document panel: simplified interaction where every single |
57452 | 489 |
mouse click (re)opens document via desktop environment or as jEdit |
490 |
buffer. |
|
491 |
||
492 |
* Support for Navigator plugin (with toolbar buttons), with connection |
|
493 |
to PIDE hyperlinks. |
|
494 |
||
495 |
* Auxiliary files ('ML_file' etc.) are managed by the Prover IDE. |
|
496 |
Open text buffers take precedence over copies within the file-system. |
|
497 |
||
498 |
* Improved support for Isabelle/ML, with jEdit mode "isabelle-ml" for |
|
499 |
auxiliary ML files. |
|
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
500 |
|
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
501 |
* Improved syntactic and semantic completion mechanism, with simple |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
502 |
templates, completion language context, name-space completion, |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
503 |
file-name completion, spell-checker completion. |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
504 |
|
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
505 |
* Refined GUI popup for completion: more robust key/mouse event |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
506 |
handling and propagation to enclosing text area -- avoid loosing |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
507 |
keystrokes with slow / remote graphics displays. |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
508 |
|
57833
2c2bae3da1c2
completion popup supports both ENTER and TAB (default);
wenzelm
parents:
57826
diff
changeset
|
509 |
* Completion popup supports both ENTER and TAB (default) to select an |
2c2bae3da1c2
completion popup supports both ENTER and TAB (default);
wenzelm
parents:
57826
diff
changeset
|
510 |
item, depending on Isabelle options. |
2c2bae3da1c2
completion popup supports both ENTER and TAB (default);
wenzelm
parents:
57826
diff
changeset
|
511 |
|
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
512 |
* Refined insertion of completion items wrt. jEdit text: multiple |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
513 |
selections, rectangular selections, rectangular selection as "tall |
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
514 |
caret". |
56342 | 515 |
|
56580 | 516 |
* Integrated spell-checker for document text, comments etc. with |
57423
96f970d1522b
updated NEWS -- removed material that is already in the manual;
wenzelm
parents:
57418
diff
changeset
|
517 |
completion popup and context-menu. |
56554 | 518 |
|
56879
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
519 |
* More general "Query" panel supersedes "Find" panel, with GUI access |
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
520 |
to commands 'find_theorems' and 'find_consts', as well as print |
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
521 |
operations for the context. Minor incompatibility in keyboard |
ee2b61f37ad9
renamed "Find" to "Query", with more general operations;
wenzelm
parents:
56851
diff
changeset
|
522 |
shortcuts etc.: replace action isabelle-find by isabelle-query. |
56761 | 523 |
|
56901 | 524 |
* Search field for all output panels ("Output", "Query", "Info" etc.) |
525 |
to highlight text via regular expression. |
|
526 |
||
54881 | 527 |
* Option "jedit_print_mode" (see also "Plugin Options / Isabelle / |
528 |
General") allows to specify additional print modes for the prover |
|
529 |
process, without requiring old-fashioned command-line invocation of |
|
530 |
"isabelle jedit -m MODE". |
|
531 |
||
56505 | 532 |
* More support for remote files (e.g. http) using standard Java |
533 |
networking operations instead of jEdit virtual file-systems. |
|
534 |
||
57822 | 535 |
* Empty editors buffers that are no longer required (e.g.\ via theory |
536 |
imports) are automatically removed from the document model. |
|
537 |
||
57869 | 538 |
* Improved monitor panel. |
539 |
||
56838 | 540 |
* Improved Console/Scala plugin: more uniform scala.Console output, |
541 |
more robust treatment of threads and interrupts. |
|
542 |
||
56939 | 543 |
* Improved management of dockable windows: clarified keyboard focus |
544 |
and window placement wrt. main editor view; optional menu item to |
|
545 |
"Detach" a copy where this makes sense. |
|
546 |
||
57452 | 547 |
* New Simplifier Trace panel provides an interactive view of the |
57591
8c095aef6769
clarified "simp_trace_new" and corresponding isar-ref section;
wenzelm
parents:
57532
diff
changeset
|
548 |
simplification process, enabled by the "simp_trace_new" attribute |
57452 | 549 |
within the context. |
550 |
||
551 |
||
55001 | 552 |
*** Pure *** |
553 |
||
57504 | 554 |
* Low-level type-class commands 'classes', 'classrel', 'arities' have |
555 |
been discontinued to avoid the danger of non-trivial axiomatization |
|
556 |
that is not immediately visible. INCOMPATIBILITY, use regular |
|
557 |
'instance' command with proof. The required OFCLASS(...) theorem |
|
558 |
might be postulated via 'axiomatization' beforehand, or the proof |
|
559 |
finished trivially if the underlying class definition is made vacuous |
|
560 |
(without any assumptions). See also Isabelle/ML operations |
|
561 |
Axclass.class_axiomatization, Axclass.classrel_axiomatization, |
|
562 |
Axclass.arity_axiomatization. |
|
563 |
||
56245 | 564 |
* Basic constants of Pure use more conventional names and are always |
565 |
qualified. Rare INCOMPATIBILITY, but with potentially serious |
|
566 |
consequences, notably for tools in Isabelle/ML. The following |
|
567 |
renaming needs to be applied: |
|
568 |
||
569 |
== ~> Pure.eq |
|
570 |
==> ~> Pure.imp |
|
571 |
all ~> Pure.all |
|
572 |
TYPE ~> Pure.type |
|
573 |
dummy_pattern ~> Pure.dummy_pattern |
|
574 |
||
575 |
Systematic porting works by using the following theory setup on a |
|
576 |
*previous* Isabelle version to introduce the new name accesses for the |
|
577 |
old constants: |
|
578 |
||
579 |
setup {* |
|
580 |
fn thy => thy |
|
581 |
|> Sign.root_path |
|
582 |
|> Sign.const_alias (Binding.qualify true "Pure" @{binding eq}) "==" |
|
583 |
|> Sign.const_alias (Binding.qualify true "Pure" @{binding imp}) "==>" |
|
584 |
|> Sign.const_alias (Binding.qualify true "Pure" @{binding all}) "all" |
|
585 |
|> Sign.restore_naming thy |
|
586 |
*} |
|
587 |
||
588 |
Thus ML antiquotations like @{const_name Pure.eq} may be used already. |
|
589 |
Later the application is moved to the current Isabelle version, and |
|
590 |
the auxiliary aliases are deleted. |
|
591 |
||
55143
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
592 |
* Attributes "where" and "of" allow an optional context of local |
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
593 |
variables ('for' declaration): these variables become schematic in the |
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
594 |
instantiated theorem. |
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
55139
diff
changeset
|
595 |
|
55152 | 596 |
* Obsolete attribute "standard" has been discontinued (legacy since |
597 |
Isabelle2012). Potential INCOMPATIBILITY, use explicit 'for' context |
|
598 |
where instantiations with schematic variables are intended (for |
|
599 |
declaration commands like 'lemmas' or attributes like "of"). The |
|
600 |
following temporary definition may help to port old applications: |
|
601 |
||
602 |
attribute_setup standard = |
|
603 |
"Scan.succeed (Thm.rule_attribute (K Drule.export_without_context))" |
|
604 |
||
55001 | 605 |
* More thorough check of proof context for goal statements and |
55006 | 606 |
attributed fact expressions (concerning background theory, declared |
607 |
hyps). Potential INCOMPATIBILITY, tools need to observe standard |
|
608 |
context discipline. See also Assumption.add_assumes and the more |
|
609 |
primitive Thm.assume_hyps. |
|
55001 | 610 |
|
55108
0b7a0c1fdf7e
inner syntax token language allows regular quoted strings;
wenzelm
parents:
55049
diff
changeset
|
611 |
* Inner syntax token language allows regular quoted strings "..." |
0b7a0c1fdf7e
inner syntax token language allows regular quoted strings;
wenzelm
parents:
55049
diff
changeset
|
612 |
(only makes sense in practice, if outer syntax is delimited |
57452 | 613 |
differently, e.g. via cartouches). |
614 |
||
57504 | 615 |
* Command 'print_term_bindings' supersedes 'print_binds' for clarity, |
616 |
but the latter is retained some time as Proof General legacy. |
|
617 |
||
57452 | 618 |
* Code generator preprocessor: explicit control of simp tracing on a |
619 |
per-constant basis. See attribute "code_preproc". |
|
57430
020cea57eaa4
tracing facilities for the code generator preprocessor
haftmann
parents:
57423
diff
changeset
|
620 |
|
55001 | 621 |
|
54227
63b441f49645
moving generic lemmas out of theory parity, disregarding some unused auxiliary lemmas;
haftmann
parents:
54055
diff
changeset
|
622 |
*** HOL *** |
63b441f49645
moving generic lemmas out of theory parity, disregarding some unused auxiliary lemmas;
haftmann
parents:
54055
diff
changeset
|
623 |
|
57504 | 624 |
* Code generator: enforce case of identifiers only for strict target |
625 |
language requirements. INCOMPATIBILITY. |
|
626 |
||
627 |
* Code generator: explicit proof contexts in many ML interfaces. |
|
628 |
INCOMPATIBILITY. |
|
629 |
||
630 |
* Code generator: minimize exported identifiers by default. Minor |
|
631 |
INCOMPATIBILITY. |
|
632 |
||
633 |
* Code generation for SML and OCaml: dropped arcane "no_signatures" |
|
634 |
option. Minor INCOMPATIBILITY. |
|
635 |
||
636 |
* "declare [[code abort: ...]]" replaces "code_abort ...". |
|
637 |
INCOMPATIBILITY. |
|
638 |
||
639 |
* "declare [[code drop: ...]]" drops all code equations associated |
|
640 |
with the given constants. |
|
641 |
||
642 |
* Code generations are provided for make, fields, extend and truncate |
|
643 |
operations on records. |
|
57437 | 644 |
|
57452 | 645 |
* Command and antiquotation "value" are now hardcoded against nbe and |
646 |
ML. Minor INCOMPATIBILITY. |
|
647 |
||
57504 | 648 |
* Renamed command 'enriched_type' to 'functor'. INCOMPATIBILITY. |
649 |
||
650 |
* The symbol "\<newline>" may be used within char or string literals |
|
651 |
to represent (Char Nibble0 NibbleA), i.e. ASCII newline. |
|
652 |
||
653 |
* Qualified String.implode and String.explode. INCOMPATIBILITY. |
|
56923 | 654 |
|
57452 | 655 |
* Simplifier: Enhanced solver of preconditions of rewrite rules can |
656 |
now deal with conjunctions. For help with converting proofs, the old |
|
657 |
behaviour of the simplifier can be restored like this: declare/using |
|
658 |
[[simp_legacy_precond]]. This configuration option will disappear |
|
659 |
again in the future. INCOMPATIBILITY. |
|
56073
29e308b56d23
enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents:
56072
diff
changeset
|
660 |
|
55139 | 661 |
* Simproc "finite_Collect" is no longer enabled by default, due to |
662 |
spurious crashes and other surprises. Potential INCOMPATIBILITY. |
|
663 |
||
57452 | 664 |
* Moved new (co)datatype package and its dependencies from session |
665 |
"HOL-BNF" to "HOL". The commands 'bnf', 'wrap_free_constructors', |
|
666 |
'datatype_new', 'codatatype', 'primcorec', 'primcorecursive' are now |
|
667 |
part of theory "Main". |
|
668 |
||
55098 | 669 |
Theory renamings: |
670 |
FunDef.thy ~> Fun_Def.thy (and Fun_Def_Base.thy) |
|
671 |
Library/Wfrec.thy ~> Wfrec.thy |
|
672 |
Library/Zorn.thy ~> Zorn.thy |
|
673 |
Cardinals/Order_Relation.thy ~> Order_Relation.thy |
|
674 |
Library/Order_Union.thy ~> Cardinals/Order_Union.thy |
|
675 |
Cardinals/Cardinal_Arithmetic_Base.thy ~> BNF_Cardinal_Arithmetic.thy |
|
676 |
Cardinals/Cardinal_Order_Relation_Base.thy ~> BNF_Cardinal_Order_Relation.thy |
|
677 |
Cardinals/Constructions_on_Wellorders_Base.thy ~> BNF_Constructions_on_Wellorders.thy |
|
678 |
Cardinals/Wellorder_Embedding_Base.thy ~> BNF_Wellorder_Embedding.thy |
|
679 |
Cardinals/Wellorder_Relation_Base.thy ~> BNF_Wellorder_Relation.thy |
|
680 |
BNF/Ctr_Sugar.thy ~> Ctr_Sugar.thy |
|
681 |
BNF/Basic_BNFs.thy ~> Basic_BNFs.thy |
|
682 |
BNF/BNF_Comp.thy ~> BNF_Comp.thy |
|
683 |
BNF/BNF_Def.thy ~> BNF_Def.thy |
|
684 |
BNF/BNF_FP_Base.thy ~> BNF_FP_Base.thy |
|
685 |
BNF/BNF_GFP.thy ~> BNF_GFP.thy |
|
686 |
BNF/BNF_LFP.thy ~> BNF_LFP.thy |
|
687 |
BNF/BNF_Util.thy ~> BNF_Util.thy |
|
688 |
BNF/Coinduction.thy ~> Coinduction.thy |
|
689 |
BNF/More_BNFs.thy ~> Library/More_BNFs.thy |
|
690 |
BNF/Countable_Type.thy ~> Library/Countable_Set_Type.thy |
|
691 |
BNF/Examples/* ~> BNF_Examples/* |
|
57452 | 692 |
|
55098 | 693 |
New theories: |
694 |
Wellorder_Extension.thy (split from Zorn.thy) |
|
695 |
Library/Cardinal_Notations.thy |
|
56942 | 696 |
Library/BNF_Axomatization.thy |
55098 | 697 |
BNF_Examples/Misc_Primcorec.thy |
698 |
BNF_Examples/Stream_Processor.thy |
|
57452 | 699 |
|
55519 | 700 |
Discontinued theories: |
55098 | 701 |
BNF/BNF.thy |
702 |
BNF/Equiv_Relations_More.thy |
|
57452 | 703 |
|
704 |
INCOMPATIBILITY. |
|
55098 | 705 |
|
56118
d3967fdc800a
updated NEWS and CONTRIBUTORS (BNF, SMT2, Sledgehammer)
blanchet
parents:
56076
diff
changeset
|
706 |
* New (co)datatype package: |
57452 | 707 |
- Command 'primcorec' is fully implemented. |
708 |
- Command 'datatype_new' generates size functions ("size_xxx" and |
|
709 |
"size") as required by 'fun'. |
|
710 |
- BNFs are integrated with the Lifting tool and new-style |
|
711 |
(co)datatypes with Transfer. |
|
712 |
- Renamed commands: |
|
55875 | 713 |
datatype_new_compat ~> datatype_compat |
714 |
primrec_new ~> primrec |
|
715 |
wrap_free_constructors ~> free_constructors |
|
716 |
INCOMPATIBILITY. |
|
57452 | 717 |
- The generated constants "xxx_case" and "xxx_rec" have been renamed |
55875 | 718 |
"case_xxx" and "rec_xxx" (e.g., "prod_case" ~> "case_prod"). |
719 |
INCOMPATIBILITY. |
|
57452 | 720 |
- The constant "xxx_(un)fold" and related theorems are no longer |
721 |
generated. Use "xxx_(co)rec" or define "xxx_(un)fold" manually |
|
722 |
using "prim(co)rec". |
|
55875 | 723 |
INCOMPATIBILITY. |
57452 | 724 |
- No discriminators are generated for nullary constructors by |
725 |
default, eliminating the need for the odd "=:" syntax. |
|
57091 | 726 |
INCOMPATIBILITY. |
57452 | 727 |
- No discriminators or selectors are generated by default by |
57094
589ec121ce1a
don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents:
57091
diff
changeset
|
728 |
"datatype_new", unless custom names are specified or the new |
589ec121ce1a
don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents:
57091
diff
changeset
|
729 |
"discs_sels" option is passed. |
589ec121ce1a
don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents:
57091
diff
changeset
|
730 |
INCOMPATIBILITY. |
55875 | 731 |
|
55643 | 732 |
* Old datatype package: |
57452 | 733 |
- The generated theorems "xxx.cases" and "xxx.recs" have been |
734 |
renamed "xxx.case" and "xxx.rec" (e.g., "sum.cases" -> |
|
735 |
"sum.case"). INCOMPATIBILITY. |
|
736 |
- The generated constants "xxx_case", "xxx_rec", and "xxx_size" have |
|
737 |
been renamed "case_xxx", "rec_xxx", and "size_xxx" (e.g., |
|
738 |
"prod_case" ~> "case_prod"). INCOMPATIBILITY. |
|
739 |
||
740 |
* The types "'a list" and "'a option", their set and map functions, |
|
741 |
their relators, and their selectors are now produced using the new |
|
742 |
BNF-based datatype package. |
|
743 |
||
55519 | 744 |
Renamed constants: |
745 |
Option.set ~> set_option |
|
746 |
Option.map ~> map_option |
|
55525 | 747 |
option_rel ~> rel_option |
57452 | 748 |
|
55519 | 749 |
Renamed theorems: |
55585 | 750 |
set_def ~> set_rec[abs_def] |
55519 | 751 |
map_def ~> map_rec[abs_def] |
752 |
Option.map_def ~> map_option_case[abs_def] (with "case_option" instead of "rec_option") |
|
56652 | 753 |
option.recs ~> option.rec |
55524
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents:
55519
diff
changeset
|
754 |
list_all2_def ~> list_all2_iff |
55585 | 755 |
set.simps ~> set_simps (or the slightly different "list.set") |
55519 | 756 |
map.simps ~> list.map |
757 |
hd.simps ~> list.sel(1) |
|
758 |
tl.simps ~> list.sel(2-3) |
|
759 |
the.simps ~> option.sel |
|
57452 | 760 |
|
761 |
INCOMPATIBILITY. |
|
55519 | 762 |
|
55933 | 763 |
* The following map functions and relators have been renamed: |
55939 | 764 |
sum_map ~> map_sum |
765 |
map_pair ~> map_prod |
|
55944 | 766 |
prod_rel ~> rel_prod |
55943 | 767 |
sum_rel ~> rel_sum |
55945 | 768 |
fun_rel ~> rel_fun |
55942 | 769 |
set_rel ~> rel_set |
770 |
filter_rel ~> rel_filter |
|
57452 | 771 |
fset_rel ~> rel_fset (in "src/HOL/Library/FSet.thy") |
772 |
cset_rel ~> rel_cset (in "src/HOL/Library/Countable_Set_Type.thy") |
|
773 |
vset ~> rel_vset (in "src/HOL/Library/Quotient_Set.thy") |
|
774 |
||
775 |
INCOMPATIBILITY. |
|
776 |
||
57826 | 777 |
* Lifting and Transfer: |
778 |
- a type variable as a raw type is supported |
|
779 |
- stronger reflexivity prover |
|
780 |
- rep_eq is always generated by lift_definition |
|
57856 | 781 |
- setup for Lifting/Transfer is now automated for BNFs |
57826 | 782 |
+ holds for BNFs that do not contain a dead variable |
57856 | 783 |
+ relator_eq, relator_mono, relator_distr, relator_domain, |
57826 | 784 |
relator_eq_onp, quot_map, transfer rules for bi_unique, bi_total, |
785 |
right_unique, right_total, left_unique, left_total are proved |
|
786 |
automatically |
|
787 |
+ definition of a predicator is generated automatically |
|
788 |
+ simplification rules for a predicator definition are proved |
|
789 |
automatically for datatypes |
|
790 |
- consolidation of the setup of Lifting/Transfer |
|
57856 | 791 |
+ property that a relator preservers reflexivity is not needed any |
57826 | 792 |
more |
793 |
Minor INCOMPATIBILITY. |
|
57856 | 794 |
+ left_total and left_unique rules are now transfer rules |
57826 | 795 |
(reflexivity_rule attribute not needed anymore) |
796 |
INCOMPATIBILITY. |
|
57856 | 797 |
+ Domainp does not have to be a separate assumption in |
57826 | 798 |
relator_domain theorems (=> more natural statement) |
799 |
INCOMPATIBILITY. |
|
800 |
- registration of code equations is more robust |
|
801 |
Potential INCOMPATIBILITY. |
|
802 |
- respectfulness proof obligation is preprocessed to a more readable |
|
803 |
form |
|
804 |
Potential INCOMPATIBILITY. |
|
805 |
- eq_onp is always unfolded in respectfulness proof obligation |
|
806 |
Potential INCOMPATIBILITY. |
|
57856 | 807 |
- unregister lifting setup for Code_Numeral.integer and |
57826 | 808 |
Code_Numeral.natural |
809 |
Potential INCOMPATIBILITY. |
|
810 |
- Lifting.invariant -> eq_onp |
|
811 |
INCOMPATIBILITY. |
|
57856 | 812 |
|
57508 | 813 |
* New internal SAT solver "cdclite" that produces models and proof |
814 |
traces. This solver replaces the internal SAT solvers "enumerate" and |
|
815 |
"dpll". Applications that explicitly used one of these two SAT |
|
816 |
solvers should use "cdclite" instead. In addition, "cdclite" is now |
|
817 |
the default SAT solver for the "sat" and "satx" proof methods and |
|
818 |
corresponding tactics; the old default can be restored using "declare |
|
819 |
[[sat_solver = zchaff_with_proofs]]". Minor INCOMPATIBILITY. |
|
820 |
||
821 |
* SMT module: A new version of the SMT module, temporarily called |
|
822 |
"SMT2", uses SMT-LIB 2 and supports recent versions of Z3 (e.g., |
|
823 |
4.3). The new proof method is called "smt2". CVC3 and CVC4 are also |
|
824 |
supported as oracles. Yices is no longer supported, because no version |
|
825 |
of the solver can handle both SMT-LIB 2 and quantifiers. |
|
826 |
||
827 |
* Activation of Z3 now works via "z3_non_commercial" system option |
|
828 |
(without requiring restart), instead of former settings variable |
|
829 |
"Z3_NON_COMMERCIAL". The option can be edited in Isabelle/jEdit menu |
|
830 |
Plugin Options / Isabelle / General. |
|
831 |
||
832 |
* Sledgehammer: |
|
833 |
- Z3 can now produce Isar proofs. |
|
834 |
- MaSh overhaul: |
|
57532 | 835 |
. New SML-based learning algorithms eliminate the dependency on |
57508 | 836 |
Python and increase performance and reliability. |
837 |
. MaSh and MeSh are now used by default together with the |
|
838 |
traditional MePo (Meng-Paulson) relevance filter. To disable |
|
839 |
MaSh, set the "MaSh" system option in Isabelle/jEdit Plugin |
|
840 |
Options / Isabelle / General to "none". |
|
841 |
- New option: |
|
842 |
smt_proofs |
|
843 |
- Renamed options: |
|
844 |
isar_compress ~> compress |
|
845 |
isar_try0 ~> try0 |
|
846 |
||
847 |
INCOMPATIBILITY. |
|
848 |
||
849 |
* Removed solvers remote_cvc3 and remote_z3. Use cvc3 and z3 instead. |
|
850 |
||
851 |
* Nitpick: |
|
852 |
- Fixed soundness bug whereby mutually recursive datatypes could |
|
853 |
take infinite values. |
|
854 |
- Fixed soundness bug with low-level number functions such as |
|
855 |
"Abs_Integ" and "Rep_Integ". |
|
856 |
- Removed "std" option. |
|
857 |
- Renamed "show_datatypes" to "show_types" and "hide_datatypes" to |
|
858 |
"hide_types". |
|
859 |
||
860 |
* Metis: Removed legacy proof method 'metisFT'. Use 'metis |
|
861 |
(full_types)' instead. INCOMPATIBILITY. |
|
862 |
||
863 |
* Try0: Added 'algebra' and 'meson' to the set of proof methods. |
|
864 |
||
865 |
* Adjustion of INF and SUP operations: |
|
866 |
- Elongated constants INFI and SUPR to INFIMUM and SUPREMUM. |
|
867 |
- Consolidated theorem names containing INFI and SUPR: have INF and |
|
868 |
SUP instead uniformly. |
|
869 |
- More aggressive normalization of expressions involving INF and Inf |
|
870 |
or SUP and Sup. |
|
871 |
- INF_image and SUP_image do not unfold composition. |
|
872 |
- Dropped facts INF_comp, SUP_comp. |
|
873 |
- Default congruence rules strong_INF_cong and strong_SUP_cong, with |
|
874 |
simplifier implication in premises. Generalize and replace former |
|
875 |
INT_cong, SUP_cong |
|
876 |
||
877 |
INCOMPATIBILITY. |
|
878 |
||
879 |
* SUP and INF generalized to conditionally_complete_lattice. |
|
880 |
||
881 |
* Swapped orientation of facts image_comp and vimage_comp: |
|
882 |
||
883 |
image_compose ~> image_comp [symmetric] |
|
884 |
image_comp ~> image_comp [symmetric] |
|
885 |
vimage_compose ~> vimage_comp [symmetric] |
|
886 |
vimage_comp ~> vimage_comp [symmetric] |
|
887 |
||
888 |
INCOMPATIBILITY. |
|
889 |
||
57504 | 890 |
* Theory reorganization: split of Big_Operators.thy into |
891 |
Groups_Big.thy and Lattices_Big.thy. |
|
55098 | 892 |
|
57418 | 893 |
* Consolidated some facts about big group operators: |
894 |
||
895 |
setsum_0' ~> setsum.neutral |
|
896 |
setsum_0 ~> setsum.neutral_const |
|
897 |
setsum_addf ~> setsum.distrib |
|
898 |
setsum_cartesian_product ~> setsum.cartesian_product |
|
899 |
setsum_cases ~> setsum.If_cases |
|
900 |
setsum_commute ~> setsum.commute |
|
901 |
setsum_cong ~> setsum.cong |
|
902 |
setsum_delta ~> setsum.delta |
|
903 |
setsum_delta' ~> setsum.delta' |
|
904 |
setsum_diff1' ~> setsum.remove |
|
905 |
setsum_empty ~> setsum.empty |
|
906 |
setsum_infinite ~> setsum.infinite |
|
907 |
setsum_insert ~> setsum.insert |
|
908 |
setsum_inter_restrict'' ~> setsum.inter_filter |
|
909 |
setsum_mono_zero_cong_left ~> setsum.mono_neutral_cong_left |
|
910 |
setsum_mono_zero_cong_right ~> setsum.mono_neutral_cong_right |
|
911 |
setsum_mono_zero_left ~> setsum.mono_neutral_left |
|
912 |
setsum_mono_zero_right ~> setsum.mono_neutral_right |
|
913 |
setsum_reindex ~> setsum.reindex |
|
914 |
setsum_reindex_cong ~> setsum.reindex_cong |
|
915 |
setsum_reindex_nonzero ~> setsum.reindex_nontrivial |
|
916 |
setsum_restrict_set ~> setsum.inter_restrict |
|
917 |
setsum_Plus ~> setsum.Plus |
|
918 |
setsum_setsum_restrict ~> setsum.commute_restrict |
|
919 |
setsum_Sigma ~> setsum.Sigma |
|
920 |
setsum_subset_diff ~> setsum.subset_diff |
|
921 |
setsum_Un_disjoint ~> setsum.union_disjoint |
|
922 |
setsum_UN_disjoint ~> setsum.UNION_disjoint |
|
923 |
setsum_Un_Int ~> setsum.union_inter |
|
924 |
setsum_Union_disjoint ~> setsum.Union_disjoint |
|
925 |
setsum_UNION_zero ~> setsum.Union_comp |
|
926 |
setsum_Un_zero ~> setsum.union_inter_neutral |
|
927 |
strong_setprod_cong ~> setprod.strong_cong |
|
928 |
strong_setsum_cong ~> setsum.strong_cong |
|
929 |
setprod_1' ~> setprod.neutral |
|
930 |
setprod_1 ~> setprod.neutral_const |
|
931 |
setprod_cartesian_product ~> setprod.cartesian_product |
|
932 |
setprod_cong ~> setprod.cong |
|
933 |
setprod_delta ~> setprod.delta |
|
934 |
setprod_delta' ~> setprod.delta' |
|
935 |
setprod_empty ~> setprod.empty |
|
936 |
setprod_infinite ~> setprod.infinite |
|
937 |
setprod_insert ~> setprod.insert |
|
938 |
setprod_mono_one_cong_left ~> setprod.mono_neutral_cong_left |
|
939 |
setprod_mono_one_cong_right ~> setprod.mono_neutral_cong_right |
|
940 |
setprod_mono_one_left ~> setprod.mono_neutral_left |
|
941 |
setprod_mono_one_right ~> setprod.mono_neutral_right |
|
942 |
setprod_reindex ~> setprod.reindex |
|
943 |
setprod_reindex_cong ~> setprod.reindex_cong |
|
944 |
setprod_reindex_nonzero ~> setprod.reindex_nontrivial |
|
945 |
setprod_Sigma ~> setprod.Sigma |
|
946 |
setprod_subset_diff ~> setprod.subset_diff |
|
947 |
setprod_timesf ~> setprod.distrib |
|
948 |
setprod_Un2 ~> setprod.union_diff2 |
|
949 |
setprod_Un_disjoint ~> setprod.union_disjoint |
|
950 |
setprod_UN_disjoint ~> setprod.UNION_disjoint |
|
951 |
setprod_Un_Int ~> setprod.union_inter |
|
952 |
setprod_Union_disjoint ~> setprod.Union_disjoint |
|
953 |
setprod_Un_one ~> setprod.union_inter_neutral |
|
954 |
||
955 |
Dropped setsum_cong2 (simple variant of setsum.cong). |
|
956 |
Dropped setsum_inter_restrict' (simple variant of setsum.inter_restrict) |
|
957 |
Dropped setsum_reindex_id, setprod_reindex_id |
|
958 |
(simple variants of setsum.reindex [symmetric], setprod.reindex [symmetric]). |
|
959 |
||
57452 | 960 |
INCOMPATIBILITY. |
961 |
||
54864
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
962 |
* Abolished slightly odd global lattice interpretation for min/max. |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
963 |
|
57452 | 964 |
Fact consolidations: |
54864
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
965 |
min_max.inf_assoc ~> min.assoc |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
966 |
min_max.inf_commute ~> min.commute |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
967 |
min_max.inf_left_commute ~> min.left_commute |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
968 |
min_max.inf_idem ~> min.idem |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
969 |
min_max.inf_left_idem ~> min.left_idem |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
970 |
min_max.inf_right_idem ~> min.right_idem |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
971 |
min_max.sup_assoc ~> max.assoc |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
972 |
min_max.sup_commute ~> max.commute |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
973 |
min_max.sup_left_commute ~> max.left_commute |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
974 |
min_max.sup_idem ~> max.idem |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
975 |
min_max.sup_left_idem ~> max.left_idem |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
976 |
min_max.sup_inf_distrib1 ~> max_min_distrib2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
977 |
min_max.sup_inf_distrib2 ~> max_min_distrib1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
978 |
min_max.inf_sup_distrib1 ~> min_max_distrib2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
979 |
min_max.inf_sup_distrib2 ~> min_max_distrib1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
980 |
min_max.distrib ~> min_max_distribs |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
981 |
min_max.inf_absorb1 ~> min.absorb1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
982 |
min_max.inf_absorb2 ~> min.absorb2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
983 |
min_max.sup_absorb1 ~> max.absorb1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
984 |
min_max.sup_absorb2 ~> max.absorb2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
985 |
min_max.le_iff_inf ~> min.absorb_iff1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
986 |
min_max.le_iff_sup ~> max.absorb_iff2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
987 |
min_max.inf_le1 ~> min.cobounded1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
988 |
min_max.inf_le2 ~> min.cobounded2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
989 |
le_maxI1, min_max.sup_ge1 ~> max.cobounded1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
990 |
le_maxI2, min_max.sup_ge2 ~> max.cobounded2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
991 |
min_max.le_infI1 ~> min.coboundedI1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
992 |
min_max.le_infI2 ~> min.coboundedI2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
993 |
min_max.le_supI1 ~> max.coboundedI1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
994 |
min_max.le_supI2 ~> max.coboundedI2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
995 |
min_max.less_infI1 ~> min.strict_coboundedI1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
996 |
min_max.less_infI2 ~> min.strict_coboundedI2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
997 |
min_max.less_supI1 ~> max.strict_coboundedI1 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
998 |
min_max.less_supI2 ~> max.strict_coboundedI2 |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
999 |
min_max.inf_mono ~> min.mono |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1000 |
min_max.sup_mono ~> max.mono |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1001 |
min_max.le_infI, min_max.inf_greatest ~> min.boundedI |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1002 |
min_max.le_supI, min_max.sup_least ~> max.boundedI |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1003 |
min_max.le_inf_iff ~> min.bounded_iff |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1004 |
min_max.le_sup_iff ~> max.bounded_iff |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1005 |
|
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1006 |
For min_max.inf_sup_aci, prefer (one of) min.commute, min.assoc, |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1007 |
min.left_commute, min.left_idem, max.commute, max.assoc, |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1008 |
max.left_commute, max.left_idem directly. |
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1009 |
|
57452 | 1010 |
For min_max.inf_sup_ord, prefer (one of) min.cobounded1, |
1011 |
min.cobounded2, max.cobounded1m max.cobounded2 directly. |
|
54864
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1012 |
|
56807 | 1013 |
For min_ac or max_ac, prefer more general collection ac_simps. |
54864
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1014 |
|
58604
13dfea1621b2
improved spelling of formal INCOMPATIBILITY in historic versions (!) -- to avoid ad-hoc word completion multiply such lapses;
wenzelm
parents:
58592
diff
changeset
|
1015 |
INCOMPATIBILITY. |
54864
a064732223ad
abolished slightly odd global lattice interpretation for min/max
haftmann
parents:
54850
diff
changeset
|
1016 |
|
57452 | 1017 |
* Theorem disambiguation Inf_le_Sup (on finite sets) ~> |
1018 |
Inf_fin_le_Sup_fin. INCOMPATIBILITY. |
|
54745 | 1019 |
|
54295 | 1020 |
* Qualified constant names Wellfounded.acc, Wellfounded.accp. |
1021 |
INCOMPATIBILITY. |
|
1022 |
||
54228 | 1023 |
* Fact generalization and consolidation: |
1024 |
neq_one_mod_two, mod_2_not_eq_zero_eq_one_int ~> not_mod_2_eq_0_eq_1 |
|
57452 | 1025 |
|
1026 |
INCOMPATIBILITY. |
|
1027 |
||
1028 |
* Purely algebraic definition of even. Fact generalization and |
|
1029 |
consolidation: |
|
54228 | 1030 |
nat_even_iff_2_dvd, int_even_iff_2_dvd ~> even_iff_2_dvd |
1031 |
even_zero_(nat|int) ~> even_zero |
|
57452 | 1032 |
|
54228 | 1033 |
INCOMPATIBILITY. |
54055 | 1034 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54449
diff
changeset
|
1035 |
* Abolished neg_numeral. |
57452 | 1036 |
- Canonical representation for minus one is "- 1". |
1037 |
- Canonical representation for other negative numbers is "- (numeral _)". |
|
1038 |
- When devising rule sets for number calculation, consider the |
|
54587 | 1039 |
following canonical cases: 0, 1, numeral _, - 1, - numeral _. |
57452 | 1040 |
- HOLogic.dest_number also recognizes numerals in non-canonical forms |
54893
4061ec8adb1c
avoid unicode text, which causes problems when recoding symbols (e.g. via UTF8-Isabelle in Isabelle/jEdit);
wenzelm
parents:
54890
diff
changeset
|
1041 |
like "numeral One", "- numeral One", "- 0" and even "- ... - _". |
57452 | 1042 |
- Syntax for negative numerals is mere input syntax. |
1043 |
||
56964 | 1044 |
INCOMPATIBILITY. |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54449
diff
changeset
|
1045 |
|
57517 | 1046 |
* Reduced name variants for rules on associativity and commutativity: |
1047 |
||
1048 |
add_assoc ~> add.assoc |
|
1049 |
add_commute ~> add.commute |
|
1050 |
add_left_commute ~> add.left_commute |
|
1051 |
mult_assoc ~> mult.assoc |
|
1052 |
mult_commute ~> mult.commute |
|
1053 |
mult_left_commute ~> mult.left_commute |
|
1054 |
nat_add_assoc ~> add.assoc |
|
1055 |
nat_add_commute ~> add.commute |
|
1056 |
nat_add_left_commute ~> add.left_commute |
|
1057 |
nat_mult_assoc ~> mult.assoc |
|
1058 |
nat_mult_commute ~> mult.commute |
|
1059 |
eq_assoc ~> iff_assoc |
|
1060 |
eq_left_commute ~> iff_left_commute |
|
1061 |
||
1062 |
INCOMPATIBILITY. |
|
1063 |
||
57650 | 1064 |
* Fact collections add_ac and mult_ac are considered old-fashioned. |
57637
eeb2d50ec71f
updated NEWS according to d38a98f496dd (see also bdc2c6b40bf2);
wenzelm
parents:
57591
diff
changeset
|
1065 |
Prefer ac_simps instead, or specify rules |
eeb2d50ec71f
updated NEWS according to d38a98f496dd (see also bdc2c6b40bf2);
wenzelm
parents:
57591
diff
changeset
|
1066 |
(add|mult).(assoc|commute|left_commute) individually. |
57517 | 1067 |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1068 |
* Elimination of fact duplicates: |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1069 |
equals_zero_I ~> minus_unique |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1070 |
diff_eq_0_iff_eq ~> right_minus_eq |
54588 | 1071 |
nat_infinite ~> infinite_UNIV_nat |
1072 |
int_infinite ~> infinite_UNIV_int |
|
57452 | 1073 |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1074 |
INCOMPATIBILITY. |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1075 |
|
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1076 |
* Fact name consolidation: |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1077 |
diff_def, diff_minus, ab_diff_minus ~> diff_conv_add_uminus |
54250 | 1078 |
minus_le_self_iff ~> neg_less_eq_nonneg |
1079 |
le_minus_self_iff ~> less_eq_neg_nonpos |
|
1080 |
neg_less_nonneg ~> neg_less_pos |
|
1081 |
less_minus_self_iff ~> less_neg_neg [simp] |
|
57452 | 1082 |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1083 |
INCOMPATIBILITY. |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1084 |
|
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1085 |
* More simplification rules on unary and binary minus: |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1086 |
add_diff_cancel, add_diff_cancel_left, add_le_same_cancel1, |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1087 |
add_le_same_cancel2, add_less_same_cancel1, add_less_same_cancel2, |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1088 |
add_minus_cancel, diff_add_cancel, le_add_same_cancel1, |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1089 |
le_add_same_cancel2, less_add_same_cancel1, less_add_same_cancel2, |
57452 | 1090 |
minus_add_cancel, uminus_add_conv_diff. These correspondingly have |
1091 |
been taken away from fact collections algebra_simps and field_simps. |
|
1092 |
INCOMPATIBILITY. |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1093 |
|
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1094 |
To restore proofs, the following patterns are helpful: |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1095 |
|
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1096 |
a) Arbitrary failing proof not involving "diff_def": |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1097 |
Consider simplification with algebra_simps or field_simps. |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1098 |
|
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1099 |
b) Lifting rules from addition to subtraction: |
54893
4061ec8adb1c
avoid unicode text, which causes problems when recoding symbols (e.g. via UTF8-Isabelle in Isabelle/jEdit);
wenzelm
parents:
54890
diff
changeset
|
1100 |
Try with "using <rule for addition> of [... "- _" ...]" by simp". |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1101 |
|
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1102 |
c) Simplification with "diff_def": just drop "diff_def". |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1103 |
Consider simplification with algebra_simps or field_simps; |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1104 |
or the brute way with |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1105 |
"simp add: diff_conv_add_uminus del: add_uminus_conv_diff". |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54228
diff
changeset
|
1106 |
|
57452 | 1107 |
* Introduce bdd_above and bdd_below in theory |
1108 |
Conditionally_Complete_Lattices, use them instead of explicitly |
|
1109 |
stating boundedness of sets. |
|
1110 |
||
1111 |
* ccpo.admissible quantifies only over non-empty chains to allow more |
|
1112 |
syntax-directed proof rules; the case of the empty chain shows up as |
|
1113 |
additional case in fixpoint induction proofs. INCOMPATIBILITY. |
|
54264 | 1114 |
|
56214 | 1115 |
* Removed and renamed theorems in Series: |
1116 |
summable_le ~> suminf_le |
|
1117 |
suminf_le ~> suminf_le_const |
|
1118 |
series_pos_le ~> setsum_le_suminf |
|
1119 |
series_pos_less ~> setsum_less_suminf |
|
1120 |
suminf_ge_zero ~> suminf_nonneg |
|
1121 |
suminf_gt_zero ~> suminf_pos |
|
1122 |
suminf_gt_zero_iff ~> suminf_pos_iff |
|
1123 |
summable_sumr_LIMSEQ_suminf ~> summable_LIMSEQ |
|
1124 |
suminf_0_le ~> suminf_nonneg [rotate] |
|
1125 |
pos_summable ~> summableI_nonneg_bounded |
|
1126 |
ratio_test ~> summable_ratio_test |
|
1127 |
||
1128 |
removed series_zero, replaced by sums_finite |
|
1129 |
||
1130 |
removed auxiliary lemmas: |
|
57452 | 1131 |
|
56214 | 1132 |
sumr_offset, sumr_offset2, sumr_offset3, sumr_offset4, sumr_group, |
57452 | 1133 |
half, le_Suc_ex_iff, lemma_realpow_diff_sumr, |
1134 |
real_setsum_nat_ivl_bounded, summable_le2, ratio_test_lemma2, |
|
1135 |
sumr_minus_one_realpow_zerom, sumr_one_lb_realpow_zero, |
|
1136 |
summable_convergent_sumr_iff, sumr_diff_mult_const |
|
1137 |
||
56214 | 1138 |
INCOMPATIBILITY. |
1139 |
||
1140 |
* Replace (F)DERIV syntax by has_derivative: |
|
1141 |
- "(f has_derivative f') (at x within s)" replaces "FDERIV f x : s : f'" |
|
1142 |
||
1143 |
- "(f has_field_derivative f') (at x within s)" replaces "DERIV f x : s : f'" |
|
1144 |
||
1145 |
- "f differentiable at x within s" replaces "_ differentiable _ in _" syntax |
|
1146 |
||
1147 |
- removed constant isDiff |
|
1148 |
||
57452 | 1149 |
- "DERIV f x : f'" and "FDERIV f x : f'" syntax is only available as |
1150 |
input syntax. |
|
1151 |
||
1152 |
- "DERIV f x : s : f'" and "FDERIV f x : s : f'" syntax removed. |
|
56214 | 1153 |
|
1154 |
- Renamed FDERIV_... lemmas to has_derivative_... |
|
1155 |
||
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1156 |
- renamed deriv (the syntax constant used for "DERIV _ _ :> _") to DERIV |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1157 |
|
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1158 |
- removed DERIV_intros, has_derivative_eq_intros |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1159 |
|
57452 | 1160 |
- introduced derivative_intros and deriative_eq_intros which |
1161 |
includes now rules for DERIV, has_derivative and |
|
1162 |
has_vector_derivative. |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1163 |
|
56214 | 1164 |
- Other renamings: |
1165 |
differentiable_def ~> real_differentiable_def |
|
1166 |
differentiableE ~> real_differentiableE |
|
1167 |
fderiv_def ~> has_derivative_at |
|
1168 |
field_fderiv_def ~> field_has_derivative_at |
|
1169 |
isDiff_der ~> differentiable_def |
|
1170 |
deriv_fderiv ~> has_field_derivative_def |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1171 |
deriv_def ~> DERIV_def |
57452 | 1172 |
|
1173 |
INCOMPATIBILITY. |
|
1174 |
||
1175 |
* Include more theorems in continuous_intros. Remove the |
|
1176 |
continuous_on_intros, isCont_intros collections, these facts are now |
|
1177 |
in continuous_intros. |
|
1178 |
||
1179 |
* Theorems about complex numbers are now stated only using Re and Im, |
|
1180 |
the Complex constructor is not used anymore. It is possible to use |
|
1181 |
primcorec to defined the behaviour of a complex-valued function. |
|
1182 |
||
1183 |
Removed theorems about the Complex constructor from the simpset, they |
|
1184 |
are available as the lemma collection legacy_Complex_simps. This |
|
1185 |
especially removes |
|
1186 |
||
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1187 |
i_complex_of_real: "ii * complex_of_real r = Complex 0 r". |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1188 |
|
57452 | 1189 |
Instead the reverse direction is supported with |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1190 |
Complex_eq: "Complex a b = a + \<i> * b" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1191 |
|
57452 | 1192 |
Moved csqrt from Fundamental_Algebra_Theorem to Complex. |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1193 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1194 |
Renamings: |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1195 |
Re/Im ~> complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1196 |
complex_Re/Im_zero ~> zero_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1197 |
complex_Re/Im_add ~> plus_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1198 |
complex_Re/Im_minus ~> uminus_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1199 |
complex_Re/Im_diff ~> minus_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1200 |
complex_Re/Im_one ~> one_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1201 |
complex_Re/Im_mult ~> times_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1202 |
complex_Re/Im_inverse ~> inverse_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1203 |
complex_Re/Im_scaleR ~> scaleR_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1204 |
complex_Re/Im_i ~> ii.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1205 |
complex_Re/Im_cnj ~> cnj.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1206 |
Re/Im_cis ~> cis.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1207 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1208 |
complex_divide_def ~> divide_complex_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1209 |
complex_norm_def ~> norm_complex_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1210 |
cmod_def ~> norm_complex_de |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1211 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1212 |
Removed theorems: |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1213 |
complex_zero_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1214 |
complex_add_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1215 |
complex_minus_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1216 |
complex_diff_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1217 |
complex_one_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1218 |
complex_mult_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1219 |
complex_inverse_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1220 |
complex_scaleR_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56879
diff
changeset
|
1221 |
|
57452 | 1222 |
INCOMPATIBILITY. |
1223 |
||
57504 | 1224 |
* Theory Lubs moved HOL image to HOL-Library. It is replaced by |
1225 |
Conditionally_Complete_Lattices. INCOMPATIBILITY. |
|
1226 |
||
1227 |
* HOL-Library: new theory src/HOL/Library/Tree.thy. |
|
1228 |
||
1229 |
* HOL-Library: removed theory src/HOL/Library/Kleene_Algebra.thy; it |
|
1230 |
is subsumed by session Kleene_Algebra in AFP. |
|
1231 |
||
57856 | 1232 |
* HOL-Library / theory RBT: various constants and facts are hidden; |
1233 |
lifting setup is unregistered. INCOMPATIBILITY. |
|
57826 | 1234 |
|
57504 | 1235 |
* HOL-Cardinals: new theory src/HOL/Cardinals/Ordinal_Arithmetic.thy. |
1236 |
||
1237 |
* HOL-Word: bit representations prefer type bool over type bit. |
|
1238 |
INCOMPATIBILITY. |
|
1239 |
||
1240 |
* HOL-Word: |
|
1241 |
- Abandoned fact collection "word_arith_alts", which is a duplicate |
|
1242 |
of "word_arith_wis". |
|
1243 |
- Dropped first (duplicated) element in fact collections |
|
1244 |
"sint_word_ariths", "word_arith_alts", "uint_word_ariths", |
|
1245 |
"uint_word_arith_bintrs". |
|
1246 |
||
1247 |
* HOL-Number_Theory: |
|
1248 |
- consolidated the proofs of the binomial theorem |
|
1249 |
- the function fib is again of type nat => nat and not overloaded |
|
1250 |
- no more references to Old_Number_Theory in the HOL libraries |
|
1251 |
(except the AFP) |
|
1252 |
||
1253 |
INCOMPATIBILITY. |
|
1254 |
||
54787 | 1255 |
* HOL-Multivariate_Analysis: |
57452 | 1256 |
- Type class ordered_real_vector for ordered vector spaces. |
1257 |
- New theory Complex_Basic_Analysis defining complex derivatives, |
|
57253 | 1258 |
holomorphic functions, etc., ported from HOL Light's canal.ml. |
57452 | 1259 |
- Changed order of ordered_euclidean_space to be compatible with |
54787 | 1260 |
pointwise ordering on products. Therefore instance of |
1261 |
conditionally_complete_lattice and ordered_real_vector. |
|
1262 |
INCOMPATIBILITY: use box instead of greaterThanLessThan or |
|
57452 | 1263 |
explicit set-comprehensions with eucl_less for other (half-)open |
54787 | 1264 |
intervals. |
57476 | 1265 |
- removed dependencies on type class ordered_euclidean_space with |
1266 |
introduction of "cbox" on euclidean_space |
|
1267 |
- renamed theorems: |
|
1268 |
interval ~> box |
|
1269 |
mem_interval ~> mem_box |
|
1270 |
interval_eq_empty ~> box_eq_empty |
|
1271 |
interval_ne_empty ~> box_ne_empty |
|
1272 |
interval_sing(1) ~> cbox_sing |
|
1273 |
interval_sing(2) ~> box_sing |
|
1274 |
subset_interval_imp ~> subset_box_imp |
|
1275 |
subset_interval ~> subset_box |
|
1276 |
open_interval ~> open_box |
|
1277 |
closed_interval ~> closed_cbox |
|
1278 |
interior_closed_interval ~> interior_cbox |
|
1279 |
bounded_closed_interval ~> bounded_cbox |
|
1280 |
compact_interval ~> compact_cbox |
|
1281 |
bounded_subset_closed_interval_symmetric ~> bounded_subset_cbox_symmetric |
|
1282 |
bounded_subset_closed_interval ~> bounded_subset_cbox |
|
1283 |
mem_interval_componentwiseI ~> mem_box_componentwiseI |
|
1284 |
convex_box ~> convex_prod |
|
1285 |
rel_interior_real_interval ~> rel_interior_real_box |
|
1286 |
convex_interval ~> convex_box |
|
1287 |
convex_hull_eq_real_interval ~> convex_hull_eq_real_cbox |
|
1288 |
frechet_derivative_within_closed_interval ~> frechet_derivative_within_cbox |
|
1289 |
content_closed_interval' ~> content_cbox' |
|
1290 |
elementary_subset_interval ~> elementary_subset_box |
|
1291 |
diameter_closed_interval ~> diameter_cbox |
|
1292 |
frontier_closed_interval ~> frontier_cbox |
|
1293 |
frontier_open_interval ~> frontier_box |
|
1294 |
bounded_subset_open_interval_symmetric ~> bounded_subset_box_symmetric |
|
1295 |
closure_open_interval ~> closure_box |
|
1296 |
open_closed_interval_convex ~> open_cbox_convex |
|
1297 |
open_interval_midpoint ~> box_midpoint |
|
1298 |
content_image_affinity_interval ~> content_image_affinity_cbox |
|
1299 |
is_interval_interval ~> is_interval_cbox + is_interval_box + is_interval_closed_interval |
|
1300 |
bounded_interval ~> bounded_closed_interval + bounded_boxes |
|
1301 |
||
1302 |
- respective theorems for intervals over the reals: |
|
1303 |
content_closed_interval + content_cbox |
|
1304 |
has_integral + has_integral_real |
|
1305 |
fine_division_exists + fine_division_exists_real |
|
1306 |
has_integral_null + has_integral_null_real |
|
1307 |
tagged_division_union_interval + tagged_division_union_interval_real |
|
1308 |
has_integral_const + has_integral_const_real |
|
1309 |
integral_const + integral_const_real |
|
1310 |
has_integral_bound + has_integral_bound_real |
|
1311 |
integrable_continuous + integrable_continuous_real |
|
1312 |
integrable_subinterval + integrable_subinterval_real |
|
1313 |
has_integral_reflect_lemma + has_integral_reflect_lemma_real |
|
1314 |
integrable_reflect + integrable_reflect_real |
|
1315 |
integral_reflect + integral_reflect_real |
|
1316 |
image_affinity_interval + image_affinity_cbox |
|
1317 |
image_smult_interval + image_smult_cbox |
|
1318 |
integrable_const + integrable_const_ivl |
|
1319 |
integrable_on_subinterval + integrable_on_subcbox |
|
1320 |
||
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56342
diff
changeset
|
1321 |
- renamed theorems: |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56342
diff
changeset
|
1322 |
derivative_linear ~> has_derivative_bounded_linear |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56342
diff
changeset
|
1323 |
derivative_is_linear ~> has_derivative_linear |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56342
diff
changeset
|
1324 |
bounded_linear_imp_linear ~> bounded_linear.linear |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56342
diff
changeset
|
1325 |
|
56993
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1326 |
* HOL-Probability: |
57825
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1327 |
- Renamed positive_integral to nn_integral: |
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1328 |
|
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1329 |
. Renamed all lemmas "*positive_integral*" to *nn_integral*" |
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1330 |
positive_integral_positive ~> nn_integral_nonneg |
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1331 |
|
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1332 |
. Renamed abbreviation integral\<^sup>P to integral\<^sup>N. |
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1333 |
|
57452 | 1334 |
- replaced the Lebesgue integral on real numbers by the more general |
1335 |
Bochner integral for functions into a real-normed vector space. |
|
56993
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1336 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1337 |
integral_zero ~> integral_zero / integrable_zero |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1338 |
integral_minus ~> integral_minus / integrable_minus |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1339 |
integral_add ~> integral_add / integrable_add |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1340 |
integral_diff ~> integral_diff / integrable_diff |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1341 |
integral_setsum ~> integral_setsum / integrable_setsum |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1342 |
integral_multc ~> integral_mult_left / integrable_mult_left |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1343 |
integral_cmult ~> integral_mult_right / integrable_mult_right |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1344 |
integral_triangle_inequality~> integral_norm_bound |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1345 |
integrable_nonneg ~> integrableI_nonneg |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1346 |
integral_positive ~> integral_nonneg_AE |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1347 |
integrable_abs_iff ~> integrable_abs_cancel |
57825
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1348 |
positive_integral_lim_INF ~> nn_integral_liminf |
56993
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1349 |
lebesgue_real_affine ~> lborel_real_affine |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1350 |
borel_integral_has_integral ~> has_integral_lebesgue_integral |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1351 |
integral_indicator ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1352 |
integral_real_indicator / integrable_real_indicator |
57825
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1353 |
positive_integral_fst ~> nn_integral_fst' |
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1354 |
positive_integral_fst_measurable ~> nn_integral_fst |
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1355 |
positive_integral_snd_measurable ~> nn_integral_snd |
56993
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1356 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1357 |
integrable_fst_measurable ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1358 |
integral_fst / integrable_fst / AE_integrable_fst |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1359 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1360 |
integrable_snd_measurable ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1361 |
integral_snd / integrable_snd / AE_integrable_snd |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1362 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1363 |
integral_monotone_convergence ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1364 |
integral_monotone_convergence / integrable_monotone_convergence |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1365 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1366 |
integral_monotone_convergence_at_top ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1367 |
integral_monotone_convergence_at_top / |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1368 |
integrable_monotone_convergence_at_top |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1369 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1370 |
has_integral_iff_positive_integral_lebesgue ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1371 |
has_integral_iff_has_bochner_integral_lebesgue_nonneg |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1372 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1373 |
lebesgue_integral_has_integral ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1374 |
has_integral_integrable_lebesgue_nonneg |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1375 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1376 |
positive_integral_lebesgue_has_integral ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1377 |
integral_has_integral_lebesgue_nonneg / |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1378 |
integrable_has_integral_lebesgue_nonneg |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1379 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1380 |
lebesgue_integral_real_affine ~> |
57825
58f46c678352
better ordering of positive_integral renaming to nn_integral in NEWS
hoelzl
parents:
57822
diff
changeset
|
1381 |
nn_integral_real_affine |
56993
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1382 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1383 |
has_integral_iff_positive_integral_lborel ~> |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1384 |
integral_has_integral_nonneg / integrable_has_integral_nonneg |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1385 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1386 |
The following theorems where removed: |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1387 |
|
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1388 |
lebesgue_integral_nonneg |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1389 |
lebesgue_integral_uminus |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1390 |
lebesgue_integral_cmult |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1391 |
lebesgue_integral_multc |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1392 |
lebesgue_integral_cmult_nonneg |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1393 |
integral_cmul_indicator |
e5366291d6aa
introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents:
56964
diff
changeset
|
1394 |
integral_real |
54672
748778ac0ab8
relocate NEWS to post-release version (cf. 7a14f831d02d);
wenzelm
parents:
54671
diff
changeset
|
1395 |
|
57452 | 1396 |
- Formalized properties about exponentially, Erlang, and normal |
1397 |
distributed random variables. |
|
1398 |
||
57504 | 1399 |
* HOL-Decision_Procs: Separate command 'approximate' for approximative |
1400 |
computation in src/HOL/Decision_Procs/Approximation. Minor |
|
1401 |
INCOMPATIBILITY. |
|
57452 | 1402 |
|
57112
70395c65c0e3
removed Kleene_Algebra because of superior AFP entry; authors agreed
nipkow
parents:
57094
diff
changeset
|
1403 |
|
55622
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1404 |
*** Scala *** |
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1405 |
|
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1406 |
* The signature and semantics of Document.Snapshot.cumulate_markup / |
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1407 |
select_markup have been clarified. Markup is now traversed in the |
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1408 |
order of reports given by the prover: later markup is usually more |
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1409 |
specific and may override results accumulated so far. The elements |
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1410 |
guard is mandatory and checked precisely. Subtle INCOMPATIBILITY. |
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1411 |
|
57452 | 1412 |
* Substantial reworking of internal PIDE protocol communication |
1413 |
channels. INCOMPATIBILITY. |
|
1414 |
||
55622
ce575c2212fc
clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents:
55585
diff
changeset
|
1415 |
|
54449
f3cfe882f9af
toplevel function "use" refers to raw ML bootstrap environment;
wenzelm |