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