author | wenzelm |
Mon, 05 Sep 2016 23:39:15 +0200 | |
changeset 63807 | 5f77017055a3 |
parent 63795 | 7f6128adfe67 |
child 63821 | 52235c27538c |
permissions | -rw-r--r-- |
57491 | 1 |
Isabelle NEWS -- history of user-relevant changes |
2 |
================================================= |
|
2553 | 3 |
|
62114
a7cf464933f7
generate HTML version of NEWS, with proper symbol rendering;
wenzelm
parents:
62111
diff
changeset
|
4 |
(Note: Isabelle/jEdit shows a tree-view of the NEWS file in Sidekick.) |
60006 | 5 |
|
60331 | 6 |
|
62216 | 7 |
New in this Isabelle version |
8 |
---------------------------- |
|
9 |
||
62440 | 10 |
*** General *** |
11 |
||
63120
629a4c5e953e
embedded content may be delimited via cartouches;
wenzelm
parents:
63113
diff
changeset
|
12 |
* Embedded content (e.g. the inner syntax of types, terms, props) may be |
629a4c5e953e
embedded content may be delimited via cartouches;
wenzelm
parents:
63113
diff
changeset
|
13 |
delimited uniformly via cartouches. This works better than old-fashioned |
629a4c5e953e
embedded content may be delimited via cartouches;
wenzelm
parents:
63113
diff
changeset
|
14 |
quotes when sub-languages are nested. |
629a4c5e953e
embedded content may be delimited via cartouches;
wenzelm
parents:
63113
diff
changeset
|
15 |
|
62958
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
16 |
* Type-inference improves sorts of newly introduced type variables for |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
17 |
the object-logic, using its base sort (i.e. HOL.type for Isabelle/HOL). |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
18 |
Thus terms like "f x" or "\<And>x. P x" without any further syntactic context |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
19 |
produce x::'a::type in HOL instead of x::'a::{} in Pure. Rare |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
20 |
INCOMPATIBILITY, need to provide explicit type constraints for Pure |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
21 |
types where this is really intended. |
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62939
diff
changeset
|
22 |
|
62969 | 23 |
* Simplified outer syntax: uniform category "name" includes long |
24 |
identifiers. Former "xname" / "nameref" / "name reference" has been |
|
25 |
discontinued. |
|
26 |
||
62807 | 27 |
* Mixfix annotations support general block properties, with syntax |
28 |
"(\<open>x=a y=b z \<dots>\<close>". Notable property names are "indent", "consistent", |
|
29 |
"unbreakable", "markup". The existing notation "(DIGITS" is equivalent |
|
30 |
to "(\<open>indent=DIGITS\<close>". The former notation "(00" for unbreakable blocks |
|
31 |
is superseded by "(\<open>unbreabable\<close>" --- rare INCOMPATIBILITY. |
|
62789 | 32 |
|
62440 | 33 |
* New symbol \<circle>, e.g. for temporal operator. |
34 |
||
62453 | 35 |
* Old 'header' command is no longer supported (legacy since |
36 |
Isabelle2015). |
|
37 |
||
63273 | 38 |
* Command 'bundle' provides a local theory target to define a bundle |
39 |
from the body of specification commands (such as 'declare', |
|
40 |
'declaration', 'notation', 'lemmas', 'lemma'). For example: |
|
41 |
||
42 |
bundle foo |
|
43 |
begin |
|
44 |
declare a [simp] |
|
45 |
declare b [intro] |
|
46 |
end |
|
63272 | 47 |
|
63282 | 48 |
* Command 'unbundle' is like 'include', but works within a local theory |
49 |
context. Unlike "context includes ... begin", the effect of 'unbundle' |
|
50 |
on the target context persists, until different declarations are given. |
|
51 |
||
63650 | 52 |
* Splitter in simp, auto and friends: |
53 |
- The syntax "split add" has been discontinued, use plain "split". |
|
63656 | 54 |
- For situations with many conditional or case expressions, |
63650 | 55 |
there is an alternative splitting strategy that can be much faster. |
56 |
It is selected by writing "split!" instead of "split". It applies |
|
57 |
safe introduction and elimination rules after each split rule. |
|
58 |
As a result the subgoal may be split into several subgoals. |
|
59 |
||
63383 | 60 |
* Proof method "blast" is more robust wrt. corner cases of Pure |
61 |
statements without object-logic judgment. |
|
62 |
||
63532
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63528
diff
changeset
|
63 |
* Pure provides basic versions of proof methods "simp" and "simp_all" |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63528
diff
changeset
|
64 |
that only know about meta-equality (==). Potential INCOMPATIBILITY in |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63528
diff
changeset
|
65 |
theory imports that merge Pure with e.g. Main of Isabelle/HOL: the order |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63528
diff
changeset
|
66 |
is relevant to avoid confusion of Pure.simp vs. HOL.simp. |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63528
diff
changeset
|
67 |
|
63624
994d1a1105ef
more informative 'prf' and 'full_prf', based on HOL/Proofs/ex/XML_Data.thy;
wenzelm
parents:
63610
diff
changeset
|
68 |
* Commands 'prf' and 'full_prf' are somewhat more informative (again): |
994d1a1105ef
more informative 'prf' and 'full_prf', based on HOL/Proofs/ex/XML_Data.thy;
wenzelm
parents:
63610
diff
changeset
|
69 |
proof terms are reconstructed and cleaned from administrative thm nodes. |
994d1a1105ef
more informative 'prf' and 'full_prf', based on HOL/Proofs/ex/XML_Data.thy;
wenzelm
parents:
63610
diff
changeset
|
70 |
|
62440 | 71 |
|
62904 | 72 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
73 |
||
63135 | 74 |
* Cartouche abbreviations work both for " and ` to accomodate typical |
75 |
situations where old ASCII notation may be updated. |
|
76 |
||
63610 | 77 |
* Isabelle/ML and Standard ML files are presented in Sidekick with the |
78 |
tree structure of section headings: this special comment format is |
|
79 |
described in "implementation" chapter 0, e.g. (*** section ***). |
|
80 |
||
63022 | 81 |
* IDE support for the Isabelle/Pure bootstrap process, with the |
82 |
following independent stages: |
|
83 |
||
84 |
src/Pure/ROOT0.ML |
|
85 |
src/Pure/ROOT.ML |
|
86 |
src/Pure/Pure.thy |
|
87 |
src/Pure/ML_Bootstrap.thy |
|
88 |
||
89 |
The ML ROOT files act like quasi-theories in the context of theory |
|
90 |
ML_Bootstrap: this allows continuous checking of all loaded ML files. |
|
91 |
The theory files are presented with a modified header to import Pure |
|
92 |
from the running Isabelle instance. Results from changed versions of |
|
93 |
each stage are *not* propagated to the next stage, and isolated from the |
|
94 |
actual Isabelle/Pure that runs the IDE itself. The sequential |
|
63307 | 95 |
dependencies of the above files are only observed for batch build. |
62904 | 96 |
|
62987
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62969
diff
changeset
|
97 |
* Highlighting of entity def/ref positions wrt. cursor. |
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
wenzelm
parents:
62969
diff
changeset
|
98 |
|
63461 | 99 |
* Refined folding mode "isabelle" based on Isar syntax: 'next' and 'qed' |
63592
64db21931bcb
include 'begin' and 'end' structure in text folds;
wenzelm
parents:
63581
diff
changeset
|
100 |
are treated as delimiters for fold structure; 'begin' and 'end' |
64db21931bcb
include 'begin' and 'end' structure in text folds;
wenzelm
parents:
63581
diff
changeset
|
101 |
structure of theory specifications is treated as well. |
63461 | 102 |
|
63608 | 103 |
* Sidekick parser "isabelle-context" shows nesting of context blocks |
104 |
according to 'begin' and 'end' structure. |
|
105 |
||
63474
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
106 |
* Syntactic indentation according to Isabelle outer syntax. Action |
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
107 |
"indent-lines" (shortcut C+i) indents the current line according to |
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
108 |
command keywords and some command substructure. Action |
63455
019856db2bb6
added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents:
63453
diff
changeset
|
109 |
"isabelle.newline" (shortcut ENTER) indents the old and the new line |
019856db2bb6
added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents:
63453
diff
changeset
|
110 |
according to command keywords only; see also option |
019856db2bb6
added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents:
63453
diff
changeset
|
111 |
"jedit_indent_newline". |
63452 | 112 |
|
63474
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
113 |
* Semantic indentation for unstructured proof scripts ('apply' etc.) via |
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
114 |
number of subgoals. This requires information of ongoing document |
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
115 |
processing and may thus lag behind, when the user is editing too |
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
116 |
quickly; see also option "jedit_script_indent" and |
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
117 |
"jedit_script_indent_limit". |
f66e3c3b0fb1
semantic indentation for unstructured proof scripts;
wenzelm
parents:
63463
diff
changeset
|
118 |
|
63236 | 119 |
* Action "isabelle.select-entity" (shortcut CS+ENTER) selects all |
120 |
occurences of the formal entity at the caret position. This facilitates |
|
121 |
systematic renaming. |
|
122 |
||
63751 | 123 |
* Action "isabelle.keymap-merge" asks the user to resolve pending |
124 |
Isabelle keymap changes that are in conflict with the current jEdit |
|
125 |
keymap; non-conflicting changes are always applied implicitly. This |
|
126 |
action is automatically invoked on Isabelle/jEdit startup and thus |
|
127 |
increases chances that users see new keyboard shortcuts when re-using |
|
128 |
old keymaps. |
|
129 |
||
63032
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
130 |
* Document markup works across multiple Isar commands, e.g. the results |
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
131 |
established at the end of a proof are properly identified in the theorem |
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
132 |
statement. |
e0fa59bbc956
reactivated other_id reports (see also db929027e701, 8eda56033203);
wenzelm
parents:
63022
diff
changeset
|
133 |
|
63513
9f8d06f23c09
information about proof outline with cases (sendback);
wenzelm
parents:
63474
diff
changeset
|
134 |
* Command 'proof' provides information about proof outline with cases, |
9f8d06f23c09
information about proof outline with cases (sendback);
wenzelm
parents:
63474
diff
changeset
|
135 |
e.g. for proof methods "cases", "induct", "goal_cases". |
9f8d06f23c09
information about proof outline with cases (sendback);
wenzelm
parents:
63474
diff
changeset
|
136 |
|
63528
0f39f59317c1
completion templates for commands involving "begin ... end" blocks;
wenzelm
parents:
63527
diff
changeset
|
137 |
* Completion templates for commands involving "begin ... end" blocks, |
0f39f59317c1
completion templates for commands involving "begin ... end" blocks;
wenzelm
parents:
63527
diff
changeset
|
138 |
e.g. 'context', 'notepad'. |
0f39f59317c1
completion templates for commands involving "begin ... end" blocks;
wenzelm
parents:
63527
diff
changeset
|
139 |
|
63581 | 140 |
* Additional abbreviations for syntactic completion may be specified |
63579 | 141 |
within the theory header as 'abbrevs', in addition to global |
63581 | 142 |
$ISABELLE_HOME/etc/abbrevs and $ISABELLE_HOME_USER/etc/abbrevs as |
143 |
before. The theory syntax for 'keywords' has been simplified |
|
144 |
accordingly: optional abbrevs need to go into the new 'abbrevs' section. |
|
63579 | 145 |
|
63675 | 146 |
* ML and document antiquotations for file-systems paths are more uniform |
147 |
and diverse: |
|
148 |
||
149 |
@{path NAME} -- no file-system check |
|
150 |
@{file NAME} -- check for plain file |
|
151 |
@{dir NAME} -- check for directory |
|
152 |
||
153 |
Minor INCOMPATIBILITY, former uses of @{file} and @{file_unchecked} may |
|
154 |
have to be changed. |
|
63669 | 155 |
|
156 |
||
62312
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
157 |
*** Isar *** |
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
158 |
|
63383 | 159 |
* The defining position of a literal fact \<open>prop\<close> is maintained more |
160 |
carefully, and made accessible as hyperlink in the Prover IDE. |
|
161 |
||
162 |
* Commands 'finally' and 'ultimately' used to expose the result as |
|
163 |
literal fact: this accidental behaviour has been discontinued. Rare |
|
164 |
INCOMPATIBILITY, use more explicit means to refer to facts in Isar. |
|
165 |
||
63178 | 166 |
* Command 'axiomatization' has become more restrictive to correspond |
167 |
better to internal axioms as singleton facts with mandatory name. Minor |
|
168 |
INCOMPATIBILITY. |
|
169 |
||
63180 | 170 |
* Many specification elements support structured statements with 'if' / |
171 |
'for' eigen-context, e.g. 'axiomatization', 'abbreviation', |
|
172 |
'definition', 'inductive', 'function'. |
|
173 |
||
63094
056ea294c256
toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents:
63078
diff
changeset
|
174 |
* Toplevel theorem statements support eigen-context notation with 'if' / |
63284 | 175 |
'for' (in postfix), which corresponds to 'assumes' / 'fixes' in the |
63094
056ea294c256
toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents:
63078
diff
changeset
|
176 |
traditional long statement form (in prefix). Local premises are called |
056ea294c256
toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents:
63078
diff
changeset
|
177 |
"that" or "assms", respectively. Empty premises are *not* bound in the |
056ea294c256
toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents:
63078
diff
changeset
|
178 |
context: INCOMPATIBILITY. |
056ea294c256
toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents:
63078
diff
changeset
|
179 |
|
63039 | 180 |
* Command 'define' introduces a local (non-polymorphic) definition, with |
181 |
optional abstraction over local parameters. The syntax resembles |
|
63043 | 182 |
'definition' and 'obtain'. It fits better into the Isar language than |
183 |
old 'def', which is now a legacy feature. |
|
63039 | 184 |
|
63059
3f577308551e
'obtain' supports structured statements (similar to 'define');
wenzelm
parents:
63043
diff
changeset
|
185 |
* Command 'obtain' supports structured statements with 'if' / 'for' |
3f577308551e
'obtain' supports structured statements (similar to 'define');
wenzelm
parents:
63043
diff
changeset
|
186 |
context. |
3f577308551e
'obtain' supports structured statements (similar to 'define');
wenzelm
parents:
63043
diff
changeset
|
187 |
|
62312
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
188 |
* Command '\<proof>' is an alias for 'sorry', with different |
5e5a881ebc12
command '\<proof>' is an alias for 'sorry', with different typesetting;
wenzelm
parents:
62284
diff
changeset
|
189 |
typesetting. E.g. to produce proof holes in examples and documentation. |
62216 | 190 |
|
62939 | 191 |
* The old proof method "default" has been removed (legacy since |
192 |
Isabelle2016). INCOMPATIBILITY, use "standard" instead. |
|
193 |
||
63259 | 194 |
* Proof methods may refer to the main facts via the dynamic fact |
195 |
"method_facts". This is particularly useful for Eisbach method |
|
196 |
definitions. |
|
197 |
||
63527 | 198 |
* Proof method "use" allows to modify the main facts of a given method |
199 |
expression, e.g. |
|
63259 | 200 |
|
201 |
(use facts in simp) |
|
202 |
(use facts in \<open>simp add: ...\<close>) |
|
203 |
||
62216 | 204 |
|
63165
c12845e8e80a
examples and documentation for code generator time measurements
haftmann
parents:
63161
diff
changeset
|
205 |
*** Pure *** |
c12845e8e80a
examples and documentation for code generator time measurements
haftmann
parents:
63161
diff
changeset
|
206 |
|
63166 | 207 |
* Code generator: config option "code_timing" triggers measurements of |
208 |
different phases of code generation. See src/HOL/ex/Code_Timing.thy for |
|
209 |
examples. |
|
63165
c12845e8e80a
examples and documentation for code generator time measurements
haftmann
parents:
63161
diff
changeset
|
210 |
|
63350
705229ed856e
compiling implicit instances into companion objects for classes avoids ambiguities
haftmann
parents:
63343
diff
changeset
|
211 |
* Code generator: implicits in Scala (stemming from type class instances) |
705229ed856e
compiling implicit instances into companion objects for classes avoids ambiguities
haftmann
parents:
63343
diff
changeset
|
212 |
are generated into companion object of corresponding type class, to resolve |
705229ed856e
compiling implicit instances into companion objects for classes avoids ambiguities
haftmann
parents:
63343
diff
changeset
|
213 |
some situations where ambiguities may occur. |
705229ed856e
compiling implicit instances into companion objects for classes avoids ambiguities
haftmann
parents:
63343
diff
changeset
|
214 |
|
63165
c12845e8e80a
examples and documentation for code generator time measurements
haftmann
parents:
63161
diff
changeset
|
215 |
|
62327 | 216 |
*** HOL *** |
217 |
||
63627 | 218 |
* Renamed session HOL-Multivariate_Analysis to HOL-Analysis. |
219 |
||
220 |
* Moved measure theory from HOL-Probability to HOL-Analysis. When importing |
|
221 |
HOL-Analysis some theorems need additional name spaces prefixes due to name |
|
222 |
clashes. |
|
223 |
INCOMPATIBILITY. |
|
224 |
||
63635 | 225 |
* Number_Theory: algebraic foundation for primes: Generalisation of |
226 |
predicate "prime" and introduction of predicates "prime_elem", |
|
227 |
"irreducible", a "prime_factorization" function, and the "factorial_ring" |
|
228 |
typeclass with instance proofs for nat, int, poly. Some theorems now have |
|
229 |
different names, most notably "prime_def" is now "prime_nat_iff". |
|
230 |
INCOMPATIBILITY. |
|
63552 | 231 |
|
232 |
* Probability: Code generation and QuickCheck for Probability Mass |
|
233 |
Functions. |
|
234 |
||
63438 | 235 |
* Theory Set_Interval.thy: substantial new theorems on indexed sums |
236 |
and products. |
|
237 |
||
63414 | 238 |
* Theory Library/LaTeXsugar.thy: New style "dummy_pats" for displaying |
239 |
equations in functional programming style: variables present on the |
|
240 |
left-hand but not on the righ-hand side are replaced by underscores. |
|
241 |
||
63416
6af79184bef3
avoid to hide equality behind (output) abbreviation
haftmann
parents:
63414
diff
changeset
|
242 |
* "surj" is a mere input abbreviation, to avoid hiding an equation in |
6af79184bef3
avoid to hide equality behind (output) abbreviation
haftmann
parents:
63414
diff
changeset
|
243 |
term output. Minor INCOMPATIBILITY. |
6af79184bef3
avoid to hide equality behind (output) abbreviation
haftmann
parents:
63414
diff
changeset
|
244 |
|
63377
64adf4ba9526
combinator to build partial equivalence relations from a predicate and an equivalenc relation
haftmann
parents:
63375
diff
changeset
|
245 |
* Theory Library/Combinator_PER.thy: combinator to build partial |
63378 | 246 |
equivalence relations from a predicate and an equivalence relation. |
63377
64adf4ba9526
combinator to build partial equivalence relations from a predicate and an equivalenc relation
haftmann
parents:
63375
diff
changeset
|
247 |
|
63375
59803048b0e8
basic facts about almost everywhere fix bijections
haftmann
parents:
63374
diff
changeset
|
248 |
* Theory Library/Perm.thy: basic facts about almost everywhere fix |
59803048b0e8
basic facts about almost everywhere fix bijections
haftmann
parents:
63374
diff
changeset
|
249 |
bijections. |
59803048b0e8
basic facts about almost everywhere fix bijections
haftmann
parents:
63374
diff
changeset
|
250 |
|
63374 | 251 |
* Locale bijection establishes convenient default simp rules |
252 |
like "inv f (f a) = a" for total bijections. |
|
253 |
||
63343 | 254 |
* Former locale lifting_syntax is now a bundle, which is easier to |
255 |
include in a local context or theorem statement, e.g. "context includes |
|
256 |
lifting_syntax begin ... end". Minor INCOMPATIBILITY. |
|
257 |
||
63303 | 258 |
* Code generation for scala: ambiguous implicts in class diagrams |
259 |
are spelt out explicitly. |
|
260 |
||
63290
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
261 |
* Abstract locales semigroup, abel_semigroup, semilattice, |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
262 |
semilattice_neutr, ordering, ordering_top, semilattice_order, |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
263 |
semilattice_neutr_order, comm_monoid_set, semilattice_set, |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
264 |
semilattice_neutr_set, semilattice_order_set, semilattice_order_neutr_set |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
265 |
monoid_list, comm_monoid_list, comm_monoid_list_set, comm_monoid_mset, |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
266 |
comm_monoid_fun use boldified syntax uniformly that does not clash |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
267 |
with corresponding global syntax. INCOMPATIBILITY. |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63284
diff
changeset
|
268 |
|
63237 | 269 |
* Conventional syntax "%(). t" for unit abstractions. Slight syntactic |
270 |
INCOMPATIBILITY. |
|
271 |
||
63174
57c0d60e491c
do not export abstract constructors in code_reflect
haftmann
parents:
63173
diff
changeset
|
272 |
* Command 'code_reflect' accepts empty constructor lists for datatypes, |
57c0d60e491c
do not export abstract constructors in code_reflect
haftmann
parents:
63173
diff
changeset
|
273 |
which renders those abstract effectively. |
57c0d60e491c
do not export abstract constructors in code_reflect
haftmann
parents:
63173
diff
changeset
|
274 |
|
63175
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63174
diff
changeset
|
275 |
* Command 'export_code' checks given constants for abstraction violations: |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63174
diff
changeset
|
276 |
a small guarantee that given constants specify a safe interface for the |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63174
diff
changeset
|
277 |
generated code. |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63174
diff
changeset
|
278 |
|
63144 | 279 |
* Probability/Random_Permutations.thy contains some theory about |
280 |
choosing a permutation of a set uniformly at random and folding over a |
|
281 |
list in random order. |
|
282 |
||
63246 | 283 |
* Probability/SPMF formalises discrete subprobability distributions. |
284 |
||
63283
a59801b7f125
bundles "finfun_syntax" and "no_finfun_syntax" for optional syntax;
wenzelm
parents:
63282
diff
changeset
|
285 |
* Library/FinFun.thy: bundles "finfun_syntax" and "no_finfun_syntax" |
a59801b7f125
bundles "finfun_syntax" and "no_finfun_syntax" for optional syntax;
wenzelm
parents:
63282
diff
changeset
|
286 |
allow to control optional syntax in local contexts; this supersedes |
a59801b7f125
bundles "finfun_syntax" and "no_finfun_syntax" for optional syntax;
wenzelm
parents:
63282
diff
changeset
|
287 |
former Library/FinFun_Syntax.thy. INCOMPATIBILITY, e.g. use "unbundle |
a59801b7f125
bundles "finfun_syntax" and "no_finfun_syntax" for optional syntax;
wenzelm
parents:
63282
diff
changeset
|
288 |
finfun_syntax" to imitate import of "~~/src/HOL/Library/FinFun_Syntax". |
a59801b7f125
bundles "finfun_syntax" and "no_finfun_syntax" for optional syntax;
wenzelm
parents:
63282
diff
changeset
|
289 |
|
63144 | 290 |
* Library/Set_Permutations.thy (executably) defines the set of |
291 |
permutations of a set, i.e. the set of all lists that contain every |
|
292 |
element of the carrier set exactly once. |
|
293 |
||
63161
2660ba498798
delegate inclusion of required dictionaries to user-space instead of half-working magic
haftmann
parents:
63155
diff
changeset
|
294 |
* Static evaluators (Code_Evaluation.static_* in Isabelle/ML) rely on |
2660ba498798
delegate inclusion of required dictionaries to user-space instead of half-working magic
haftmann
parents:
63155
diff
changeset
|
295 |
explicitly provided auxiliary definitions for required type class |
2660ba498798
delegate inclusion of required dictionaries to user-space instead of half-working magic
haftmann
parents:
63155
diff
changeset
|
296 |
dictionaries rather than half-working magic. INCOMPATIBILITY, see |
2660ba498798
delegate inclusion of required dictionaries to user-space instead of half-working magic
haftmann
parents:
63155
diff
changeset
|
297 |
the tutorial on code generation for details. |
2660ba498798
delegate inclusion of required dictionaries to user-space instead of half-working magic
haftmann
parents:
63155
diff
changeset
|
298 |
|
62522 | 299 |
* New abbreviations for negated existence (but not bounded existence): |
300 |
||
301 |
\<nexists>x. P x \<equiv> \<not> (\<exists>x. P x) |
|
302 |
\<nexists>!x. P x \<equiv> \<not> (\<exists>!x. P x) |
|
303 |
||
62521 | 304 |
* The print mode "HOL" for ASCII syntax of binders "!", "?", "?!", "@" |
305 |
has been removed for output. It is retained for input only, until it is |
|
306 |
eliminated altogether. |
|
307 |
||
63785 | 308 |
* metis: The problem encoding has changed very slightly. This might |
309 |
break existing proofs. INCOMPATIBILITY. |
|
310 |
||
63116 | 311 |
* Sledgehammer: |
63699 | 312 |
- The MaSh relevance filter has been sped up. |
63116 | 313 |
- Produce syntactically correct Vampire 4.0 problem files. |
314 |
||
62327 | 315 |
* (Co)datatype package: |
62693 | 316 |
- New commands for defining corecursive functions and reasoning about |
317 |
them in "~~/src/HOL/Library/BNF_Corec.thy": 'corec', 'corecursive', |
|
318 |
'friend_of_corec', and 'corecursion_upto'; and 'corec_unique' proof |
|
62842 | 319 |
method. See 'isabelle doc corec'. |
62693 | 320 |
- The predicator :: ('a => bool) => 'a F => bool is now a first-class |
62332 | 321 |
citizen in bounded natural functors |
62693 | 322 |
- 'primrec' now allows nested calls through the predicator in addition |
62327 | 323 |
to the map function. |
62693 | 324 |
- 'bnf' automatically discharges reflexive proof obligations |
325 |
- 'bnf' outputs a slightly modified proof obligation expressing rel in |
|
62332 | 326 |
terms of map and set |
327 |
(not giving a specification for rel makes this one reflexive) |
|
62693 | 328 |
- 'bnf' outputs a new proof obligation expressing pred in terms of set |
62332 | 329 |
(not giving a specification for pred makes this one reflexive) |
62693 | 330 |
INCOMPATIBILITY: manual 'bnf' declarations may need adjustment |
62335 | 331 |
- Renamed lemmas: |
332 |
rel_prod_apply ~> rel_prod_inject |
|
333 |
pred_prod_apply ~> pred_prod_inject |
|
334 |
INCOMPATIBILITY. |
|
62536
656e9653c645
made 'size' plugin compatible with locales again (and added regression test)
blanchet
parents:
62525
diff
changeset
|
335 |
- The "size" plugin has been made compatible again with locales. |
62327 | 336 |
|
63807 | 337 |
* Some old / obsolete theorems have been renamed / removed, potential |
338 |
INCOMPATIBILITY. |
|
339 |
||
340 |
nat_less_cases -- removed, use linorder_cases instead |
|
341 |
inv_image_comp -- removed, use image_inv_f_f instead |
|
342 |
image_surj_f_inv_f ~> image_f_inv_f |
|
63113 | 343 |
|
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
344 |
* Some theorems about groups and orders have been generalised from |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
345 |
groups to semi-groups that are also monoids: |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
346 |
le_add_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
347 |
le_add_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
348 |
less_add_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
349 |
less_add_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
350 |
add_le_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
351 |
add_le_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
352 |
add_less_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
353 |
add_less_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
354 |
|
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
355 |
* Some simplifications theorems about rings have been removed, since |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
356 |
superseeded by a more general version: |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
357 |
less_add_cancel_left_greater_zero ~> less_add_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
358 |
less_add_cancel_right_greater_zero ~> less_add_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
359 |
less_eq_add_cancel_left_greater_eq_zero ~> le_add_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
360 |
less_eq_add_cancel_right_greater_eq_zero ~> le_add_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
361 |
less_eq_add_cancel_left_less_eq_zero ~> add_le_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
362 |
less_eq_add_cancel_right_less_eq_zero ~> add_le_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
363 |
less_add_cancel_left_less_zero ~> add_less_same_cancel1 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
364 |
less_add_cancel_right_less_zero ~> add_less_same_cancel2 |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
365 |
INCOMPATIBILITY. |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
366 |
|
62407 | 367 |
* Renamed split_if -> if_split and split_if_asm -> if_split_asm to |
368 |
resemble the f.split naming convention, INCOMPATIBILITY. |
|
62396 | 369 |
|
62597 | 370 |
* Characters (type char) are modelled as finite algebraic type |
371 |
corresponding to {0..255}. |
|
372 |
||
373 |
- Logical representation: |
|
374 |
* 0 is instantiated to the ASCII zero character. |
|
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
375 |
* All other characters are represented as "Char n" |
62597 | 376 |
with n being a raw numeral expression less than 256. |
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
377 |
* Expressions of the form "Char n" with n greater than 255 |
62597 | 378 |
are non-canonical. |
379 |
- Printing and parsing: |
|
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
380 |
* Printable characters are printed and parsed as "CHR ''\<dots>''" |
62597 | 381 |
(as before). |
62645
a2351f82bc48
eliminated spurious Unicode, which is in conflict with Isabelle symbol interpretation;
wenzelm
parents:
62642
diff
changeset
|
382 |
* The ASCII zero character is printed and parsed as "0". |
62678 | 383 |
* All other canonical characters are printed as "CHR 0xXX" |
384 |
with XX being the hexadecimal character code. "CHR n" |
|
62597 | 385 |
is parsable for every numeral expression n. |
62598 | 386 |
* Non-canonical characters have no special syntax and are |
62597 | 387 |
printed as their logical representation. |
388 |
- Explicit conversions from and to the natural numbers are |
|
389 |
provided as char_of_nat, nat_of_char (as before). |
|
390 |
- The auxiliary nibble type has been discontinued. |
|
391 |
||
392 |
INCOMPATIBILITY. |
|
393 |
||
62430
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
394 |
* Multiset membership is now expressed using set_mset rather than count. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
395 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
396 |
- Expressions "count M a > 0" and similar simplify to membership |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
397 |
by default. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
398 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
399 |
- Converting between "count M a = 0" and non-membership happens using |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
400 |
equations count_eq_zero_iff and not_in_iff. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
401 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
402 |
- Rules count_inI and in_countE obtain facts of the form |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
403 |
"count M a = n" from membership. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
404 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
405 |
- Rules count_in_diffI and in_diff_countE obtain facts of the form |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
406 |
"count M a = n + count N a" from membership on difference sets. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
407 |
|
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
408 |
INCOMPATIBILITY. |
9527ff088c15
more succint formulation of membership for multisets, similar to lists;
haftmann
parents:
62415
diff
changeset
|
409 |
|
63310
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
410 |
* The names of multiset theorems have been normalised to distinguish which |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
411 |
ordering the theorems are about |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
412 |
mset_less_eqI ~> mset_subset_eqI |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
413 |
mset_less_insertD ~> mset_subset_insertD |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
414 |
mset_less_eq_count ~> mset_subset_eq_count |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
415 |
mset_less_diff_self ~> mset_subset_diff_self |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
416 |
mset_le_exists_conv ~> mset_subset_eq_exists_conv |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
417 |
mset_le_mono_add_right_cancel ~> mset_subset_eq_mono_add_right_cancel |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
418 |
mset_le_mono_add_left_cancel ~> mset_subset_eq_mono_add_left_cancel |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
419 |
mset_le_mono_add ~> mset_subset_eq_mono_add |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
420 |
mset_le_add_left ~> mset_subset_eq_add_left |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
421 |
mset_le_add_right ~> mset_subset_eq_add_right |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
422 |
mset_le_single ~> mset_subset_eq_single |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
423 |
mset_le_multiset_union_diff_commute ~> mset_subset_eq_multiset_union_diff_commute |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
424 |
diff_le_self ~> diff_subset_eq_self |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
425 |
mset_leD ~> mset_subset_eqD |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
426 |
mset_lessD ~> mset_subsetD |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
427 |
mset_le_insertD ~> mset_subset_eq_insertD |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
428 |
mset_less_of_empty ~> mset_subset_of_empty |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
429 |
le_empty ~> subset_eq_empty |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
430 |
mset_less_add_bothsides ~> mset_subset_add_bothsides |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
431 |
mset_less_empty_nonempty ~> mset_subset_empty_nonempty |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
432 |
mset_less_size ~> mset_subset_size |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
433 |
wf_less_mset_rel ~> wf_subset_mset_rel |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
434 |
count_le_replicate_mset_le ~> count_le_replicate_mset_subset_eq |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
435 |
mset_remdups_le ~> mset_remdups_subset_eq |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
436 |
ms_lesseq_impl ~> subset_eq_mset_impl |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
437 |
|
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
438 |
Some functions have been renamed: |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
439 |
ms_lesseq_impl -> subset_eq_mset_impl |
caaacf37943f
normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63307
diff
changeset
|
440 |
|
63388
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
441 |
* Multisets are now ordered with the multiset ordering |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
442 |
#\<subseteq># ~> \<le> |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
443 |
#\<subset># ~> < |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
444 |
le_multiset ~> less_eq_multiset |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
445 |
less_multiset ~> le_multiset |
63407
89dd1345a04f
leverage new 'order' type class instantiation in multiset
blanchet
parents:
63388
diff
changeset
|
446 |
INCOMPATIBILITY. |
63388
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
447 |
|
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
448 |
* The prefix multiset_order has been discontinued: the theorems can be directly |
63407
89dd1345a04f
leverage new 'order' type class instantiation in multiset
blanchet
parents:
63388
diff
changeset
|
449 |
accessed. As a consequence, the lemmas "order_multiset" and "linorder_multiset" |
89dd1345a04f
leverage new 'order' type class instantiation in multiset
blanchet
parents:
63388
diff
changeset
|
450 |
have been discontinued, and the interpretations "multiset_linorder" and |
89dd1345a04f
leverage new 'order' type class instantiation in multiset
blanchet
parents:
63388
diff
changeset
|
451 |
"multiset_wellorder" have been replaced by instantiations. |
89dd1345a04f
leverage new 'order' type class instantiation in multiset
blanchet
parents:
63388
diff
changeset
|
452 |
INCOMPATIBILITY. |
63388
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
453 |
|
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
454 |
* Some theorems about the multiset ordering have been renamed: |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
455 |
le_multiset_def ~> less_eq_multiset_def |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
456 |
less_multiset_def ~> le_multiset_def |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
457 |
less_eq_imp_le_multiset ~> subset_eq_imp_le_multiset |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
458 |
mult_less_not_refl ~> mset_le_not_refl |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
459 |
mult_less_trans ~> mset_le_trans |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
460 |
mult_less_not_sym ~> mset_le_not_sym |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
461 |
mult_less_asym ~> mset_le_asym |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
462 |
mult_less_irrefl ~> mset_le_irrefl |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
463 |
union_less_mono2{,1,2} ~> union_le_mono2{,1,2} |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
464 |
|
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
465 |
le_multiset\<^sub>H\<^sub>O ~> less_eq_multiset\<^sub>H\<^sub>O |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
466 |
le_multiset_total ~> less_eq_multiset_total |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
467 |
less_multiset_right_total ~> subset_eq_imp_le_multiset |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
468 |
le_multiset_empty_left ~> less_eq_multiset_empty_left |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
469 |
le_multiset_empty_right ~> less_eq_multiset_empty_right |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
470 |
less_multiset_empty_right ~> le_multiset_empty_left |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
471 |
less_multiset_empty_left ~> le_multiset_empty_right |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
472 |
union_less_diff_plus ~> union_le_diff_plus |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
473 |
ex_gt_count_imp_less_multiset ~> ex_gt_count_imp_le_multiset |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
474 |
less_multiset_plus_left_nonempty ~> le_multiset_plus_left_nonempty |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
475 |
le_multiset_plus_right_nonempty ~> le_multiset_plus_right_nonempty |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
476 |
less_multiset_plus_plus_left_iff ~> le_multiset_plus_plus_left_iff |
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
477 |
less_multiset_plus_plus_right_iff ~> le_multiset_plus_plus_right_iff |
63407
89dd1345a04f
leverage new 'order' type class instantiation in multiset
blanchet
parents:
63388
diff
changeset
|
478 |
INCOMPATIBILITY. |
63388
a095acd4cfbf
instantiate multiset with multiset ordering
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63384
diff
changeset
|
479 |
|
63524
4ec755485732
adding mset_map to the simp rules
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63513
diff
changeset
|
480 |
* The lemma mset_map has now the attribute [simp]. |
4ec755485732
adding mset_map to the simp rules
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63513
diff
changeset
|
481 |
INCOMPATIBILITY. |
4ec755485732
adding mset_map to the simp rules
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63513
diff
changeset
|
482 |
|
63525
f01d1e393f3f
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63524
diff
changeset
|
483 |
* Some theorems about multisets have been removed: |
f01d1e393f3f
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63524
diff
changeset
|
484 |
le_multiset_plus_plus_left_iff ~> add_less_cancel_right |
f01d1e393f3f
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63524
diff
changeset
|
485 |
le_multiset_plus_plus_right_iff ~> add_less_cancel_left |
f01d1e393f3f
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63524
diff
changeset
|
486 |
add_eq_self_empty_iff ~> add_cancel_left_right |
63793
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
487 |
mset_subset_add_bothsides ~> subset_mset.add_less_cancel_right |
63525
f01d1e393f3f
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63524
diff
changeset
|
488 |
INCOMPATIBILITY. |
f01d1e393f3f
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63524
diff
changeset
|
489 |
|
63410
9789ccc2a477
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63407
diff
changeset
|
490 |
* Some typeclass constraints about multisets have been reduced from ordered or |
9789ccc2a477
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63407
diff
changeset
|
491 |
linordered to preorder. Multisets have the additional typeclasses order_bot, |
9789ccc2a477
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63407
diff
changeset
|
492 |
no_top, ordered_ab_semigroup_add_imp_le, ordered_cancel_comm_monoid_add, |
63525
f01d1e393f3f
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63524
diff
changeset
|
493 |
linordered_cancel_ab_semigroup_add, and ordered_ab_semigroup_monoid_add_imp_le. |
63410
9789ccc2a477
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63407
diff
changeset
|
494 |
INCOMPATIBILITY. |
9789ccc2a477
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63407
diff
changeset
|
495 |
|
63560
3e3097ac37d1
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63553
diff
changeset
|
496 |
* There are some new simplification rules about multisets, the multiset |
3e3097ac37d1
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63553
diff
changeset
|
497 |
ordering, and the subset ordering on multisets. |
3e3097ac37d1
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63553
diff
changeset
|
498 |
INCOMPATIBILITY. |
3e3097ac37d1
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63553
diff
changeset
|
499 |
|
63795
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
500 |
* The subset ordering on multisets has now the interpretations |
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
501 |
ordered_ab_semigroup_monoid_add_imp_le and bounded_lattice_bot. |
63410
9789ccc2a477
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63407
diff
changeset
|
502 |
INCOMPATIBILITY. |
9789ccc2a477
more instantiations for multiset
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63407
diff
changeset
|
503 |
|
63793
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
504 |
* Multiset: single has been removed in favor of add_mset that roughly |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
505 |
corresponds to Set.insert. Some theorems have removed or changed: |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
506 |
single_not_empty ~> add_mset_not_empty or empty_not_add_mset |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
507 |
fold_mset_insert ~> fold_mset_add_mset |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
508 |
image_mset_insert ~> image_mset_add_mset |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
509 |
union_single_eq_diff |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
510 |
multi_self_add_other_not_self |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
511 |
diff_single_eq_union |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
512 |
INCOMPATIBILITY. |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
513 |
|
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
514 |
* Multiset: some theorems have been changed to use add_mset instead of single: |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
515 |
mset_add |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
516 |
multi_self_add_other_not_self |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
517 |
diff_single_eq_union |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
518 |
union_single_eq_diff |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
519 |
union_single_eq_member |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
520 |
add_eq_conv_diff |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
521 |
insert_noteq_member |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
522 |
add_eq_conv_ex |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
523 |
multi_member_split |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
524 |
multiset_add_sub_el_shuffle |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
525 |
mset_subset_eq_insertD |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
526 |
mset_subset_insertD |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
527 |
insert_subset_eq_iff |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
528 |
insert_union_subset_iff |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
529 |
multi_psub_of_add_self |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
530 |
inter_add_left1 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
531 |
inter_add_left2 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
532 |
inter_add_right1 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
533 |
inter_add_right2 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
534 |
sup_union_left1 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
535 |
sup_union_left2 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
536 |
sup_union_right1 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
537 |
sup_union_right2 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
538 |
size_eq_Suc_imp_eq_union |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
539 |
multi_nonempty_split |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
540 |
mset_insort |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
541 |
mset_update |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
542 |
mult1I |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
543 |
less_add |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
544 |
mset_zip_take_Cons_drop_twice |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
545 |
rel_mset_Zero |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
546 |
msed_map_invL |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
547 |
msed_map_invR |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
548 |
msed_rel_invL |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
549 |
msed_rel_invR |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
550 |
le_multiset_right_total |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
551 |
multiset_induct |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
552 |
multiset_induct2_size |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
553 |
multiset_induct2 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
554 |
INCOMPATIBILITY. |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
555 |
|
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
556 |
* Multiset: the definitions of some constants have changed to use add_mset instead |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
557 |
of adding a single element: |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
558 |
image_mset |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
559 |
mset |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
560 |
replicate_mset |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
561 |
mult1 |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
562 |
pred_mset |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
563 |
rel_mset' |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
564 |
mset_insort |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
565 |
INCOMPATIBILITY. |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
566 |
|
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
567 |
* Due to the above changes, the attributes of some multiset theorems have |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
568 |
been changed: |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
569 |
insert_DiffM [] ~> [simp] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
570 |
insert_DiffM2 [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
571 |
diff_add_mset_swap [simp] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
572 |
fold_mset_add_mset [simp] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
573 |
diff_diff_add [simp] (for multisets only) |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
574 |
diff_cancel [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
575 |
count_single [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
576 |
set_mset_single [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
577 |
size_multiset_single [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
578 |
size_single [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
579 |
image_mset_single [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
580 |
mset_subset_eq_mono_add_right_cancel [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
581 |
mset_subset_eq_mono_add_left_cancel [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
582 |
fold_mset_single [simp] ~> [] |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
583 |
subset_eq_empty [simp] ~> [] |
63795
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
584 |
empty_sup [simp] ~> [] |
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
585 |
sup_empty [simp] ~> [] |
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
586 |
inter_empty [simp] ~> [] |
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
587 |
empty_inter [simp] ~> [] |
63793
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
588 |
INCOMPATIBILITY. |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
589 |
|
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
590 |
* The order of the variables in the second cases of multiset_induct, |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
591 |
multiset_induct2_size, multiset_induct2 has been changed (e.g. Add A a ~> Add a A). |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
592 |
INCOMPATIBILITY. |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
593 |
|
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
594 |
* There is now a simplification procedure on multisets. It mimics the behavior |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
595 |
of the procedure on natural numbers. |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
596 |
INCOMPATIBILITY. |
e68a0b651eb5
add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63785
diff
changeset
|
597 |
|
63795
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
598 |
* The lemma one_step_implies_mult_aux on multisets has been removed, use |
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
599 |
one_step_implies_mult instead. |
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
600 |
INCOMPATIBILITY. |
7f6128adfe67
tuning multisets; more interpretations
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63793
diff
changeset
|
601 |
|
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62335
diff
changeset
|
602 |
* Compound constants INFIMUM and SUPREMUM are mere abbreviations now. |
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62335
diff
changeset
|
603 |
INCOMPATIBILITY. |
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62335
diff
changeset
|
604 |
|
62408
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62407
diff
changeset
|
605 |
* More complex analysis including Cauchy's inequality, Liouville theorem, |
63078
e49dc94eb624
Theory of polyhedra: faces, extreme points, polytopes, and the Krein–Milman
paulson <lp15@cam.ac.uk>
parents:
63066
diff
changeset
|
606 |
open mapping theorem, maximum modulus principle, Residue theorem, Schwarz Lemma. |
e49dc94eb624
Theory of polyhedra: faces, extreme points, polytopes, and the Krein–Milman
paulson <lp15@cam.ac.uk>
parents:
63066
diff
changeset
|
607 |
|
e49dc94eb624
Theory of polyhedra: faces, extreme points, polytopes, and the Krein–Milman
paulson <lp15@cam.ac.uk>
parents:
63066
diff
changeset
|
608 |
* Theory of polyhedra: faces, extreme points, polytopes, and the Krein–Milman |
e49dc94eb624
Theory of polyhedra: faces, extreme points, polytopes, and the Krein–Milman
paulson <lp15@cam.ac.uk>
parents:
63066
diff
changeset
|
609 |
Minkowski theorem. |
62408
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62407
diff
changeset
|
610 |
|
62358 | 611 |
* "Gcd (f ` A)" and "Lcm (f ` A)" are printed with optional |
612 |
comprehension-like syntax analogously to "Inf (f ` A)" and "Sup (f ` A)". |
|
613 |
||
62345 | 614 |
* Class semiring_Lcd merged into semiring_Gcd. INCOMPATIBILITY. |
615 |
||
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
616 |
* The type class ordered_comm_monoid_add is now called |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
617 |
ordered_cancel_comm_monoid_add. A new type class ordered_comm_monoid_add is |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
618 |
introduced as the combination of ordered_ab_semigroup_add + comm_monoid_add. |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
619 |
INCOMPATIBILITY. |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
620 |
|
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
621 |
* Introduced the type classes canonically_ordered_comm_monoid_add and dioid. |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
622 |
|
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
623 |
* Introduced the type class ordered_ab_semigroup_monoid_add_imp_le. When |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
624 |
instantiating linordered_semiring_strict and ordered_ab_group_add, an explicit |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
625 |
instantiation of ordered_ab_semigroup_monoid_add_imp_le might be |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
626 |
required. |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
627 |
INCOMPATIBILITY. |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63455
diff
changeset
|
628 |
|
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
629 |
* Added topological_monoid |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62358
diff
changeset
|
630 |
|
62652
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
631 |
* Library/Complete_Partial_Order2.thy provides reasoning support for |
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
632 |
proofs about monotonicity and continuity in chain-complete partial |
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
633 |
orders and about admissibility conditions for fixpoint inductions. |
7248d106c607
move Complete_Partial_Orders2 from AFP/Coinductive to HOL/Library
Andreas Lochbihler
parents:
62645
diff
changeset
|
634 |
|
62352
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
635 |
* Library/Polynomial.thy contains also derivation of polynomials |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
636 |
but not gcd/lcm on polynomials over fields. This has been moved |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
637 |
to a separate theory Library/Polynomial_GCD_euclidean.thy, to |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
638 |
pave way for a possible future different type class instantiation |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
639 |
for polynomials over factorial rings. INCOMPATIBILITY. |
35a9e1cbb5b3
separated potentially conflicting type class instance into separate theory
haftmann
parents:
62348
diff
changeset
|
640 |
|
63155 | 641 |
* Library/Sublist.thy: added function "prefixes" and renamed |
63173 | 642 |
prefixeq -> prefix |
643 |
prefix -> strict_prefix |
|
644 |
suffixeq -> suffix |
|
645 |
suffix -> strict_suffix |
|
646 |
Added theory of longest common prefixes. |
|
63117 | 647 |
|
62348 | 648 |
* Dropped various legacy fact bindings, whose replacements are often |
649 |
of a more general type also: |
|
650 |
lcm_left_commute_nat ~> lcm.left_commute |
|
651 |
lcm_left_commute_int ~> lcm.left_commute |
|
652 |
gcd_left_commute_nat ~> gcd.left_commute |
|
653 |
gcd_left_commute_int ~> gcd.left_commute |
|
654 |
gcd_greatest_iff_nat ~> gcd_greatest_iff |
|
655 |
gcd_greatest_iff_int ~> gcd_greatest_iff |
|
656 |
coprime_dvd_mult_nat ~> coprime_dvd_mult |
|
657 |
coprime_dvd_mult_int ~> coprime_dvd_mult |
|
658 |
zpower_numeral_even ~> power_numeral_even |
|
659 |
gcd_mult_cancel_nat ~> gcd_mult_cancel |
|
660 |
gcd_mult_cancel_int ~> gcd_mult_cancel |
|
661 |
div_gcd_coprime_nat ~> div_gcd_coprime |
|
662 |
div_gcd_coprime_int ~> div_gcd_coprime |
|
663 |
zpower_numeral_odd ~> power_numeral_odd |
|
664 |
zero_less_int_conv ~> of_nat_0_less_iff |
|
665 |
gcd_greatest_nat ~> gcd_greatest |
|
666 |
gcd_greatest_int ~> gcd_greatest |
|
667 |
coprime_mult_nat ~> coprime_mult |
|
668 |
coprime_mult_int ~> coprime_mult |
|
669 |
lcm_commute_nat ~> lcm.commute |
|
670 |
lcm_commute_int ~> lcm.commute |
|
671 |
int_less_0_conv ~> of_nat_less_0_iff |
|
672 |
gcd_commute_nat ~> gcd.commute |
|
673 |
gcd_commute_int ~> gcd.commute |
|
674 |
Gcd_insert_nat ~> Gcd_insert |
|
675 |
Gcd_insert_int ~> Gcd_insert |
|
676 |
of_int_int_eq ~> of_int_of_nat_eq |
|
677 |
lcm_least_nat ~> lcm_least |
|
678 |
lcm_least_int ~> lcm_least |
|
679 |
lcm_assoc_nat ~> lcm.assoc |
|
680 |
lcm_assoc_int ~> lcm.assoc |
|
681 |
int_le_0_conv ~> of_nat_le_0_iff |
|
682 |
int_eq_0_conv ~> of_nat_eq_0_iff |
|
683 |
Gcd_empty_nat ~> Gcd_empty |
|
684 |
Gcd_empty_int ~> Gcd_empty |
|
685 |
gcd_assoc_nat ~> gcd.assoc |
|
686 |
gcd_assoc_int ~> gcd.assoc |
|
687 |
zero_zle_int ~> of_nat_0_le_iff |
|
688 |
lcm_dvd2_nat ~> dvd_lcm2 |
|
689 |
lcm_dvd2_int ~> dvd_lcm2 |
|
690 |
lcm_dvd1_nat ~> dvd_lcm1 |
|
691 |
lcm_dvd1_int ~> dvd_lcm1 |
|
692 |
gcd_zero_nat ~> gcd_eq_0_iff |
|
693 |
gcd_zero_int ~> gcd_eq_0_iff |
|
694 |
gcd_dvd2_nat ~> gcd_dvd2 |
|
695 |
gcd_dvd2_int ~> gcd_dvd2 |
|
696 |
gcd_dvd1_nat ~> gcd_dvd1 |
|
697 |
gcd_dvd1_int ~> gcd_dvd1 |
|
698 |
int_numeral ~> of_nat_numeral |
|
699 |
lcm_ac_nat ~> ac_simps |
|
700 |
lcm_ac_int ~> ac_simps |
|
701 |
gcd_ac_nat ~> ac_simps |
|
702 |
gcd_ac_int ~> ac_simps |
|
703 |
abs_int_eq ~> abs_of_nat |
|
704 |
zless_int ~> of_nat_less_iff |
|
705 |
zdiff_int ~> of_nat_diff |
|
706 |
zadd_int ~> of_nat_add |
|
707 |
int_mult ~> of_nat_mult |
|
708 |
int_Suc ~> of_nat_Suc |
|
709 |
inj_int ~> inj_of_nat |
|
710 |
int_1 ~> of_nat_1 |
|
711 |
int_0 ~> of_nat_0 |
|
62353
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
712 |
Lcm_empty_nat ~> Lcm_empty |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
713 |
Lcm_empty_int ~> Lcm_empty |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
714 |
Lcm_insert_nat ~> Lcm_insert |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
715 |
Lcm_insert_int ~> Lcm_insert |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
716 |
comp_fun_idem_gcd_nat ~> comp_fun_idem_gcd |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
717 |
comp_fun_idem_gcd_int ~> comp_fun_idem_gcd |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
718 |
comp_fun_idem_lcm_nat ~> comp_fun_idem_lcm |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
719 |
comp_fun_idem_lcm_int ~> comp_fun_idem_lcm |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
720 |
Lcm_eq_0 ~> Lcm_eq_0_I |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
721 |
Lcm0_iff ~> Lcm_0_iff |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
722 |
Lcm_dvd_int ~> Lcm_least |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
723 |
divides_mult_nat ~> divides_mult |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
724 |
divides_mult_int ~> divides_mult |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
725 |
lcm_0_nat ~> lcm_0_right |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
726 |
lcm_0_int ~> lcm_0_right |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
727 |
lcm_0_left_nat ~> lcm_0_left |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
728 |
lcm_0_left_int ~> lcm_0_left |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
729 |
dvd_gcd_D1_nat ~> dvd_gcdD1 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
730 |
dvd_gcd_D1_int ~> dvd_gcdD1 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
731 |
dvd_gcd_D2_nat ~> dvd_gcdD2 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
732 |
dvd_gcd_D2_int ~> dvd_gcdD2 |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
733 |
coprime_dvd_mult_iff_nat ~> coprime_dvd_mult_iff |
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
734 |
coprime_dvd_mult_iff_int ~> coprime_dvd_mult_iff |
62348 | 735 |
realpow_minus_mult ~> power_minus_mult |
736 |
realpow_Suc_le_self ~> power_Suc_le_self |
|
62353
7f927120b5a2
dropped various legacy fact bindings and tuned proofs
haftmann
parents:
62352
diff
changeset
|
737 |
dvd_Gcd, dvd_Gcd_nat, dvd_Gcd_int removed in favour of Gcd_greatest |
62347 | 738 |
INCOMPATIBILITY. |
739 |
||
62479 | 740 |
* Session HOL-NSA has been renamed to HOL-Nonstandard_Analysis. |
741 |
||
62975
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
742 |
* In HOL-Probability the type of emeasure and nn_integral was changed |
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
743 |
from ereal to ennreal: |
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
744 |
emeasure :: 'a measure => 'a set => ennreal |
1d066f6ab25d
Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents:
62969
diff
changeset
|
745 |
nn_integral :: 'a measure => ('a => ennreal) => ennreal |
62976 | 746 |
INCOMPATIBILITY. |
62327 | 747 |
|
63198
c583ca33076a
ad-hoc overloading for standard operations on type Rat.rat;
wenzelm
parents:
63184
diff
changeset
|
748 |
|
62498 | 749 |
*** ML *** |
750 |
||
63669 | 751 |
* ML antiquotation @{path} is superseded by @{file}, which ensures that |
752 |
the argument is a plain file. Minor INCOMPATIBILITY. |
|
753 |
||
63227
d3ed7f00e818
Integer.lcm normalizes the sign as in HOL/GCD.thy;
wenzelm
parents:
63226
diff
changeset
|
754 |
* Integer.gcd and Integer.lcm use efficient operations from the Poly/ML |
63228 | 755 |
library (notably for big integers). Subtle change of semantics: |
756 |
Integer.gcd and Integer.lcm both normalize the sign, results are never |
|
757 |
negative. This coincides with the definitions in HOL/GCD.thy. |
|
758 |
INCOMPATIBILITY. |
|
63227
d3ed7f00e818
Integer.lcm normalizes the sign as in HOL/GCD.thy;
wenzelm
parents:
63226
diff
changeset
|
759 |
|
63212 | 760 |
* Structure Rat for rational numbers is now an integral part of |
63215 | 761 |
Isabelle/ML, with special notation @int/nat or @int for numerals (an |
762 |
abbreviation for antiquotation @{Pure.rat argument}) and ML pretty |
|
63212 | 763 |
printing. Standard operations on type Rat.rat are provided via ad-hoc |
63215 | 764 |
overloading of + - * / < <= > >= ~ abs. INCOMPATIBILITY, need to |
63212 | 765 |
use + instead of +/ etc. Moreover, exception Rat.DIVZERO has been |
766 |
superseded by General.Div. |
|
63198
c583ca33076a
ad-hoc overloading for standard operations on type Rat.rat;
wenzelm
parents:
63184
diff
changeset
|
767 |
|
62861 | 768 |
* The ML function "ML" provides easy access to run-time compilation. |
769 |
This is particularly useful for conditional compilation, without |
|
770 |
requiring separate files. |
|
771 |
||
62851 | 772 |
* Low-level ML system structures (like PolyML and RunCall) are no longer |
62886
72c475e03e22
simplified bootstrap: critical structures remain accessible in ML_Root context;
wenzelm
parents:
62875
diff
changeset
|
773 |
exposed to Isabelle/ML user-space. Potential INCOMPATIBILITY. |
62851 | 774 |
|
62662
291cc01f56f5
@{make_string} is available during Pure bootstrap;
wenzelm
parents:
62645
diff
changeset
|
775 |
* Antiquotation @{make_string} is available during Pure bootstrap -- |
291cc01f56f5
@{make_string} is available during Pure bootstrap;
wenzelm
parents:
62645
diff
changeset
|
776 |
with approximative output quality. |
291cc01f56f5
@{make_string} is available during Pure bootstrap;
wenzelm
parents:
62645
diff
changeset
|
777 |
|
62498 | 778 |
* Option ML_exception_debugger controls detailed exception trace via the |
779 |
Poly/ML debugger. Relevant ML modules need to be compiled beforehand |
|
780 |
with ML_file_debug, or with ML_file and option ML_debugger enabled. Note |
|
781 |
debugger information requires consirable time and space: main |
|
782 |
Isabelle/HOL with full debugger support may need ML_system_64. |
|
783 |
||
62514 | 784 |
* Local_Theory.restore has been renamed to Local_Theory.reset to |
785 |
emphasize its disruptive impact on the cumulative context, notably the |
|
786 |
scope of 'private' or 'qualified' names. Note that Local_Theory.reset is |
|
787 |
only appropriate when targets are managed, e.g. starting from a global |
|
788 |
theory and returning to it. Regular definitional packages should use |
|
789 |
balanced blocks of Local_Theory.open_target versus |
|
790 |
Local_Theory.close_target instead. Rare INCOMPATIBILITY. |
|
791 |
||
62519 | 792 |
* Structure TimeLimit (originally from the SML/NJ library) has been |
793 |
replaced by structure Timeout, with slightly different signature. |
|
794 |
INCOMPATIBILITY. |
|
795 |
||
62551 | 796 |
* Discontinued cd and pwd operations, which are not well-defined in a |
797 |
multi-threaded environment. Note that files are usually located |
|
798 |
relatively to the master directory of a theory (see also |
|
799 |
File.full_path). Potential INCOMPATIBILITY. |
|
800 |
||
63352 | 801 |
* Binding.empty_atts supersedes Thm.empty_binding and |
802 |
Attrib.empty_binding. Minor INCOMPATIBILITY. |
|
803 |
||
62498 | 804 |
|
62354 | 805 |
*** System *** |
806 |
||
62840
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
807 |
* Many Isabelle tools that require a Java runtime system refer to the |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
808 |
settings ISABELLE_TOOL_JAVA_OPTIONS32 / ISABELLE_TOOL_JAVA_OPTIONS64, |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
809 |
depending on the underlying platform. The settings for "isabelle build" |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
810 |
ISABELLE_BUILD_JAVA_OPTIONS32 / ISABELLE_BUILD_JAVA_OPTIONS64 have been |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
811 |
discontinued. Potential INCOMPATIBILITY. |
d9744f41a4ec
renamed ISABELLE_BUILD_JAVA_OPTIONS to ISABELLE_TOOL_JAVA_OPTIONS;
wenzelm
parents:
62807
diff
changeset
|
812 |
|
62591 | 813 |
* The Isabelle system environment always ensures that the main |
814 |
executables are found within the shell search $PATH: "isabelle" and |
|
815 |
"isabelle_scala_script". |
|
816 |
||
63226 | 817 |
* Isabelle tools may consist of .scala files: the Scala compiler is |
818 |
invoked on the spot. The source needs to define some object that extends |
|
819 |
Isabelle_Tool.Body. |
|
820 |
||
62591 | 821 |
* The Isabelle ML process is now managed directly by Isabelle/Scala, and |
822 |
shell scripts merely provide optional command-line access. In |
|
823 |
particular: |
|
824 |
||
825 |
. Scala module ML_Process to connect to the raw ML process, |
|
826 |
with interaction via stdin/stdout/stderr or in batch mode; |
|
827 |
. command-line tool "isabelle console" as interactive wrapper; |
|
828 |
. command-line tool "isabelle process" as batch mode wrapper. |
|
62588
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
829 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
830 |
* The executable "isabelle_process" has been discontinued. Tools and |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
831 |
prover front-ends should use ML_Process or Isabelle_Process in |
62591 | 832 |
Isabelle/Scala. INCOMPATIBILITY. |
62588
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
833 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
834 |
* New command-line tool "isabelle process" supports ML evaluation of |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
835 |
literal expressions (option -e) or files (option -f) in the context of a |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
836 |
given heap image. Errors lead to premature exit of the ML process with |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
837 |
return code 1. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
838 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
839 |
* Command-line tool "isabelle console" provides option -r to help to |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
840 |
bootstrapping Isabelle/Pure interactively. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
841 |
|
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
842 |
* Command-line tool "isabelle yxml" has been discontinued. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
843 |
INCOMPATIBILITY, use operations from the modules "XML" and "YXML" in |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
844 |
Isabelle/ML or Isabelle/Scala. |
cd266473b81b
isabelle_process is superseded by "isabelle process" tool;
wenzelm
parents:
62579
diff
changeset
|
845 |
|
62549
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
846 |
* File.bash_string, File.bash_path etc. represent Isabelle/ML and |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
847 |
Isabelle/Scala strings authentically within GNU bash. This is useful to |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
848 |
produce robust shell scripts under program control, without worrying |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
849 |
about spaces or special characters. Note that user output works via |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
850 |
Path.print (ML) or Path.toString (Scala). INCOMPATIBILITY, the old (and |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
851 |
less versatile) operations File.shell_quote, File.shell_path etc. have |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
852 |
been discontinued. |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
62525
diff
changeset
|
853 |
|
62591 | 854 |
* SML/NJ and old versions of Poly/ML are no longer supported. |
855 |
||
62642 | 856 |
* Poly/ML heaps now follow the hierarchy of sessions, and thus require |
857 |
much less disk space. |
|
858 |
||
62354 | 859 |
|
860 |
||
62031 | 861 |
New in Isabelle2016 (February 2016) |
62016 | 862 |
----------------------------------- |
60138 | 863 |
|
61337 | 864 |
*** General *** |
865 |
||
62168
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
866 |
* Eisbach is now based on Pure instead of HOL. Objects-logics may import |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
867 |
either the theory ~~/src/HOL/Eisbach/Eisbach (for HOL etc.) or |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
868 |
~~/src/HOL/Eisbach/Eisbach_Old_Appl_Syntax (for FOL, ZF etc.). Note that |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
869 |
the HOL-Eisbach session located in ~~/src/HOL/Eisbach/ contains further |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
870 |
examples that do require HOL. |
e97452d79102
Eisbach works for other object-logics, e.g. Eisbach_FOL.thy;
wenzelm
parents:
62163
diff
changeset
|
871 |
|
62157 | 872 |
* Better resource usage on all platforms (Linux, Windows, Mac OS X) for |
873 |
both Isabelle/ML and Isabelle/Scala. Slightly reduced heap space usage. |
|
874 |
||
62017 | 875 |
* Former "xsymbols" syntax with Isabelle symbols is used by default, |
876 |
without any special print mode. Important ASCII replacement syntax |
|
877 |
remains available under print mode "ASCII", but less important syntax |
|
878 |
has been removed (see below). |
|
879 |
||
62109 | 880 |
* Support for more arrow symbols, with rendering in LaTeX and Isabelle |
881 |
fonts: \<Lleftarrow> \<Rrightarrow> \<longlongleftarrow> \<longlongrightarrow> \<longlonglongleftarrow> \<longlonglongrightarrow>. |
|
62017 | 882 |
|
62108
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
883 |
* Special notation \<struct> for the first implicit 'structure' in the |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
884 |
context has been discontinued. Rare INCOMPATIBILITY, use explicit |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
885 |
structure name instead, notably in indexed notation with block-subscript |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
886 |
(e.g. \<odot>\<^bsub>A\<^esub>). |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
887 |
|
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
888 |
* The glyph for \<diamond> in the IsabelleText font now corresponds better to its |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
889 |
counterpart \<box> as quantifier-like symbol. A small diamond is available as |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
890 |
\<diamondop>; the old symbol \<struct> loses this rendering and any special |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
891 |
meaning. |
0046bacc5f5b
\<struct> loses its rendering and is superseded by \<diamondop>;
wenzelm
parents:
62107
diff
changeset
|
892 |
|
62017 | 893 |
* Syntax for formal comments "-- text" now also supports the symbolic |
894 |
form "\<comment> text". Command-line tool "isabelle update_cartouches -c" helps |
|
895 |
to update old sources. |
|
896 |
||
61337 | 897 |
* Toplevel theorem statements have been simplified as follows: |
898 |
||
899 |
theorems ~> lemmas |
|
900 |
schematic_lemma ~> schematic_goal |
|
901 |
schematic_theorem ~> schematic_goal |
|
902 |
schematic_corollary ~> schematic_goal |
|
903 |
||
904 |
Command-line tool "isabelle update_theorems" updates theory sources |
|
905 |
accordingly. |
|
906 |
||
61338 | 907 |
* Toplevel theorem statement 'proposition' is another alias for |
908 |
'theorem'. |
|
909 |
||
62169 | 910 |
* The old 'defs' command has been removed (legacy since Isabelle2014). |
911 |
INCOMPATIBILITY, use regular 'definition' instead. Overloaded and/or |
|
912 |
deferred definitions require a surrounding 'overloading' block. |
|
913 |
||
61337 | 914 |
|
60610
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
915 |
*** Prover IDE -- Isabelle/Scala/jEdit *** |
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
916 |
|
60986 | 917 |
* IDE support for the source-level debugger of Poly/ML, to work with |
62253 | 918 |
Isabelle/ML and official Standard ML. Option "ML_debugger" and commands |
919 |
'ML_file_debug', 'ML_file_no_debug', 'SML_file_debug', |
|
920 |
'SML_file_no_debug' control compilation of sources with or without |
|
921 |
debugging information. The Debugger panel allows to set breakpoints (via |
|
922 |
context menu), step through stopped threads, evaluate local ML |
|
923 |
expressions etc. At least one Debugger view needs to be active to have |
|
924 |
any effect on the running ML program. |
|
60984 | 925 |
|
61803 | 926 |
* The State panel manages explicit proof state output, with dynamic |
927 |
auto-update according to cursor movement. Alternatively, the jEdit |
|
928 |
action "isabelle.update-state" (shortcut S+ENTER) triggers manual |
|
929 |
update. |
|
61729 | 930 |
|
931 |
* The Output panel no longer shows proof state output by default, to |
|
932 |
avoid GUI overcrowding. INCOMPATIBILITY, use the State panel instead or |
|
933 |
enable option "editor_output_state". |
|
61215 | 934 |
|
61803 | 935 |
* The text overview column (status of errors, warnings etc.) is updated |
936 |
asynchronously, leading to much better editor reactivity. Moreover, the |
|
937 |
full document node content is taken into account. The width of the |
|
938 |
column is scaled according to the main text area font, for improved |
|
939 |
visibility. |
|
940 |
||
941 |
* The main text area no longer changes its color hue in outdated |
|
942 |
situations. The text overview column takes over the role to indicate |
|
943 |
unfinished edits in the PIDE pipeline. This avoids flashing text display |
|
944 |
due to ad-hoc updates by auxiliary GUI components, such as the State |
|
945 |
panel. |
|
946 |
||
62254
81cbea2babd9
tuned NEWS: long-running tasks can still prevent urgent tasks from being started, due to start_execution pri = 0;
wenzelm
parents:
62253
diff
changeset
|
947 |
* Slightly improved scheduling for urgent print tasks (e.g. command |
81cbea2babd9
tuned NEWS: long-running tasks can still prevent urgent tasks from being started, due to start_execution pri = 0;
wenzelm
parents:
62253
diff
changeset
|
948 |
state output, interactive queries) wrt. long-running background tasks. |
62017 | 949 |
|
950 |
* Completion of symbols via prefix of \<name> or \<^name> or \name is |
|
951 |
always possible, independently of the language context. It is never |
|
952 |
implicit: a popup will show up unconditionally. |
|
953 |
||
954 |
* Additional abbreviations for syntactic completion may be specified in |
|
955 |
$ISABELLE_HOME/etc/abbrevs and $ISABELLE_HOME_USER/etc/abbrevs, with |
|
956 |
support for simple templates using ASCII 007 (bell) as placeholder. |
|
957 |
||
62234
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
958 |
* Symbols \<oplus>, \<Oplus>, \<otimes>, \<Otimes>, \<odot>, \<Odot>, \<ominus>, \<oslash> no longer provide abbreviations for |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
959 |
completion like "+o", "*o", ".o" etc. -- due to conflicts with other |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
960 |
ASCII syntax. INCOMPATIBILITY, use plain backslash-completion or define |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
961 |
suitable abbreviations in $ISABELLE_HOME_USER/etc/abbrevs. |
7cc9d7b822ae
discontinued irregular abbrevs: ".o" counts as word, "+o", "*o", "-o" are occasionally used as ASCII notation, "*o" is in conflict with "(*o" in comments;
wenzelm
parents:
62231
diff
changeset
|
962 |
|
61483 | 963 |
* Action "isabelle-emph" (with keyboard shortcut C+e LEFT) controls |
964 |
emphasized text style; the effect is visible in document output, not in |
|
965 |
the editor. |
|
966 |
||
967 |
* Action "isabelle-reset" now uses keyboard shortcut C+e BACK_SPACE, |
|
968 |
instead of former C+e LEFT. |
|
969 |
||
61512
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
970 |
* The command-line tool "isabelle jedit" and the isabelle.Main |
62027 | 971 |
application wrapper treat the default $USER_HOME/Scratch.thy more |
61512
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
972 |
uniformly, and allow the dummy file argument ":" to open an empty buffer |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
973 |
instead. |
933463440449
more uniform command-line for "isabelle jedit" and the isabelle.Main app wrapper;
wenzelm
parents:
61501
diff
changeset
|
974 |
|
62017 | 975 |
* New command-line tool "isabelle jedit_client" allows to connect to an |
976 |
already running Isabelle/jEdit process. This achieves the effect of |
|
977 |
single-instance applications seen on common GUI desktops. |
|
978 |
||
61529
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
979 |
* The default look-and-feel for Linux is the traditional "Metal", which |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
980 |
works better with GUI scaling for very high-resolution displays (e.g. |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
981 |
4K). Moreover, it is generally more robust than "Nimbus". |
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61520
diff
changeset
|
982 |
|
62163 | 983 |
* Update to jedit-5.3.0, with improved GUI scaling and support of |
984 |
high-resolution displays (e.g. 4K). |
|
985 |
||
62034 | 986 |
* The main Isabelle executable is managed as single-instance Desktop |
987 |
application uniformly on all platforms: Linux, Windows, Mac OS X. |
|
988 |
||
60610
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
wenzelm
parents:
60595
diff
changeset
|
989 |
|
61405 | 990 |
*** Document preparation *** |
991 |
||
63553
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63552
diff
changeset
|
992 |
* Text and ML antiquotation @{locale} for locales, similar to existing |
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63552
diff
changeset
|
993 |
antiquotations for classes. |
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63552
diff
changeset
|
994 |
|
62017 | 995 |
* Commands 'paragraph' and 'subparagraph' provide additional section |
996 |
headings. Thus there are 6 levels of standard headings, as in HTML. |
|
997 |
||
998 |
* Command 'text_raw' has been clarified: input text is processed as in |
|
999 |
'text' (with antiquotations and control symbols). The key difference is |
|
1000 |
the lack of the surrounding isabelle markup environment in output. |
|
1001 |
||
1002 |
* Text is structured in paragraphs and nested lists, using notation that |
|
1003 |
is similar to Markdown. The control symbols for list items are as |
|
1004 |
follows: |
|
1005 |
||
1006 |
\<^item> itemize |
|
1007 |
\<^enum> enumerate |
|
1008 |
\<^descr> description |
|
1009 |
||
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1010 |
* There is a new short form for antiquotations with a single argument |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1011 |
that is a cartouche: \<^name>\<open>...\<close> is equivalent to @{name \<open>...\<close>} and |
61595 | 1012 |
\<open>...\<close> without control symbol is equivalent to @{cartouche \<open>...\<close>}. |
1013 |
\<^name> without following cartouche is equivalent to @{name}. The |
|
61501 | 1014 |
standard Isabelle fonts provide glyphs to render important control |
1015 |
symbols, e.g. "\<^verbatim>", "\<^emph>", "\<^bold>". |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1016 |
|
61595 | 1017 |
* Antiquotations @{noindent}, @{smallskip}, @{medskip}, @{bigskip} with |
1018 |
corresponding control symbols \<^noindent>, \<^smallskip>, \<^medskip>, \<^bigskip> specify spacing formally, using |
|
1019 |
standard LaTeX macros of the same names. |
|
1020 |
||
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1021 |
* Antiquotation @{cartouche} in Isabelle/Pure is the same as @{text}. |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1022 |
Consequently, \<open>...\<close> without any decoration prints literal quasi-formal |
61492 | 1023 |
text. Command-line tool "isabelle update_cartouches -t" helps to update |
1024 |
old sources, by approximative patching of the content of string and |
|
1025 |
cartouche tokens seen in theory sources. |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1026 |
|
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1027 |
* The @{text} antiquotation now ignores the antiquotation option |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1028 |
"source". The given text content is output unconditionally, without any |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1029 |
surrounding quotes etc. Subtle INCOMPATIBILITY, put quotes into the |
61494 | 1030 |
argument where they are really intended, e.g. @{text \<open>"foo"\<close>}. Initial |
1031 |
or terminal spaces are ignored. |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61488
diff
changeset
|
1032 |
|
62017 | 1033 |
* Antiquotations @{emph} and @{bold} output LaTeX source recursively, |
1034 |
adding appropriate text style markup. These may be used in the short |
|
1035 |
form \<^emph>\<open>...\<close> and \<^bold>\<open>...\<close>. |
|
1036 |
||
1037 |
* Document antiquotation @{footnote} outputs LaTeX source recursively, |
|
1038 |
marked as \footnote{}. This may be used in the short form \<^footnote>\<open>...\<close>. |
|
1039 |
||
1040 |
* Antiquotation @{verbatim [display]} supports option "indent". |
|
1041 |
||
1042 |
* Antiquotation @{theory_text} prints uninterpreted theory source text |
|
62231
25f4a9cd8b68
tuned markup, e.g. relevant for Rendering.tooltip;
wenzelm
parents:
62209
diff
changeset
|
1043 |
(Isar outer syntax with command keywords etc.). This may be used in the |
25f4a9cd8b68
tuned markup, e.g. relevant for Rendering.tooltip;
wenzelm
parents:
62209
diff
changeset
|
1044 |
short form \<^theory_text>\<open>...\<close>. @{theory_text [display]} supports option "indent". |
62017 | 1045 |
|
1046 |
* Antiquotation @{doc ENTRY} provides a reference to the given |
|
1047 |
documentation, with a hyperlink in the Prover IDE. |
|
1048 |
||
1049 |
* Antiquotations @{command}, @{method}, @{attribute} print checked |
|
1050 |
entities of the Isar language. |
|
1051 |
||
61471 | 1052 |
* HTML presentation uses the standard IsabelleText font and Unicode |
1053 |
rendering of Isabelle symbols like Isabelle/Scala/jEdit. The former |
|
61488 | 1054 |
print mode "HTML" loses its special meaning. |
61471 | 1055 |
|
61405 | 1056 |
|
60406 | 1057 |
*** Isar *** |
1058 |
||
62205 | 1059 |
* Local goals ('have', 'show', 'hence', 'thus') allow structured rule |
1060 |
statements like fixes/assumes/shows in theorem specifications, but the |
|
1061 |
notation is postfix with keywords 'if' (or 'when') and 'for'. For |
|
60555
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
1062 |
example: |
60414 | 1063 |
|
1064 |
have result: "C x y" |
|
1065 |
if "A x" and "B y" |
|
1066 |
for x :: 'a and y :: 'a |
|
1067 |
<proof> |
|
1068 |
||
60449 | 1069 |
The local assumptions are bound to the name "that". The result is |
1070 |
exported from context of the statement as usual. The above roughly |
|
60414 | 1071 |
corresponds to a raw proof block like this: |
1072 |
||
1073 |
{ |
|
1074 |
fix x :: 'a and y :: 'a |
|
60449 | 1075 |
assume that: "A x" "B y" |
60414 | 1076 |
have "C x y" <proof> |
1077 |
} |
|
1078 |
note result = this |
|
60406 | 1079 |
|
60555
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
1080 |
The keyword 'when' may be used instead of 'if', to indicate 'presume' |
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
1081 |
instead of 'assume' above. |
51a6997b1384
support 'when' statement, which corresponds to 'presume';
wenzelm
parents:
60554
diff
changeset
|
1082 |
|
61733 | 1083 |
* Assumptions ('assume', 'presume') allow structured rule statements |
1084 |
using 'if' and 'for', similar to 'have' etc. above. For example: |
|
61658 | 1085 |
|
1086 |
assume result: "C x y" |
|
1087 |
if "A x" and "B y" |
|
1088 |
for x :: 'a and y :: 'a |
|
1089 |
||
1090 |
This assumes "\<And>x y::'a. A x \<Longrightarrow> B y \<Longrightarrow> C x y" and produces a general |
|
1091 |
result as usual: "A ?x \<Longrightarrow> B ?y \<Longrightarrow> C ?x ?y". |
|
1092 |
||
1093 |
Vacuous quantification in assumptions is omitted, i.e. a for-context |
|
1094 |
only effects propositions according to actual use of variables. For |
|
1095 |
example: |
|
1096 |
||
1097 |
assume "A x" and "B y" for x and y |
|
1098 |
||
1099 |
is equivalent to: |
|
1100 |
||
1101 |
assume "\<And>x. A x" and "\<And>y. B y" |
|
1102 |
||
60595 | 1103 |
* The meaning of 'show' with Pure rule statements has changed: premises |
1104 |
are treated in the sense of 'assume', instead of 'presume'. This means, |
|
62205 | 1105 |
a goal like "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" can be solved completely as |
1106 |
follows: |
|
60595 | 1107 |
|
1108 |
show "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
1109 |
||
1110 |
or: |
|
1111 |
||
1112 |
show "C x" if "A x" "B x" for x |
|
1113 |
||
1114 |
Rare INCOMPATIBILITY, the old behaviour may be recovered as follows: |
|
1115 |
||
1116 |
show "C x" when "A x" "B x" for x |
|
1117 |
||
60459 | 1118 |
* New command 'consider' states rules for generalized elimination and |
1119 |
case splitting. This is like a toplevel statement "theorem obtains" used |
|
1120 |
within a proof body; or like a multi-branch 'obtain' without activation |
|
1121 |
of the local context elements yet. |
|
1122 |
||
60455 | 1123 |
* Proof method "cases" allows to specify the rule as first entry of |
1124 |
chained facts. This is particularly useful with 'consider': |
|
1125 |
||
1126 |
consider (a) A | (b) B | (c) C <proof> |
|
1127 |
then have something |
|
1128 |
proof cases |
|
1129 |
case a |
|
1130 |
then show ?thesis <proof> |
|
1131 |
next |
|
1132 |
case b |
|
1133 |
then show ?thesis <proof> |
|
1134 |
next |
|
1135 |
case c |
|
1136 |
then show ?thesis <proof> |
|
1137 |
qed |
|
1138 |
||
60565 | 1139 |
* Command 'case' allows fact name and attribute specification like this: |
1140 |
||
1141 |
case a: (c xs) |
|
1142 |
case a [attributes]: (c xs) |
|
1143 |
||
1144 |
Facts that are introduced by invoking the case context are uniformly |
|
1145 |
qualified by "a"; the same name is used for the cumulative fact. The old |
|
1146 |
form "case (c xs) [attributes]" is no longer supported. Rare |
|
1147 |
INCOMPATIBILITY, need to adapt uses of case facts in exotic situations, |
|
1148 |
and always put attributes in front. |
|
1149 |
||
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
1150 |
* The standard proof method of commands 'proof' and '..' is now called |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
1151 |
"standard" to make semantically clear what it is; the old name "default" |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
1152 |
is still available as legacy for some time. Documentation now explains |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
1153 |
'..' more accurately as "by standard" instead of "by rule". |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60617
diff
changeset
|
1154 |
|
62017 | 1155 |
* Nesting of Isar goal structure has been clarified: the context after |
1156 |
the initial backwards refinement is retained for the whole proof, within |
|
1157 |
all its context sections (as indicated via 'next'). This is e.g. |
|
1158 |
relevant for 'using', 'including', 'supply': |
|
1159 |
||
1160 |
have "A \<and> A" if a: A for A |
|
1161 |
supply [simp] = a |
|
1162 |
proof |
|
1163 |
show A by simp |
|
1164 |
next |
|
1165 |
show A by simp |
|
1166 |
qed |
|
1167 |
||
1168 |
* Command 'obtain' binds term abbreviations (via 'is' patterns) in the |
|
1169 |
proof body as well, abstracted over relevant parameters. |
|
1170 |
||
1171 |
* Improved type-inference for theorem statement 'obtains': separate |
|
1172 |
parameter scope for of each clause. |
|
1173 |
||
1174 |
* Term abbreviations via 'is' patterns also work for schematic |
|
1175 |
statements: result is abstracted over unknowns. |
|
1176 |
||
60631 | 1177 |
* Command 'subgoal' allows to impose some structure on backward |
1178 |
refinements, to avoid proof scripts degenerating into long of 'apply' |
|
1179 |
sequences. Further explanations and examples are given in the isar-ref |
|
1180 |
manual. |
|
1181 |
||
62017 | 1182 |
* Command 'supply' supports fact definitions during goal refinement |
1183 |
('apply' scripts). |
|
1184 |
||
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
1185 |
* Proof method "goal_cases" turns the current subgoals into cases within |
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
1186 |
the context; the conclusion is bound to variable ?case in each case. For |
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
1187 |
example: |
60617 | 1188 |
|
1189 |
lemma "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
60622 | 1190 |
and "\<And>y z. U y \<Longrightarrow> V z \<Longrightarrow> W y z" |
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
1191 |
proof goal_cases |
60622 | 1192 |
case (1 x) |
1193 |
then show ?case using \<open>A x\<close> \<open>B x\<close> sorry |
|
1194 |
next |
|
1195 |
case (2 y z) |
|
1196 |
then show ?case using \<open>U y\<close> \<open>V z\<close> sorry |
|
1197 |
qed |
|
1198 |
||
1199 |
lemma "\<And>x. A x \<Longrightarrow> B x \<Longrightarrow> C x" |
|
1200 |
and "\<And>y z. U y \<Longrightarrow> V z \<Longrightarrow> W y z" |
|
61166
5976fe402824
renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents:
61158
diff
changeset
|
1201 |
proof goal_cases |
60617 | 1202 |
case prems: 1 |
1203 |
then show ?case using prems sorry |
|
1204 |
next |
|
1205 |
case prems: 2 |
|
1206 |
then show ?case using prems sorry |
|
1207 |
qed |
|
60578 | 1208 |
|
60581 | 1209 |
* The undocumented feature of implicit cases goal1, goal2, goal3, etc. |
60617 | 1210 |
is marked as legacy, and will be removed eventually. The proof method |
1211 |
"goals" achieves a similar effect within regular Isar; often it can be |
|
1212 |
done more adequately by other means (e.g. 'consider'). |
|
60581 | 1213 |
|
62017 | 1214 |
* The vacuous fact "TERM x" may be established "by fact" or as `TERM x` |
1215 |
as well, not just "by this" or "." as before. |
|
60551 | 1216 |
|
60554 | 1217 |
* Method "sleep" succeeds after a real-time delay (in seconds). This is |
1218 |
occasionally useful for demonstration and testing purposes. |
|
1219 |
||
60406 | 1220 |
|
60331 | 1221 |
*** Pure *** |
1222 |
||
61606
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
1223 |
* Qualifiers in locale expressions default to mandatory ('!') regardless |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
1224 |
of the command. Previously, for 'locale' and 'sublocale' the default was |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
1225 |
optional ('?'). The old synatx '!' has been discontinued. |
6d5213bd9709
uniform mandatory qualifier for all locale expressions, including 'statespace' parent;
wenzelm
parents:
61604
diff
changeset
|
1226 |
INCOMPATIBILITY, remove '!' and add '?' as required. |
61565
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
ballarin
parents:
61551
diff
changeset
|
1227 |
|
61566
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents:
61565
diff
changeset
|
1228 |
* Keyword 'rewrites' identifies rewrite morphisms in interpretation |
62017 | 1229 |
commands. Previously, the keyword was 'where'. INCOMPATIBILITY. |
61566
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents:
61565
diff
changeset
|
1230 |
|
61701
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1231 |
* More gentle suppression of syntax along locale morphisms while |
62017 | 1232 |
printing terms. Previously 'abbreviation' and 'notation' declarations |
1233 |
would be suppressed for morphisms except term identity. Now |
|
61701
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1234 |
'abbreviation' is also kept for morphims that only change the involved |
62017 | 1235 |
parameters, and only 'notation' is suppressed. This can be of great help |
1236 |
when working with complex locale hierarchies, because proof states are |
|
1237 |
displayed much more succinctly. It also means that only notation needs |
|
1238 |
to be redeclared if desired, as illustrated by this example: |
|
61701
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1239 |
|
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1240 |
locale struct = fixes composition :: "'a => 'a => 'a" (infixl "\<cdot>" 65) |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1241 |
begin |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1242 |
definition derived (infixl "\<odot>" 65) where ... |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1243 |
end |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1244 |
|
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1245 |
locale morphism = |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1246 |
left: struct composition + right: struct composition' |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1247 |
for composition (infix "\<cdot>" 65) and composition' (infix "\<cdot>''" 65) |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1248 |
begin |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1249 |
notation right.derived ("\<odot>''") |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1250 |
end |
e89cfc004f18
Refine the supression of abbreviations for morphisms that are not identities.
ballarin
parents:
61694
diff
changeset
|
1251 |
|
61895 | 1252 |
* Command 'global_interpretation' issues interpretations into global |
1253 |
theories, with optional rewrite definitions following keyword 'defines'. |
|
1254 |
||
1255 |
* Command 'sublocale' accepts optional rewrite definitions after keyword |
|
61675 | 1256 |
'defines'. |
1257 |
||
61895 | 1258 |
* Command 'permanent_interpretation' has been discontinued. Use |
1259 |
'global_interpretation' or 'sublocale' instead. INCOMPATIBILITY. |
|
61670
301e0b4ecd45
coalesce permanent_interpretation.ML with interpretation.ML
haftmann
parents:
61660
diff
changeset
|
1260 |
|
61252 | 1261 |
* Command 'print_definitions' prints dependencies of definitional |
1262 |
specifications. This functionality used to be part of 'print_theory'. |
|
1263 |
||
60331 | 1264 |
* Configuration option rule_insts_schematic has been discontinued |
62017 | 1265 |
(intermediate legacy feature in Isabelle2015). INCOMPATIBILITY. |
60331 | 1266 |
|
62205 | 1267 |
* Abbreviations in type classes now carry proper sort constraint. Rare |
1268 |
INCOMPATIBILITY in situations where the previous misbehaviour has been |
|
1269 |
exploited. |
|
60347 | 1270 |
|
1271 |
* Refinement of user-space type system in type classes: pseudo-local |
|
62205 | 1272 |
operations behave more similar to abbreviations. Potential |
60347 | 1273 |
INCOMPATIBILITY in exotic situations. |
1274 |
||
1275 |
||
60171 | 1276 |
*** HOL *** |
1277 |
||
62017 | 1278 |
* The 'typedef' command has been upgraded from a partially checked |
1279 |
"axiomatization", to a full definitional specification that takes the |
|
1280 |
global collection of overloaded constant / type definitions into |
|
1281 |
account. Type definitions with open dependencies on overloaded |
|
1282 |
definitions need to be specified as "typedef (overloaded)". This |
|
1283 |
provides extra robustness in theory construction. Rare INCOMPATIBILITY. |
|
1284 |
||
1285 |
* Qualification of various formal entities in the libraries is done more |
|
1286 |
uniformly via "context begin qualified definition ... end" instead of |
|
1287 |
old-style "hide_const (open) ...". Consequently, both the defined |
|
1288 |
constant and its defining fact become qualified, e.g. Option.is_none and |
|
1289 |
Option.is_none_def. Occasional INCOMPATIBILITY in applications. |
|
1290 |
||
1291 |
* Some old and rarely used ASCII replacement syntax has been removed. |
|
1292 |
INCOMPATIBILITY, standard syntax with symbols should be used instead. |
|
1293 |
The subsequent commands help to reproduce the old forms, e.g. to |
|
1294 |
simplify porting old theories: |
|
1295 |
||
1296 |
notation iff (infixr "<->" 25) |
|
1297 |
||
1298 |
notation Times (infixr "<*>" 80) |
|
1299 |
||
1300 |
type_notation Map.map (infixr "~=>" 0) |
|
1301 |
notation Map.map_comp (infixl "o'_m" 55) |
|
1302 |
||
1303 |
type_notation FinFun.finfun ("(_ =>f /_)" [22, 21] 21) |
|
1304 |
||
1305 |
notation FuncSet.funcset (infixr "->" 60) |
|
1306 |
notation FuncSet.extensional_funcset (infixr "->\<^sub>E" 60) |
|
1307 |
||
1308 |
notation Omega_Words_Fun.conc (infixr "conc" 65) |
|
1309 |
||
1310 |
notation Preorder.equiv ("op ~~") |
|
1311 |
and Preorder.equiv ("(_/ ~~ _)" [51, 51] 50) |
|
1312 |
||
1313 |
notation (in topological_space) tendsto (infixr "--->" 55) |
|
1314 |
notation (in topological_space) LIMSEQ ("((_)/ ----> (_))" [60, 60] 60) |
|
1315 |
notation LIM ("((_)/ -- (_)/ --> (_))" [60, 0, 60] 60) |
|
1316 |
||
1317 |
notation NSA.approx (infixl "@=" 50) |
|
1318 |
notation NSLIMSEQ ("((_)/ ----NS> (_))" [60, 60] 60) |
|
1319 |
notation NSLIM ("((_)/ -- (_)/ --NS> (_))" [60, 0, 60] 60) |
|
1320 |
||
1321 |
* The alternative notation "\<Colon>" for type and sort constraints has been |
|
1322 |
removed: in LaTeX document output it looks the same as "::". |
|
1323 |
INCOMPATIBILITY, use plain "::" instead. |
|
1324 |
||
1325 |
* Commands 'inductive' and 'inductive_set' work better when names for |
|
1326 |
intro rules are omitted: the "cases" and "induct" rules no longer |
|
1327 |
declare empty case_names, but no case_names at all. This allows to use |
|
1328 |
numbered cases in proofs, without requiring method "goal_cases". |
|
1329 |
||
1330 |
* Inductive definitions ('inductive', 'coinductive', etc.) expose |
|
1331 |
low-level facts of the internal construction only if the option |
|
62093 | 1332 |
"inductive_internals" is enabled. This refers to the internal predicate |
62017 | 1333 |
definition and its monotonicity result. Rare INCOMPATIBILITY. |
1334 |
||
1335 |
* Recursive function definitions ('fun', 'function', 'partial_function') |
|
1336 |
expose low-level facts of the internal construction only if the option |
|
62205 | 1337 |
"function_internals" is enabled. Its internal inductive definition is |
1338 |
also subject to "inductive_internals". Rare INCOMPATIBILITY. |
|
62093 | 1339 |
|
1340 |
* BNF datatypes ('datatype', 'codatatype', etc.) expose low-level facts |
|
1341 |
of the internal construction only if the option "bnf_internals" is |
|
1342 |
enabled. This supersedes the former option "bnf_note_all". Rare |
|
1343 |
INCOMPATIBILITY. |
|
62017 | 1344 |
|
1345 |
* Combinator to represent case distinction on products is named |
|
1346 |
"case_prod", uniformly, discontinuing any input aliasses. Very popular |
|
1347 |
theorem aliasses have been retained. |
|
1348 |
||
61424
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1349 |
Consolidated facts: |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1350 |
PairE ~> prod.exhaust |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1351 |
Pair_eq ~> prod.inject |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1352 |
pair_collapse ~> prod.collapse |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1353 |
Pair_fst_snd_eq ~> prod_eq_iff |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1354 |
split_twice ~> prod.case_distrib |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1355 |
split_weak_cong ~> prod.case_cong_weak |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1356 |
split_split ~> prod.split |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1357 |
split_split_asm ~> prod.split_asm |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1358 |
splitI ~> case_prodI |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1359 |
splitD ~> case_prodD |
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61405
diff
changeset
|
1360 |
splitI2 ~> case_prodI2 |