author | berghofe |
Wed, 16 Apr 2008 11:24:09 +0200 | |
changeset 26681 | 19e1d3c96f2f |
parent 26660 | f978a6f48949 |
child 26718 | 0c652e82fdf4 |
permissions | -rw-r--r-- |
5363 | 1 |
Isabelle NEWS -- history user-relevant changes |
2 |
============================================== |
|
2553 | 3 |
|
25464
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
4 |
New in this Isabelle version |
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
5 |
---------------------------- |
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
6 |
|
25522 | 7 |
*** General *** |
8 |
||
25579
22869d9d545b
(alt)string: allow explicit character codes (as in ML);
wenzelm
parents:
25557
diff
changeset
|
9 |
* Syntax: symbol \<chi> is now considered a letter. Potential |
22869d9d545b
(alt)string: allow explicit character codes (as in ML);
wenzelm
parents:
25557
diff
changeset
|
10 |
INCOMPATIBILITY in identifier syntax etc. |
22869d9d545b
(alt)string: allow explicit character codes (as in ML);
wenzelm
parents:
25557
diff
changeset
|
11 |
|
22869d9d545b
(alt)string: allow explicit character codes (as in ML);
wenzelm
parents:
25557
diff
changeset
|
12 |
* Outer syntax: string tokens may contain arbitrary character codes |
22869d9d545b
(alt)string: allow explicit character codes (as in ML);
wenzelm
parents:
25557
diff
changeset
|
13 |
specified via 3 decimal digits (as in SML). E.g. "foo\095bar" for |
22869d9d545b
(alt)string: allow explicit character codes (as in ML);
wenzelm
parents:
25557
diff
changeset
|
14 |
"foo_bar". |
25522 | 15 |
|
26006
c973b4981276
* Outer syntax: string tokens no longer admit escaped white space;
wenzelm
parents:
25994
diff
changeset
|
16 |
* Outer syntax: string tokens no longer admit escaped white space, |
c973b4981276
* Outer syntax: string tokens no longer admit escaped white space;
wenzelm
parents:
25994
diff
changeset
|
17 |
which was an accidental (undocumented) feature. INCOMPATIBILITY, use |
c973b4981276
* Outer syntax: string tokens no longer admit escaped white space;
wenzelm
parents:
25994
diff
changeset
|
18 |
white space directly. |
c973b4981276
* Outer syntax: string tokens no longer admit escaped white space;
wenzelm
parents:
25994
diff
changeset
|
19 |
|
25994 | 20 |
* Theory loader: use_thy (and similar operations) no longer set the |
21 |
implicit ML context, which was occasionally hard to predict and in |
|
22 |
conflict with concurrency. INCOMPATIBILITY, use ML within Isar which |
|
23 |
provides a proper context already. |
|
24 |
||
26323
73efc70edeef
theory loader: discontinued *attached* ML scripts;
wenzelm
parents:
26315
diff
changeset
|
25 |
* Theory loader: old-style ML proof scripts being *attached* to a thy |
73efc70edeef
theory loader: discontinued *attached* ML scripts;
wenzelm
parents:
26315
diff
changeset
|
26 |
file are no longer supported. INCOMPATIBILITY, regular 'uses' and |
73efc70edeef
theory loader: discontinued *attached* ML scripts;
wenzelm
parents:
26315
diff
changeset
|
27 |
'use' within a theory file will do the job. |
73efc70edeef
theory loader: discontinued *attached* ML scripts;
wenzelm
parents:
26315
diff
changeset
|
28 |
|
26650 | 29 |
* Name space merge now observes canonical order, i.e. the second space |
30 |
is inserted into the first one, while existing entries in the first |
|
26659 | 31 |
space take precedence. INCOMPATIBILITY in rare situations, may try to |
26650 | 32 |
swap theory imports. |
33 |
||
25522 | 34 |
|
25502 | 35 |
*** Pure *** |
36 |
||
26681 | 37 |
* Unused theorems can be found using the new command 'unused_thms'. |
38 |
There are three ways of invoking it: |
|
39 |
||
40 |
(1) unused_thms |
|
41 |
Only finds unused theorems in the current theory. |
|
42 |
||
43 |
(2) unused_thms thy_1 ... thy_n - |
|
44 |
Finds unused theorems in the current theory and all of its ancestors, |
|
45 |
excluding the theories thy_1 ... thy_n and all of their ancestors. |
|
46 |
||
47 |
(3) unused_thms thy_1 ... thy_n - thy'_1 ... thy'_m |
|
48 |
Finds unused theorems in the theories thy'_1 ... thy'_m and all of |
|
49 |
their ancestors, excluding the theories thy_1 ... thy_n and all of |
|
50 |
their ancestors. |
|
51 |
||
52 |
In order to increase the readability of the list produced by unused_thms, |
|
53 |
theorems that have been created by a particular instance of a theory |
|
54 |
command such as inductive or fun(ction) are considered to belong to the |
|
55 |
same "group", meaning that if at least one theorem in this group is used, |
|
56 |
the other theorems in the same group are no longer reported as unused. |
|
57 |
Moreover, if all theorems in the group are unused, only one theorem in |
|
58 |
the group is displayed. |
|
59 |
Note that proof objects have to be switched on in order for unused_thms |
|
60 |
to work properly (i.e. !proofs must be >= 1, which is usually the case |
|
61 |
when using ProofGeneral with the default settings). |
|
62 |
||
26650 | 63 |
* Authentic naming of facts disallows ad-hoc overwriting of previous |
64 |
theorems within the same name space. INCOMPATIBILITY, need to remove |
|
65 |
duplicate fact bindings, or even accidental fact duplications. Note |
|
66 |
that tools may maintain dynamically scoped facts systematically, using |
|
67 |
PureThy.add_thms_dynamic. |
|
68 |
||
26660 | 69 |
* Command 'hide' now allows to hide from "fact" name space as well. |
70 |
||
26496
49ae9456eba9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26495
diff
changeset
|
71 |
* Eliminated destructive theorem database, simpset, claset, and |
49ae9456eba9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26495
diff
changeset
|
72 |
clasimpset. Potential INCOMPATIBILITY, really need to observe linear |
49ae9456eba9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26495
diff
changeset
|
73 |
update of theories within ML code. |
26479 | 74 |
|
26650 | 75 |
* Eliminated theory ProtoPure. Potential INCOMPATIBILITY. |
76 |
||
26495 | 77 |
* Commands 'use' and 'ML' are now purely functional, operating on |
26479 | 78 |
theory/local_theory. Removed former 'ML_setup' (on theory), use 'ML' |
79 |
instead. Added 'ML_val' as mere diagnostic replacement for 'ML'. |
|
80 |
INCOMPATIBILITY. |
|
81 |
||
26434 | 82 |
* Command 'setup': discontinued implicit version. |
83 |
||
25970
9053fd546501
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs here;
wenzelm
parents:
25961
diff
changeset
|
84 |
* Instantiation target allows for simultaneous specification of class |
9053fd546501
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs here;
wenzelm
parents:
25961
diff
changeset
|
85 |
instance operations together with an instantiation proof. |
9053fd546501
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs here;
wenzelm
parents:
25961
diff
changeset
|
86 |
Type-checking phase allows to refer to class operations uniformly. |
9053fd546501
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs here;
wenzelm
parents:
25961
diff
changeset
|
87 |
See HOL/Complex/Complex.thy for an Isar example and |
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
88 |
HOL/Library/Eval.thy for an ML example. |
25502 | 89 |
|
26201
d3363a854708
indexing literal facts: exclude background context;
wenzelm
parents:
26197
diff
changeset
|
90 |
* Indexing of literal facts: be more serious about including only |
d3363a854708
indexing literal facts: exclude background context;
wenzelm
parents:
26197
diff
changeset
|
91 |
facts from the visible specification/proof context, but not the |
d3363a854708
indexing literal facts: exclude background context;
wenzelm
parents:
26197
diff
changeset
|
92 |
background context (locale etc.). Affects `prop` notation and method |
d3363a854708
indexing literal facts: exclude background context;
wenzelm
parents:
26197
diff
changeset
|
93 |
"fact". INCOMPATIBILITY: need to name facts explicitly in rare |
d3363a854708
indexing literal facts: exclude background context;
wenzelm
parents:
26197
diff
changeset
|
94 |
situations. |
d3363a854708
indexing literal facts: exclude background context;
wenzelm
parents:
26197
diff
changeset
|
95 |
|
25502 | 96 |
|
25464
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
97 |
*** HOL *** |
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
98 |
|
26513 | 99 |
* Explicit class "eq" for executable equality. INCOMPATIBILITY. |
100 |
||
26445 | 101 |
* Class finite no longer treats UNIV as class parameter. Use class enum from |
102 |
theory Library/Enum instead to achieve a similar effect. INCOMPATIBILITY. |
|
103 |
||
104 |
* Theory List: rule list_induct2 now has explicitly named cases "Nil" and "Cons". |
|
105 |
INCOMPATIBILITY. |
|
106 |
||
26422
d5883907c514
HOL (and FOL): renamed variables in rules imp_elim and swap;
wenzelm
parents:
26401
diff
changeset
|
107 |
* HOL (and FOL): renamed variables in rules imp_elim and swap. |
d5883907c514
HOL (and FOL): renamed variables in rules imp_elim and swap;
wenzelm
parents:
26401
diff
changeset
|
108 |
Potential INCOMPATIBILITY. |
d5883907c514
HOL (and FOL): renamed variables in rules imp_elim and swap;
wenzelm
parents:
26401
diff
changeset
|
109 |
|
26355 | 110 |
* Theory Product_Type: duplicated lemmas split_Pair_apply and injective_fst_snd |
111 |
removed, use split_eta and prod_eqI instead. Renamed upd_fst to apfst and upd_snd |
|
112 |
to apsnd. INCOMPATIBILITY. |
|
113 |
||
26335
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
114 |
* Theory Nat: removed redundant lemmas that merely duplicate lemmas of |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
115 |
the same name in theory Orderings: |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
116 |
|
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
117 |
less_trans |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
118 |
less_linear |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
119 |
le_imp_less_or_eq |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
120 |
le_less_trans |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
121 |
less_le_trans |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
122 |
less_not_sym |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
123 |
less_asym |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
124 |
|
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
125 |
Renamed less_imp_le to less_imp_le_nat, and less_irrefl to |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
126 |
less_irrefl_nat. Potential INCOMPATIBILITY due to more general types |
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
wenzelm
parents:
26333
diff
changeset
|
127 |
and different variable names. |
26315
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
wenzelm
parents:
26231
diff
changeset
|
128 |
|
26231 | 129 |
* Library/Option_ord.thy: Canonical order on option type. |
130 |
||
26197 | 131 |
* Library/RBT.thy: New theory of red-black trees, an efficient |
132 |
implementation of finite maps. |
|
133 |
||
26231 | 134 |
* Library/Countable.thy: Type class for countable types. |
135 |
||
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
136 |
* Theory Int: The representation of numerals has changed. The infix |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
137 |
operator BIT and the bit datatype with constructors B0 and B1 have |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
138 |
disappeared. INCOMPATIBILITY, use "Int.Bit0 x" and "Int.Bit1 y" in |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
139 |
place of "x BIT bit.B0" and "y BIT bit.B1", respectively. Theorems |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
140 |
involving BIT, B0, or B1 have been renamed with "Bit0" or "Bit1" |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
141 |
accordingly. |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
142 |
|
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
143 |
* Theory Nat: definition of <= and < on natural numbers no longer |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
144 |
depend on well-founded relations. INCOMPATIBILITY. Definitions |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
145 |
le_def and less_def have disappeared. Consider lemmas not_less |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
146 |
[symmetric, where ?'a = nat] and less_eq [symmetric] instead. |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
147 |
|
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
148 |
* Theory Finite_Set: locales ACf, ACe, ACIf, ACIfSL and ACIfSLlin |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
149 |
(whose purpose mainly is for various fold_set functionals) have been |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
150 |
abandoned in favour of the existing algebraic classes |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
151 |
ab_semigroup_mult, comm_monoid_mult, ab_semigroup_idem_mult, |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
152 |
lower_semilattice (resp. upper_semilattice) and linorder. |
26139 | 153 |
INCOMPATIBILITY. |
26041
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
haftmann
parents:
26013
diff
changeset
|
154 |
|
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
155 |
* Theory Transitive_Closure: induct and cases rules now declare proper |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
156 |
case_names ("base" and "step"). INCOMPATIBILITY. |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
157 |
|
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
158 |
* Theorem Inductive.lfp_ordinal_induct generalized to complete |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
159 |
lattices. The form set-specific version is available as |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
160 |
Inductive.lfp_ordinal_induct_set. |
26013
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
haftmann
parents:
26006
diff
changeset
|
161 |
|
25961 | 162 |
* Theorems "power.simps" renamed to "power_int.simps". |
163 |
||
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
164 |
* Class semiring_div provides basic abstract properties of semirings |
25942 | 165 |
with division and modulo operations. Subsumes former class dvd_mod. |
166 |
||
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
167 |
* Merged theories IntDef, Numeral and IntArith into unified theory |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
168 |
Int. INCOMPATIBILITY. |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
169 |
|
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
170 |
* Theory Library/Code_Index: type "index" now represents natural |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
171 |
numbers rather than integers. INCOMPATIBILITY. |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
172 |
|
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
173 |
* New class "uminus" with operation "uminus" (split of from class |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
174 |
"minus" which now only has operation "minus", binary). |
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25900
diff
changeset
|
175 |
INCOMPATIBILITY. |
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25900
diff
changeset
|
176 |
|
25557 | 177 |
* New primrec package. Specification syntax conforms in style to |
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
178 |
definition/function/.... No separate induction rule is provided. The |
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
179 |
"primrec" command distinguishes old-style and new-style specifications |
25599 | 180 |
by syntax. The former primrec package is now named OldPrimrecPackage. |
26355 | 181 |
When adjusting theories, beware: constants stemming from new-style |
25609 | 182 |
primrec specifications have authentic syntax. |
25557 | 183 |
|
25522 | 184 |
* Library/Multiset: {#a, b, c#} abbreviates {#a#} + {#b#} + {#c#}. |
185 |
||
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
186 |
* Library/ListVector: new theory of arithmetic vector operations. |
25900 | 187 |
|
26500 | 188 |
* Library/Order_Relation: new theory of various orderings as sets of pairs. |
189 |
Defines preorders, partial orders, linear orders and well-orders |
|
190 |
on sets and on types. |
|
191 |
||
25522 | 192 |
* Constants "card", "internal_split", "option_map" now with authentic |
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25900
diff
changeset
|
193 |
syntax. INCOMPATIBILITY. |
25522 | 194 |
|
195 |
* Definitions subset_def, psubset_def, set_diff_def, Compl_def, |
|
196 |
le_bool_def, less_bool_def, le_fun_def, less_fun_def, inf_bool_def, |
|
197 |
sup_bool_def, Inf_bool_def, Sup_bool_def, inf_fun_def, sup_fun_def, |
|
198 |
Inf_fun_def, Sup_fun_def, inf_set_def, sup_set_def, Inf_set_def, |
|
199 |
Sup_set_def, le_def, less_def, option_map_def now with object |
|
25919
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
25900
diff
changeset
|
200 |
equality. INCOMPATIBILITY. |
25464
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
201 |
|
26180
cc85eaab20f6
Transitive_Closure: induct and cases rules now declare proper case_names;
wenzelm
parents:
26139
diff
changeset
|
202 |
* Method "induction_scheme" derives user-specified induction rules |
25664 | 203 |
from wellfounded induction and completeness of patterns. This factors |
204 |
out some operations that are done internally by the function package |
|
205 |
and makes them available separately. See "HOL/ex/Induction_Scheme.thy" |
|
206 |
for examples, |
|
207 |
||
25705 | 208 |
* Records. Removed K_record, and replaced it by pure lambda term |
25726
9728f319ffc6
* Metis prover an order of magnitude faster, works with multithreading.
wenzelm
parents:
25712
diff
changeset
|
209 |
%x. c. The simplifier setup is now more robust against eta expansion. |
25705 | 210 |
INCOMPATIBILITY: in cases explicitly referring to K_record. |
25464
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
211 |
|
25726
9728f319ffc6
* Metis prover an order of magnitude faster, works with multithreading.
wenzelm
parents:
25712
diff
changeset
|
212 |
* Metis prover is now an order of magnitude faster, and also works |
9728f319ffc6
* Metis prover an order of magnitude faster, works with multithreading.
wenzelm
parents:
25712
diff
changeset
|
213 |
with multithreading. |
9728f319ffc6
* Metis prover an order of magnitude faster, works with multithreading.
wenzelm
parents:
25712
diff
changeset
|
214 |
|
26562
9d25ef112cf6
* Metis: the maximum number of clauses that can be produced from a theorem is now given by the attribute max_clauses. Theorems that exceed this number are ignored, with a warning printed.
paulson
parents:
26513
diff
changeset
|
215 |
* Metis: the maximum number of clauses that can be produced from a theorem is now given by the attribute max_clauses. Theorems that exceed this number are ignored, with a warning printed. |
9d25ef112cf6
* Metis: the maximum number of clauses that can be produced from a theorem is now given by the attribute max_clauses. Theorems that exceed this number are ignored, with a warning printed.
paulson
parents:
26513
diff
changeset
|
216 |
|
26333
68e5eee47a45
Attributes sledgehammer_full, sledgehammer_modulus, sledgehammer_sorts
paulson
parents:
26323
diff
changeset
|
217 |
* Sledgehammer no longer produces structured proofs by default. To enable, |
68e5eee47a45
Attributes sledgehammer_full, sledgehammer_modulus, sledgehammer_sorts
paulson
parents:
26323
diff
changeset
|
218 |
declare [[sledgehammer_full = true]]. Attributes reconstruction_modulus, |
68e5eee47a45
Attributes sledgehammer_full, sledgehammer_modulus, sledgehammer_sorts
paulson
parents:
26323
diff
changeset
|
219 |
reconstruction_sorts renamed sledgehammer_modulus, sledgehammer_sorts. |
68e5eee47a45
Attributes sledgehammer_full, sledgehammer_modulus, sledgehammer_sorts
paulson
parents:
26323
diff
changeset
|
220 |
INCOMPATIBILITY. |
25726
9728f319ffc6
* Metis prover an order of magnitude faster, works with multithreading.
wenzelm
parents:
25712
diff
changeset
|
221 |
|
26197 | 222 |
*** ZF *** |
223 |
||
224 |
* Renamed theories: |
|
225 |
||
226 |
Datatype.thy -> Datatype_ZF.thy |
|
227 |
Inductive.thy -> Inductive_ZF.thy |
|
228 |
Int.thy -> Int_ZF.thy |
|
229 |
IntDiv.thy -> IntDiv_ZF.thy |
|
230 |
Nat.thy -> Nat_ZF.thy |
|
231 |
List.thy -> List_ZF.thy |
|
232 |
Main.thy -> Main_ZF.thy |
|
233 |
||
234 |
This is to allow to load both ZF and HOL in the same session. |
|
235 |
||
236 |
INCOMPATIBILITY: ZF theories that import individual theories below |
|
237 |
Main might need to be adapted. For compatibility, a new |
|
238 |
"theory Main imports Main_ZF begin end" is provided, so if you just |
|
239 |
imported "Main", no changes are needed. |
|
240 |
||
241 |
||
25737
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
242 |
*** ML *** |
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
243 |
|
26401
e7a94081dce7
Functor NamedThmsFun: data is available to the user as dynamic fact;
wenzelm
parents:
26387
diff
changeset
|
244 |
* Functor NamedThmsFun: data is available to the user as dynamic fact |
e7a94081dce7
Functor NamedThmsFun: data is available to the user as dynamic fact;
wenzelm
parents:
26387
diff
changeset
|
245 |
(of the same name). |
e7a94081dce7
Functor NamedThmsFun: data is available to the user as dynamic fact;
wenzelm
parents:
26387
diff
changeset
|
246 |
|
26387 | 247 |
* Removed obsolete "use_legacy_bindings" function. INCOMPATIBILITY. |
248 |
||
26188 | 249 |
* ML within Isar: antiquotation @{const name} or @{const |
250 |
name(typargs)} produces statically-checked Const term. |
|
251 |
||
25737
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
252 |
* The ``print mode'' is now a thread-local value derived from a global |
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
253 |
template (the former print_mode reference), thus access becomes |
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
254 |
non-critical. The global print_mode reference is for session |
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
255 |
management only; user-code should use print_mode_value, |
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
256 |
print_mode_active, PrintMode.setmp etc. INCOMPATIBILITY. |
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
257 |
|
26222
edf6473ac9e9
* system/system_out provides a robust way to invoke external shell
wenzelm
parents:
26218
diff
changeset
|
258 |
* system/system_out provides a robust way to invoke external shell |
edf6473ac9e9
* system/system_out provides a robust way to invoke external shell
wenzelm
parents:
26218
diff
changeset
|
259 |
commands, with propagation of interrupts (after Poly/ML 5.2). Do not |
edf6473ac9e9
* system/system_out provides a robust way to invoke external shell
wenzelm
parents:
26218
diff
changeset
|
260 |
use OS.Process.system etc. directly. |
edf6473ac9e9
* system/system_out provides a robust way to invoke external shell
wenzelm
parents:
26218
diff
changeset
|
261 |
|
25737
84c92fc48e36
``print mode'' is now a thread-local value derived from a global template;
wenzelm
parents:
25726
diff
changeset
|
262 |
|
25626
3000965b1fdf
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm
parents:
25609
diff
changeset
|
263 |
*** System *** |
3000965b1fdf
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm
parents:
25609
diff
changeset
|
264 |
|
26575 | 265 |
* YXML notation provides a simple and efficient alternative to |
266 |
standard XML transfer syntax. See src/Pure/General/yxml.ML and |
|
267 |
isatool yxml as described in the Isabelle system manual. |
|
268 |
||
269 |
* Removed obsolete THIS_IS_ISABELLE_BUILD feature. NB: the documented |
|
270 |
way of changing the user's settings is via |
|
26218 | 271 |
ISABELLE_HOME_USER/etc/settings, which is a fully featured bash |
272 |
script. |
|
273 |
||
25971 | 274 |
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs --- |
275 |
in accordance with Proof General 3.7, which prefers GNU emacs. |
|
25970
9053fd546501
* Default settings: PROOFGENERAL_OPTIONS no longer impose xemacs here;
wenzelm
parents:
25961
diff
changeset
|
276 |
|
25776
4e4eb0f87850
Multithreading.max_threads := 0 refers to number of cores of underlying machine;
wenzelm
parents:
25772
diff
changeset
|
277 |
* Multithreading.max_threads := 0 refers to the number of actual CPU |
4e4eb0f87850
Multithreading.max_threads := 0 refers to number of cores of underlying machine;
wenzelm
parents:
25772
diff
changeset
|
278 |
cores of the underlying machine, which is a good starting point for |
4e4eb0f87850
Multithreading.max_threads := 0 refers to number of cores of underlying machine;
wenzelm
parents:
25772
diff
changeset
|
279 |
optimal performance tuning. The corresponding usedir option -M allows |
25778 | 280 |
"max" as an alias for "0". WARNING: does not work on certain versions |
281 |
of Mac OS (with Poly/ML 5.1). |
|
25776
4e4eb0f87850
Multithreading.max_threads := 0 refers to number of cores of underlying machine;
wenzelm
parents:
25772
diff
changeset
|
282 |
|
25626
3000965b1fdf
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm
parents:
25609
diff
changeset
|
283 |
* isatool tty runs Isabelle process with plain tty interaction; |
3000965b1fdf
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm
parents:
25609
diff
changeset
|
284 |
optional line editor may be specified via ISABELLE_LINE_EDITOR |
3000965b1fdf
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm
parents:
25609
diff
changeset
|
285 |
setting, the default settings attempt to locate "ledit" and "rlwrap". |
3000965b1fdf
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm
parents:
25609
diff
changeset
|
286 |
|
25651 | 287 |
* isatool browser now works with Cygwin as well, using general |
288 |
"javapath" function defined in Isabelle process environment. |
|
289 |
||
290 |
* isabelle-process: non-ML sessions are run with "nice", to prevent |
|
291 |
Isabelle from flooding interactive front-ends (notably ProofGeneral / |
|
292 |
XEmacs). |
|
293 |
||
25652 | 294 |
* JVM class isabelle.IsabelleProcess (located in Isabelle/lib/classes) |
25651 | 295 |
provides general wrapper for managing an Isabelle process in a robust |
296 |
fashion, with ``cooked'' output from stdin/stderr. |
|
297 |
||
25855 | 298 |
* Rudimentary Isabelle plugin for jEdit (see Isabelle/lib/jedit), |
299 |
based on Isabelle/JVM process wrapper (see Isabelle/lib/classes). |
|
300 |
||
25626
3000965b1fdf
* isatool tty runs Isabelle process with plain tty interaction;
wenzelm
parents:
25609
diff
changeset
|
301 |
|
25464
0ca80ce89001
moved new NEWS from Isabelle2007 to this Isabelle version'';
wenzelm
parents:
25459
diff
changeset
|
302 |
|
25429 | 303 |
New in Isabelle2007 (November 2007) |
304 |
----------------------------------- |
|
17754
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
wenzelm
parents:
17725
diff
changeset
|
305 |
|
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
wenzelm
parents:
17725
diff
changeset
|
306 |
*** General *** |
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
wenzelm
parents:
17725
diff
changeset
|
307 |
|
22826 | 308 |
* More uniform information about legacy features, notably a |
309 |
warning/error of "Legacy feature: ...", depending on the state of the |
|
23367 | 310 |
tolerate_legacy_features flag (default true). FUTURE INCOMPATIBILITY: |
311 |
legacy features will disappear eventually. |
|
22826 | 312 |
|
17918
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
313 |
* Theory syntax: the header format ``theory A = B + C:'' has been |
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
314 |
discontinued in favour of ``theory A imports B C begin''. Use isatool |
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
315 |
fixheaders to convert existing theory files. INCOMPATIBILITY. |
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
316 |
|
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
317 |
* Theory syntax: the old non-Isar theory file format has been |
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
318 |
discontinued altogether. Note that ML proof scripts may still be used |
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
319 |
with Isar theories; migration is usually quite simple with the ML |
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
320 |
function use_legacy_bindings. INCOMPATIBILITY. |
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
321 |
|
22871 | 322 |
* Theory syntax: some popular names (e.g. 'class', 'declaration', |
323 |
'fun', 'help', 'if') are now keywords. INCOMPATIBILITY, use double |
|
324 |
quotes. |
|
19814
faa698d46686
* Theory syntax: some popular names (e.g. "class", "if") are now keywords.
wenzelm
parents:
19783
diff
changeset
|
325 |
|
23888
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
326 |
* Theory loader: be more serious about observing the static theory |
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
327 |
header specifications (including optional directories), but not the |
24172
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
328 |
accidental file locations of previously successful loads. The strict |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
329 |
update policy of former update_thy is now already performed by |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
330 |
use_thy, so the former has been removed; use_thys updates several |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
331 |
theories simultaneously, just as 'imports' within a theory header |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
332 |
specification, but without merging the results. Potential |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
333 |
INCOMPATIBILITY: may need to refine theory headers and commands |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
334 |
ROOT.ML which depend on load order. |
23888
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
335 |
|
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
336 |
* Theory loader: optional support for content-based file |
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
337 |
identification, instead of the traditional scheme of full physical |
23889 | 338 |
path plus date stamp; configured by the ISABELLE_FILE_IDENT setting |
23888
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
339 |
(cf. the system manual). The new scheme allows to work with |
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
340 |
non-finished theories in persistent session images, such that source |
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
341 |
files may be moved later on without requiring reloads. |
babe337cce2d
* Theory loader: be more serious about observing the static theory header specifications;
wenzelm
parents:
23881
diff
changeset
|
342 |
|
24187
8bdf5ca5871f
* Theory loader: old-style ML proof scripts are considered a legacy feature;
wenzelm
parents:
24172
diff
changeset
|
343 |
* Theory loader: old-style ML proof scripts being *attached* to a thy |
8bdf5ca5871f
* Theory loader: old-style ML proof scripts are considered a legacy feature;
wenzelm
parents:
24172
diff
changeset
|
344 |
file (with the same base name as the theory) are considered a legacy |
24800 | 345 |
feature, which will disappear eventually. Even now, the theory loader |
346 |
no longer maintains dependencies on such files. |
|
347 |
||
348 |
* Syntax: the scope for resolving ambiguities via type-inference is |
|
349 |
now limited to individual terms, instead of whole simultaneous |
|
24234
4714e04fb8e9
* Syntax: scope for resolving ambiguities via type-inference is now limited to individual terms;
wenzelm
parents:
24213
diff
changeset
|
350 |
specifications as before. This greatly reduces the complexity of the |
4714e04fb8e9
* Syntax: scope for resolving ambiguities via type-inference is now limited to individual terms;
wenzelm
parents:
24213
diff
changeset
|
351 |
syntax module and improves flexibility by separating parsing and |
4714e04fb8e9
* Syntax: scope for resolving ambiguities via type-inference is now limited to individual terms;
wenzelm
parents:
24213
diff
changeset
|
352 |
type-checking. INCOMPATIBILITY: additional type-constraints (explicit |
4714e04fb8e9
* Syntax: scope for resolving ambiguities via type-inference is now limited to individual terms;
wenzelm
parents:
24213
diff
changeset
|
353 |
'fixes' etc.) are required in rare situations. |
4714e04fb8e9
* Syntax: scope for resolving ambiguities via type-inference is now limited to individual terms;
wenzelm
parents:
24213
diff
changeset
|
354 |
|
25034 | 355 |
* Syntax: constants introduced by new-style packages ('definition', |
356 |
'abbreviation' etc.) are passed through the syntax module in |
|
357 |
``authentic mode''. This means that associated mixfix annotations |
|
358 |
really stick to such constants, independently of potential name space |
|
359 |
ambiguities introduced later on. INCOMPATIBILITY: constants in parse |
|
360 |
trees are represented slightly differently, may need to adapt syntax |
|
361 |
translations accordingly. Use CONST marker in 'translations' and |
|
362 |
@{const_syntax} antiquotation in 'parse_translation' etc. |
|
363 |
||
17981
2602be0d99ae
* Legacy goal package: reduced interface to the bare minimum required to keep existing proof scripts running.
wenzelm
parents:
17918
diff
changeset
|
364 |
* Legacy goal package: reduced interface to the bare minimum required |
2602be0d99ae
* Legacy goal package: reduced interface to the bare minimum required to keep existing proof scripts running.
wenzelm
parents:
17918
diff
changeset
|
365 |
to keep existing proof scripts running. Most other user-level |
2602be0d99ae
* Legacy goal package: reduced interface to the bare minimum required to keep existing proof scripts running.
wenzelm
parents:
17918
diff
changeset
|
366 |
functions are now part of the OldGoals structure, which is *not* open |
2602be0d99ae
* Legacy goal package: reduced interface to the bare minimum required to keep existing proof scripts running.
wenzelm
parents:
17918
diff
changeset
|
367 |
by default (consider isatool expandshort before open OldGoals). |
2602be0d99ae
* Legacy goal package: reduced interface to the bare minimum required to keep existing proof scripts running.
wenzelm
parents:
17918
diff
changeset
|
368 |
Removed top_sg, prin, printyp, pprint_term/typ altogether, because |
2602be0d99ae
* Legacy goal package: reduced interface to the bare minimum required to keep existing proof scripts running.
wenzelm
parents:
17918
diff
changeset
|
369 |
these tend to cause confusion about the actual goal (!) context being |
2602be0d99ae
* Legacy goal package: reduced interface to the bare minimum required to keep existing proof scripts running.
wenzelm
parents:
17918
diff
changeset
|
370 |
used here, which is not necessarily the same as the_context(). |
17918
93e26302733e
* Theory syntax: discontinued non-Isar format and old Isar headers;
wenzelm
parents:
17890
diff
changeset
|
371 |
|
23379
d0e3f790bd73
updated 'find_theorems' -- moved ProofGeneral specifics to ProofGeneral/CHANGES;
wenzelm
parents:
23377
diff
changeset
|
372 |
* Command 'find_theorems': supports "*" wild-card in "name:" |
d0e3f790bd73
updated 'find_theorems' -- moved ProofGeneral specifics to ProofGeneral/CHANGES;
wenzelm
parents:
23377
diff
changeset
|
373 |
criterion; "with_dups" option. Certain ProofGeneral versions might |
d0e3f790bd73
updated 'find_theorems' -- moved ProofGeneral specifics to ProofGeneral/CHANGES;
wenzelm
parents:
23377
diff
changeset
|
374 |
support a specific search form (see ProofGeneral/CHANGES). |
22965 | 375 |
|
20370 | 376 |
* The ``prems limit'' option (cf. ProofContext.prems_limit) is now -1 |
377 |
by default, which means that "prems" (and also "fixed variables") are |
|
378 |
suppressed from proof state output. Note that the ProofGeneral |
|
379 |
settings mechanism allows to change and save options persistently, but |
|
380 |
older versions of Isabelle will fail to start up if a negative prems |
|
381 |
limit is imposed. |
|
382 |
||
21308
73883a528b26
* Local theory targets ``context/locale/class ... begin'' followed by ``end''.
wenzelm
parents:
21265
diff
changeset
|
383 |
* Local theory targets may be specified by non-nested blocks of |
73883a528b26
* Local theory targets ``context/locale/class ... begin'' followed by ``end''.
wenzelm
parents:
21265
diff
changeset
|
384 |
``context/locale/class ... begin'' followed by ``end''. The body may |
73883a528b26
* Local theory targets ``context/locale/class ... begin'' followed by ``end''.
wenzelm
parents:
21265
diff
changeset
|
385 |
contain definitions, theorems etc., including any derived mechanism |
73883a528b26
* Local theory targets ``context/locale/class ... begin'' followed by ``end''.
wenzelm
parents:
21265
diff
changeset
|
386 |
that has been implemented on top of these primitives. This concept |
73883a528b26
* Local theory targets ``context/locale/class ... begin'' followed by ``end''.
wenzelm
parents:
21265
diff
changeset
|
387 |
generalizes the existing ``theorem (in ...)'' towards more versatility |
73883a528b26
* Local theory targets ``context/locale/class ... begin'' followed by ``end''.
wenzelm
parents:
21265
diff
changeset
|
388 |
and scalability. |
73883a528b26
* Local theory targets ``context/locale/class ... begin'' followed by ``end''.
wenzelm
parents:
21265
diff
changeset
|
389 |
|
21960
0574f192b78a
* Proof General: proper undo of final 'end'; discontinued Isabelle/classic;
wenzelm
parents:
21896
diff
changeset
|
390 |
* Proof General interface: proper undo of final 'end' command; |
0574f192b78a
* Proof General: proper undo of final 'end'; discontinued Isabelle/classic;
wenzelm
parents:
21896
diff
changeset
|
391 |
discontinued Isabelle/classic mode (ML proof scripts). |
0574f192b78a
* Proof General: proper undo of final 'end'; discontinued Isabelle/classic;
wenzelm
parents:
21896
diff
changeset
|
392 |
|
17754
58a306d9f736
* Command 'find_theorems': support * wildcard in name: criterion.
wenzelm
parents:
17725
diff
changeset
|
393 |
|
17865 | 394 |
*** Document preparation *** |
395 |
||
21717 | 396 |
* Added antiquotation @{theory name} which prints the given name, |
397 |
after checking that it refers to a valid ancestor theory in the |
|
398 |
current context. |
|
21339 | 399 |
|
17869 | 400 |
* Added antiquotations @{ML_type text} and @{ML_struct text} which |
401 |
check the given source text as ML type/structure, printing verbatim. |
|
17865 | 402 |
|
21717 | 403 |
* Added antiquotation @{abbrev "c args"} which prints the abbreviation |
404 |
"c args == rhs" given in the current context. (Any number of |
|
21735 | 405 |
arguments may be given on the LHS.) |
21717 | 406 |
|
407 |
||
17779 | 408 |
*** Pure *** |
409 |
||
24800 | 410 |
* The 'class' package offers a combination of axclass and locale to |
25129 | 411 |
achieve Haskell-like type classes in Isabelle. Definitions and |
412 |
theorems within a class context produce both relative results (with |
|
413 |
implicit parameters according to the locale context), and polymorphic |
|
414 |
constants with qualified polymorphism (according to the class |
|
415 |
context). Within the body context of a 'class' target, a separate |
|
416 |
syntax layer ("user space type system") takes care of converting |
|
417 |
between global polymorphic consts and internal locale representation. |
|
25177 | 418 |
See src/HOL/ex/Classpackage.thy for examples (as well as main HOL). |
25184 | 419 |
"isatool doc classes" provides a tutorial. |
20807 | 420 |
|
25199 | 421 |
* Generic code generator framework allows to generate executable |
24800 | 422 |
code for ML and Haskell (including Isabelle classes). A short usage |
423 |
sketch: |
|
20188
8b22026445af
added notes on class_package.ML and codegen_package.ML
haftmann
parents:
20169
diff
changeset
|
424 |
|
8b22026445af
added notes on class_package.ML and codegen_package.ML
haftmann
parents:
20169
diff
changeset
|
425 |
internal compilation: |
25199 | 426 |
export_code <list of constants (term syntax)> in SML |
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
427 |
writing SML code to a file: |
25199 | 428 |
export_code <list of constants (term syntax)> in SML <filename> |
22735 | 429 |
writing OCaml code to a file: |
25199 | 430 |
export_code <list of constants (term syntax)> in OCaml <filename> |
20188
8b22026445af
added notes on class_package.ML and codegen_package.ML
haftmann
parents:
20169
diff
changeset
|
431 |
writing Haskell code to a bunch of files: |
25199 | 432 |
export_code <list of constants (term syntax)> in Haskell <filename> |
433 |
||
434 |
evaluating closed propositions to True/False using code generation: |
|
25184 | 435 |
method ``eval'' |
436 |
||
437 |
Reasonable default setup of framework in HOL. |
|
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
438 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
439 |
Theorem attributs for selecting and transforming function equations theorems: |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
440 |
|
22845 | 441 |
[code fun]: select a theorem as function equation for a specific constant |
442 |
[code fun del]: deselect a theorem as function equation for a specific constant |
|
443 |
[code inline]: select an equation theorem for unfolding (inlining) in place |
|
444 |
[code inline del]: deselect an equation theorem for unfolding (inlining) in place |
|
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
445 |
|
22735 | 446 |
User-defined serializations (target in {SML, OCaml, Haskell}): |
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
447 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
448 |
code_const <and-list of constants (term syntax)> |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
449 |
{(target) <and-list of const target syntax>}+ |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
450 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
451 |
code_type <and-list of type constructors> |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
452 |
{(target) <and-list of type target syntax>}+ |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
453 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
454 |
code_instance <and-list of instances> |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
455 |
{(target)}+ |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
456 |
where instance ::= <type constructor> :: <class> |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
457 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
458 |
code_class <and_list of classes> |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
459 |
{(target) <and-list of class target syntax>}+ |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
460 |
where class target syntax ::= <class name> {where {<classop> == <target syntax>}+}? |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20375
diff
changeset
|
461 |
|
25199 | 462 |
code_instance and code_class only are effective to target Haskell. |
22735 | 463 |
|
25177 | 464 |
For example usage see src/HOL/ex/Codegenerator.thy and |
465 |
src/HOL/ex/Codegenerator_Pretty.thy. A separate tutorial on code |
|
24800 | 466 |
generation from Isabelle/HOL theories is available via "isatool doc |
467 |
codegen". |
|
20188
8b22026445af
added notes on class_package.ML and codegen_package.ML
haftmann
parents:
20169
diff
changeset
|
468 |
|
25129 | 469 |
* Code generator: consts in 'consts_code' Isar commands are now |
470 |
referred to by usual term syntax (including optional type |
|
471 |
annotations). |
|
472 |
||
19254 | 473 |
* Command 'no_translations' removes translation rules from theory |
474 |
syntax. |
|
475 |
||
19625
285771cec083
* Pure: overloaded definitions are now actually checked for acyclic dependencies;
wenzelm
parents:
19587
diff
changeset
|
476 |
* Overloaded definitions are now actually checked for acyclic |
19714 | 477 |
dependencies. The overloading scheme is slightly more general than |
478 |
that of Haskell98, although Isabelle does not demand an exact |
|
479 |
correspondence to type class and instance declarations. |
|
480 |
INCOMPATIBILITY, use ``defs (unchecked overloaded)'' to admit more |
|
481 |
exotic versions of overloading -- at the discretion of the user! |
|
19711 | 482 |
|
483 |
Polymorphic constants are represented via type arguments, i.e. the |
|
484 |
instantiation that matches an instance against the most general |
|
485 |
declaration given in the signature. For example, with the declaration |
|
486 |
c :: 'a => 'a => 'a, an instance c :: nat => nat => nat is represented |
|
487 |
as c(nat). Overloading is essentially simultaneous structural |
|
488 |
recursion over such type arguments. Incomplete specification patterns |
|
19714 | 489 |
impose global constraints on all occurrences, e.g. c('a * 'a) on the |
19715 | 490 |
LHS means that more general c('a * 'b) will be disallowed on any RHS. |
19714 | 491 |
Command 'print_theory' outputs the normalized system of recursive |
492 |
equations, see section "definitions". |
|
19625
285771cec083
* Pure: overloaded definitions are now actually checked for acyclic dependencies;
wenzelm
parents:
19587
diff
changeset
|
493 |
|
24086 | 494 |
* Configuration options are maintained within the theory or proof |
495 |
context (with name and type bool/int/string), providing a very simple |
|
496 |
interface to a poor-man's version of general context data. Tools may |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
497 |
declare options in ML (e.g. using Attrib.config_int) and then refer to |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
498 |
these values using Config.get etc. Users may change options via an |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
499 |
associated attribute of the same name. This form of context |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
500 |
declaration works particularly well with commands 'declare' or |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
501 |
'using', for example ``declare [[foo = 42]]''. Thus it has become |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
502 |
very easy to avoid global references, which would not observe Isar |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
503 |
toplevel undo/redo and fail to work with multithreading. |
24086 | 504 |
|
24172
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
505 |
Various global ML references of Pure and HOL have been turned into |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
506 |
configuration options: |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
507 |
|
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
508 |
Unify.search_bound unify_search_bound |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
509 |
Unify.trace_bound unify_trace_bound |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
510 |
Unify.trace_simp unify_trace_simp |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
511 |
Unify.trace_types unify_trace_types |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
512 |
Simplifier.simp_depth_limit simp_depth_limit |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
513 |
Blast.depth_limit blast_depth_limit |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
514 |
DatatypeProp.dtK datatype_distinctness_limit |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
515 |
fast_arith_neq_limit fast_arith_neq_limit |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
516 |
fast_arith_split_limit fast_arith_split_limit |
06e42cf7df4e
theory loader: added use_thys, removed obsolete update_thy;
wenzelm
parents:
24110
diff
changeset
|
517 |
|
24086 | 518 |
* Named collections of theorems may be easily installed as context |
24800 | 519 |
data using the functor NamedThmsFun (see also |
24086 | 520 |
src/Pure/Tools/named_thms.ML). The user may add or delete facts via |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
521 |
attributes; there is also a toplevel print command. This facility is |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
522 |
just a common case of general context data, which is the preferred way |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
523 |
for anything more complex than just a list of facts in canonical |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24086
diff
changeset
|
524 |
order. |
24086 | 525 |
|
24032 | 526 |
* Isar: command 'declaration' augments a local theory by generic |
527 |
declaration functions written in ML. This enables arbitrary content |
|
528 |
being added to the context, depending on a morphism that tells the |
|
529 |
difference of the original declaration context wrt. the application |
|
530 |
context encountered later on. |
|
531 |
||
532 |
* Isar: proper interfaces for simplification procedures. Command |
|
533 |
'simproc_setup' declares named simprocs (with match patterns, and body |
|
534 |
text in ML). Attribute "simproc" adds/deletes simprocs in the current |
|
535 |
context. ML antiquotation @{simproc name} retrieves named simprocs. |
|
536 |
||
537 |
* Isar: an extra pair of brackets around attribute declarations |
|
538 |
abbreviates a theorem reference involving an internal dummy fact, |
|
539 |
which will be ignored later --- only the effect of the attribute on |
|
540 |
the background context will persist. This form of in-place |
|
541 |
declarations is particularly useful with commands like 'declare' and |
|
542 |
'using', for example ``have A using [[simproc a]] by simp''. |
|
543 |
||
23369
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
544 |
* Isar: method "assumption" (and implicit closing of subproofs) now |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
545 |
takes simple non-atomic goal assumptions into account: after applying |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
546 |
an assumption as a rule the resulting subgoals are solved by atomic |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
547 |
assumption steps. This is particularly useful to finish 'obtain' |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
548 |
goals, such as "!!x. (!!x. P x ==> thesis) ==> P x ==> thesis", |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
549 |
without referring to the original premise "!!x. P x ==> thesis" in the |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
550 |
Isar proof context. POTENTIAL INCOMPATIBILITY: method "assumption" is |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
551 |
more permissive. |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
552 |
|
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
553 |
* Isar: implicit use of prems from the Isar proof context is |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
554 |
considered a legacy feature. Common applications like ``have A .'' |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
555 |
may be replaced by ``have A by fact'' or ``note `A`''. In general, |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
556 |
referencing facts explicitly here improves readability and |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
557 |
maintainability of proof texts. |
227c51012cdb
* Isar: method "assumption" (implicit closing of subproofs) takes non-atomic goal assumptions into account;
wenzelm
parents:
23367
diff
changeset
|
558 |
|
17865 | 559 |
* Isar: improper proof element 'guess' is like 'obtain', but derives |
560 |
the obtained context from the course of reasoning! For example: |
|
561 |
||
562 |
assume "EX x y. A x & B y" -- "any previous fact" |
|
563 |
then guess x and y by clarify |
|
564 |
||
565 |
This technique is potentially adventurous, depending on the facts and |
|
566 |
proof tools being involved here. |
|
567 |
||
18020 | 568 |
* Isar: known facts from the proof context may be specified as literal |
569 |
propositions, using ASCII back-quote syntax. This works wherever |
|
570 |
named facts used to be allowed so far, in proof commands, proof |
|
571 |
methods, attributes etc. Literal facts are retrieved from the context |
|
572 |
according to unification of type and term parameters. For example, |
|
573 |
provided that "A" and "A ==> B" and "!!x. P x ==> Q x" are known |
|
574 |
theorems in the current context, then these are valid literal facts: |
|
575 |
`A` and `A ==> B` and `!!x. P x ==> Q x" as well as `P a ==> Q a` etc. |
|
576 |
||
577 |
There is also a proof method "fact" which does the same composition |
|
18044 | 578 |
for explicit goal states, e.g. the following proof texts coincide with |
579 |
certain special cases of literal facts: |
|
18020 | 580 |
|
581 |
have "A" by fact == note `A` |
|
582 |
have "A ==> B" by fact == note `A ==> B` |
|
583 |
have "!!x. P x ==> Q x" by fact == note `!!x. P x ==> Q x` |
|
584 |
have "P a ==> Q a" by fact == note `P a ==> Q a` |
|
585 |
||
20118
0c1ec587a5a8
* Isar: ":" (colon) is no longer a symbolic identifier character;
wenzelm
parents:
20090
diff
changeset
|
586 |
* Isar: ":" (colon) is no longer a symbolic identifier character in |
0c1ec587a5a8
* Isar: ":" (colon) is no longer a symbolic identifier character;
wenzelm
parents:
20090
diff
changeset
|
587 |
outer syntax. Thus symbolic identifiers may be used without |
0c1ec587a5a8
* Isar: ":" (colon) is no longer a symbolic identifier character;
wenzelm
parents:
20090
diff
changeset
|
588 |
additional white space in declarations like this: ``assume *: A''. |
0c1ec587a5a8
* Isar: ":" (colon) is no longer a symbolic identifier character;
wenzelm
parents:
20090
diff
changeset
|
589 |
|
20013 | 590 |
* Isar: 'print_facts' prints all local facts of the current context, |
591 |
both named and unnamed ones. |
|
592 |
||
18308 | 593 |
* Isar: 'def' now admits simultaneous definitions, e.g.: |
594 |
||
595 |
def x == "t" and y == "u" |
|
596 |
||
18540 | 597 |
* Isar: added command 'unfolding', which is structurally similar to |
598 |
'using', but affects both the goal state and facts by unfolding given |
|
18815
cb778c0ce1b5
Pure/Isar: (un)folded, (un)fold, unfolding support
wenzelm
parents:
18738
diff
changeset
|
599 |
rewrite rules. Thus many occurrences of the 'unfold' method or |
18540 | 600 |
'unfolded' attribute may be replaced by first-class proof text. |
601 |
||
18815
cb778c0ce1b5
Pure/Isar: (un)folded, (un)fold, unfolding support
wenzelm
parents:
18738
diff
changeset
|
602 |
* Isar: methods 'unfold' / 'fold', attributes 'unfolded' / 'folded', |
cb778c0ce1b5
Pure/Isar: (un)folded, (un)fold, unfolding support
wenzelm
parents:
18738
diff
changeset
|
603 |
and command 'unfolding' now all support object-level equalities |
cb778c0ce1b5
Pure/Isar: (un)folded, (un)fold, unfolding support
wenzelm
parents:
18738
diff
changeset
|
604 |
(potentially conditional). The underlying notion of rewrite rule is |
cb778c0ce1b5
Pure/Isar: (un)folded, (un)fold, unfolding support
wenzelm
parents:
18738
diff
changeset
|
605 |
analogous to the 'rule_format' attribute, but *not* that of the |
cb778c0ce1b5
Pure/Isar: (un)folded, (un)fold, unfolding support
wenzelm
parents:
18738
diff
changeset
|
606 |
Simplifier (which is usually more generous). |
cb778c0ce1b5
Pure/Isar: (un)folded, (un)fold, unfolding support
wenzelm
parents:
18738
diff
changeset
|
607 |
|
24238 | 608 |
* Isar: the new attribute [rotated n] (default n = 1) rotates the |
609 |
premises of a theorem by n. Useful in conjunction with drule. |
|
610 |
||
19220 | 611 |
* Isar: the goal restriction operator [N] (default N = 1) evaluates a |
612 |
method expression within a sandbox consisting of the first N |
|
19240 | 613 |
sub-goals, which need to exist. For example, ``simp_all [3]'' |
614 |
simplifies the first three sub-goals, while (rule foo, simp_all)[] |
|
615 |
simplifies all new goals that emerge from applying rule foo to the |
|
616 |
originally first one. |
|
19220 | 617 |
|
19814
faa698d46686
* Theory syntax: some popular names (e.g. "class", "if") are now keywords.
wenzelm
parents:
19783
diff
changeset
|
618 |
* Isar: schematic goals are no longer restricted to higher-order |
faa698d46686
* Theory syntax: some popular names (e.g. "class", "if") are now keywords.
wenzelm
parents:
19783
diff
changeset
|
619 |
patterns; e.g. ``lemma "?P(?x)" by (rule TrueI)'' now works as |
faa698d46686
* Theory syntax: some popular names (e.g. "class", "if") are now keywords.
wenzelm
parents:
19783
diff
changeset
|
620 |
expected. |
faa698d46686
* Theory syntax: some popular names (e.g. "class", "if") are now keywords.
wenzelm
parents:
19783
diff
changeset
|
621 |
|
18901 | 622 |
* Isar: the conclusion of a long theorem statement is now either |
623 |
'shows' (a simultaneous conjunction, as before), or 'obtains' |
|
624 |
(essentially a disjunction of cases with local parameters and |
|
625 |
assumptions). The latter allows to express general elimination rules |
|
18910 | 626 |
adequately; in this notation common elimination rules look like this: |
18901 | 627 |
|
628 |
lemma exE: -- "EX x. P x ==> (!!x. P x ==> thesis) ==> thesis" |
|
629 |
assumes "EX x. P x" |
|
630 |
obtains x where "P x" |
|
631 |
||
632 |
lemma conjE: -- "A & B ==> (A ==> B ==> thesis) ==> thesis" |
|
633 |
assumes "A & B" |
|
634 |
obtains A and B |
|
635 |
||
636 |
lemma disjE: -- "A | B ==> (A ==> thesis) ==> (B ==> thesis) ==> thesis" |
|
637 |
assumes "A | B" |
|
638 |
obtains |
|
639 |
A |
|
640 |
| B |
|
641 |
||
18910 | 642 |
The subsequent classical rules even refer to the formal "thesis" |
18901 | 643 |
explicitly: |
644 |
||
645 |
lemma classical: -- "(~ thesis ==> thesis) ==> thesis" |
|
646 |
obtains "~ thesis" |
|
647 |
||
18910 | 648 |
lemma Peirce's_Law: -- "((thesis ==> something) ==> thesis) ==> thesis" |
649 |
obtains "thesis ==> something" |
|
18901 | 650 |
|
651 |
The actual proof of an 'obtains' statement is analogous to that of the |
|
18910 | 652 |
Isar proof element 'obtain', only that there may be several cases. |
653 |
Optional case names may be specified in parentheses; these will be |
|
654 |
available both in the present proof and as annotations in the |
|
655 |
resulting rule, for later use with the 'cases' method (cf. attribute |
|
656 |
case_names). |
|
18901 | 657 |
|
21447
379f130843f7
* Isar: the assumptions of a long theorem statement are available as assms;
wenzelm
parents:
21406
diff
changeset
|
658 |
* Isar: the assumptions of a long theorem statement are available as |
379f130843f7
* Isar: the assumptions of a long theorem statement are available as assms;
wenzelm
parents:
21406
diff
changeset
|
659 |
"assms" fact in the proof context. This is more appropriate than the |
379f130843f7
* Isar: the assumptions of a long theorem statement are available as assms;
wenzelm
parents:
21406
diff
changeset
|
660 |
(historical) "prems", which refers to all assumptions of the current |
379f130843f7
* Isar: the assumptions of a long theorem statement are available as assms;
wenzelm
parents:
21406
diff
changeset
|
661 |
context, including those from the target locale, proof body etc. |
379f130843f7
* Isar: the assumptions of a long theorem statement are available as assms;
wenzelm
parents:
21406
diff
changeset
|
662 |
|
19263 | 663 |
* Isar: 'print_statement' prints theorems from the current theory or |
664 |
proof context in long statement form, according to the syntax of a |
|
665 |
top-level lemma. |
|
666 |
||
18901 | 667 |
* Isar: 'obtain' takes an optional case name for the local context |
668 |
introduction rule (default "that"). |
|
669 |
||
19587 | 670 |
* Isar: removed obsolete 'concl is' patterns. INCOMPATIBILITY, use |
671 |
explicit (is "_ ==> ?foo") in the rare cases where this still happens |
|
672 |
to occur. |
|
673 |
||
19682
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
674 |
* Pure: syntax "CONST name" produces a fully internalized constant |
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
675 |
according to the current context. This is particularly useful for |
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
676 |
syntax translations that should refer to internal constant |
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
677 |
representations independently of name spaces. |
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
678 |
|
21537
45b3a85ee548
* Pure: syntax constant for foo (binder) is called foo_binder;
wenzelm
parents:
21471
diff
changeset
|
679 |
* Pure: syntax constant for foo (binder "FOO ") is called "foo_binder" |
45b3a85ee548
* Pure: syntax constant for foo (binder) is called foo_binder;
wenzelm
parents:
21471
diff
changeset
|
680 |
instead of "FOO ". This allows multiple binder declarations to coexist |
45b3a85ee548
* Pure: syntax constant for foo (binder) is called foo_binder;
wenzelm
parents:
21471
diff
changeset
|
681 |
in the same context. INCOMPATIBILITY. |
45b3a85ee548
* Pure: syntax constant for foo (binder) is called foo_binder;
wenzelm
parents:
21471
diff
changeset
|
682 |
|
21209
dbb8decc36bc
'const_syntax' command: allow fixed variables, renamed to 'notation';
wenzelm
parents:
21200
diff
changeset
|
683 |
* Isar/locales: 'notation' provides a robust interface to the 'syntax' |
dbb8decc36bc
'const_syntax' command: allow fixed variables, renamed to 'notation';
wenzelm
parents:
21200
diff
changeset
|
684 |
primitive that also works in a locale context (both for constants and |
24950 | 685 |
fixed variables). Type declaration and internal syntactic representation |
686 |
of given constants retrieved from the context. Likewise, the |
|
687 |
'no_notation' command allows to remove given syntax annotations from the |
|
688 |
current context. |
|
19682
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
689 |
|
19665 | 690 |
* Isar/locales: new derived specification elements 'axiomatization', |
691 |
'definition', 'abbreviation', which support type-inference, admit |
|
19083 | 692 |
object-level specifications (equality, equivalence). See also the |
693 |
isar-ref manual. Examples: |
|
19081
085b5badb8de
* Isar/locales: new derived specification elements 'definition', 'abbreviation', 'axiomatization';
wenzelm
parents:
19034
diff
changeset
|
694 |
|
19665 | 695 |
axiomatization |
21595 | 696 |
eq (infix "===" 50) where |
697 |
eq_refl: "x === x" and eq_subst: "x === y ==> P x ==> P y" |
|
698 |
||
699 |
definition "f x y = x + y + 1" |
|
700 |
definition g where "g x = f x x" |
|
19081
085b5badb8de
* Isar/locales: new derived specification elements 'definition', 'abbreviation', 'axiomatization';
wenzelm
parents:
19034
diff
changeset
|
701 |
|
19363 | 702 |
abbreviation |
21595 | 703 |
neq (infix "=!=" 50) where |
19363 | 704 |
"x =!= y == ~ (x === y)" |
19081
085b5badb8de
* Isar/locales: new derived specification elements 'definition', 'abbreviation', 'axiomatization';
wenzelm
parents:
19034
diff
changeset
|
705 |
|
19083 | 706 |
These specifications may be also used in a locale context. Then the |
707 |
constants being introduced depend on certain fixed parameters, and the |
|
708 |
constant name is qualified by the locale base name. An internal |
|
709 |
abbreviation takes care for convenient input and output, making the |
|
19088 | 710 |
parameters implicit and using the original short name. See also |
25177 | 711 |
src/HOL/ex/Abstract_NAT.thy for an example of deriving polymorphic |
19083 | 712 |
entities from a monomorphic theory. |
713 |
||
714 |
Presently, abbreviations are only available 'in' a target locale, but |
|
19363 | 715 |
not inherited by general import expressions. Also note that |
716 |
'abbreviation' may be used as a type-safe replacement for 'syntax' + |
|
24735
3a55ee2cae70
* Pure/Isar: unified specification syntax admits type inference and dummy patterns;
wenzelm
parents:
24706
diff
changeset
|
717 |
'translations' in common applications. The "no_abbrevs" print mode |
3a55ee2cae70
* Pure/Isar: unified specification syntax admits type inference and dummy patterns;
wenzelm
parents:
24706
diff
changeset
|
718 |
prevents folding of abbreviations in term output. |
19084 | 719 |
|
19682
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
720 |
Concrete syntax is attached to specified constants in internal form, |
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
721 |
independently of name spaces. The parse tree representation is |
21209
dbb8decc36bc
'const_syntax' command: allow fixed variables, renamed to 'notation';
wenzelm
parents:
21200
diff
changeset
|
722 |
slightly different -- use 'notation' instead of raw 'syntax', and |
19682
c8c301eb965a
* Pure: syntax 'CONST name' produces a fully internalized constant;
wenzelm
parents:
19665
diff
changeset
|
723 |
'translations' with explicit "CONST" markup to accommodate this. |
19665 | 724 |
|
24800 | 725 |
* Pure/Isar: unified syntax for new-style specification mechanisms |
726 |
(e.g. 'definition', 'abbreviation', or 'inductive' in HOL) admits |
|
727 |
full type inference and dummy patterns ("_"). For example: |
|
24735
3a55ee2cae70
* Pure/Isar: unified specification syntax admits type inference and dummy patterns;
wenzelm
parents:
24706
diff
changeset
|
728 |
|
3a55ee2cae70
* Pure/Isar: unified specification syntax admits type inference and dummy patterns;
wenzelm
parents:
24706
diff
changeset
|
729 |
definition "K x _ = x" |
3a55ee2cae70
* Pure/Isar: unified specification syntax admits type inference and dummy patterns;
wenzelm
parents:
24706
diff
changeset
|
730 |
|
24738 | 731 |
inductive conj for A B |
732 |
where "A ==> B ==> conj A B" |
|
733 |
||
21735 | 734 |
* Pure: command 'print_abbrevs' prints all constant abbreviations of |
735 |
the current context. Print mode "no_abbrevs" prevents inversion of |
|
736 |
abbreviations on output. |
|
737 |
||
24800 | 738 |
* Isar/locales: improved parameter handling: use of locales "var" and |
739 |
"struct" no longer necessary; - parameter renamings are no longer |
|
740 |
required to be injective. For example, this allows to define |
|
741 |
endomorphisms as locale endom = homom mult mult h. |
|
19783 | 742 |
|
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19895
diff
changeset
|
743 |
* Isar/locales: changed the way locales with predicates are defined. |
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19895
diff
changeset
|
744 |
Instead of accumulating the specification, the imported expression is |
22126 | 745 |
now an interpretation. INCOMPATIBILITY: different normal form of |
746 |
locale expressions. In particular, in interpretations of locales with |
|
747 |
predicates, goals repesenting already interpreted fragments are not |
|
748 |
removed automatically. Use methods `intro_locales' and |
|
749 |
`unfold_locales'; see below. |
|
750 |
||
751 |
* Isar/locales: new methods `intro_locales' and `unfold_locales' |
|
752 |
provide backward reasoning on locales predicates. The methods are |
|
753 |
aware of interpretations and discharge corresponding goals. |
|
754 |
`intro_locales' is less aggressive then `unfold_locales' and does not |
|
755 |
unfold predicates to assumptions. |
|
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19895
diff
changeset
|
756 |
|
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19895
diff
changeset
|
757 |
* Isar/locales: the order in which locale fragments are accumulated |
22126 | 758 |
has changed. This enables to override declarations from fragments due |
759 |
to interpretations -- for example, unwanted simp rules. |
|
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19895
diff
changeset
|
760 |
|
23920 | 761 |
* Isar/locales: interpretation in theories and proof contexts has been |
762 |
extended. One may now specify (and prove) equations, which are |
|
763 |
unfolded in interpreted theorems. This is useful for replacing |
|
764 |
defined concepts (constants depending on locale parameters) by |
|
765 |
concepts already existing in the target context. Example: |
|
766 |
||
767 |
interpretation partial_order ["op <= :: [int, int] => bool"] |
|
768 |
where "partial_order.less (op <=) (x::int) y = (x < y)" |
|
769 |
||
24800 | 770 |
Typically, the constant `partial_order.less' is created by a |
771 |
definition specification element in the context of locale |
|
772 |
partial_order. |
|
773 |
||
24859 | 774 |
* Method "induct": improved internal context management to support |
24800 | 775 |
local fixes and defines on-the-fly. Thus explicit meta-level |
776 |
connectives !! and ==> are rarely required anymore in inductive goals |
|
777 |
(using object-logic connectives for this purpose has been long |
|
778 |
obsolete anyway). Common proof patterns are explained in |
|
25177 | 779 |
src/HOL/Induct/Common_Patterns.thy, see also |
780 |
src/HOL/Isar_examples/Puzzle.thy and src/HOL/Lambda for realistic |
|
781 |
examples. |
|
24606
7acbb982fc77
moved induct patterns to HOL/Induct/Common_Patterns.thy;
wenzelm
parents:
24507
diff
changeset
|
782 |
|
24859 | 783 |
* Method "induct": improved handling of simultaneous goals. Instead of |
24606
7acbb982fc77
moved induct patterns to HOL/Induct/Common_Patterns.thy;
wenzelm
parents:
24507
diff
changeset
|
784 |
introducing object-level conjunction, the statement is now split into |
7acbb982fc77
moved induct patterns to HOL/Induct/Common_Patterns.thy;
wenzelm
parents:
24507
diff
changeset
|
785 |
several conclusions, while the corresponding symbolic cases are nested |
7acbb982fc77
moved induct patterns to HOL/Induct/Common_Patterns.thy;
wenzelm
parents:
24507
diff
changeset
|
786 |
accordingly. INCOMPATIBILITY, proofs need to be structured explicitly, |
25177 | 787 |
see src/HOL/Induct/Common_Patterns.thy, for example. |
24606
7acbb982fc77
moved induct patterns to HOL/Induct/Common_Patterns.thy;
wenzelm
parents:
24507
diff
changeset
|
788 |
|
24859 | 789 |
* Method "induct": mutual induction rules are now specified as a list |
24800 | 790 |
of rule sharing the same induction cases. HOL packages usually provide |
24606
7acbb982fc77
moved induct patterns to HOL/Induct/Common_Patterns.thy;
wenzelm
parents:
24507
diff
changeset
|
791 |
foo_bar.inducts for mutually defined items foo and bar (e.g. inductive |
24859 | 792 |
predicates/sets or datatypes). INCOMPATIBILITY, users need to specify |
793 |
mutual induction rules differently, i.e. like this: |
|
18506
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
794 |
|
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
795 |
(induct rule: foo_bar.inducts) |
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
796 |
(induct set: foo bar) |
24859 | 797 |
(induct pred: foo bar) |
18506
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
798 |
(induct type: foo bar) |
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
799 |
|
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
800 |
The ML function ProjectRule.projections turns old-style rules into the |
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
801 |
new format. |
96260fb11449
* Provers/induct: support simultaneous goals with mutual rules;
wenzelm
parents:
18495
diff
changeset
|
802 |
|
24859 | 803 |
* Method "coinduct": dual of induction, see |
18399 | 804 |
src/HOL/Library/Coinductive_List.thy for various examples. |
805 |
||
24859 | 806 |
* Method "cases", "induct", "coinduct": the ``(open)'' option is |
807 |
considered a legacy feature. |
|
808 |
||
20919
dab803075c62
attribute "symmetric": standardized schematic variables;
wenzelm
parents:
20857
diff
changeset
|
809 |
* Attribute "symmetric" produces result with standardized schematic |
dab803075c62
attribute "symmetric": standardized schematic variables;
wenzelm
parents:
20857
diff
changeset
|
810 |
variables (index 0). Potential INCOMPATIBILITY. |
dab803075c62
attribute "symmetric": standardized schematic variables;
wenzelm
parents:
20857
diff
changeset
|
811 |
|
22126 | 812 |
* Simplifier: by default the simplifier trace only shows top level |
813 |
rewrites now. That is, trace_simp_depth_limit is set to 1 by |
|
814 |
default. Thus there is less danger of being flooded by the trace. The |
|
815 |
trace indicates where parts have been suppressed. |
|
18674 | 816 |
|
18536
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
817 |
* Provers/classical: removed obsolete classical version of elim_format |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
818 |
attribute; classical elim/dest rules are now treated uniformly when |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
819 |
manipulating the claset. |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
820 |
|
18694 | 821 |
* Provers/classical: stricter checks to ensure that supplied intro, |
822 |
dest and elim rules are well-formed; dest and elim rules must have at |
|
823 |
least one premise. |
|
824 |
||
825 |
* Provers/classical: attributes dest/elim/intro take an optional |
|
18695 | 826 |
weight argument for the rule (just as the Pure versions). Weights are |
18696 | 827 |
ignored by automated tools, but determine the search order of single |
18694 | 828 |
rule steps. |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18549
diff
changeset
|
829 |
|
18536
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
830 |
* Syntax: input syntax now supports dummy variable binding "%_. b", |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
831 |
where the body does not mention the bound variable. Note that dummy |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
832 |
patterns implicitly depend on their context of bounds, which makes |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
833 |
"{_. _}" match any set comprehension as expected. Potential |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
834 |
INCOMPATIBILITY -- parse translations need to cope with syntactic |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
835 |
constant "_idtdummy" in the binding position. |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
836 |
|
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
837 |
* Syntax: removed obsolete syntactic constant "_K" and its associated |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
838 |
parse translation. INCOMPATIBILITY -- use dummy abstraction instead, |
ab3f32f86847
* Provers/classical: removed obsolete classical version of elim_format;
wenzelm
parents:
18507
diff
changeset
|
839 |
for example "A -> B" => "Pi A (%_. B)". |
17779 | 840 |
|
20582
ebd0e03c6a9b
* Pure: 'class_deps' command visualizes the subclass relation;
wenzelm
parents:
20503
diff
changeset
|
841 |
* Pure: 'class_deps' command visualizes the subclass relation, using |
ebd0e03c6a9b
* Pure: 'class_deps' command visualizes the subclass relation;
wenzelm
parents:
20503
diff
changeset
|
842 |
the graph browser tool. |
ebd0e03c6a9b
* Pure: 'class_deps' command visualizes the subclass relation;
wenzelm
parents:
20503
diff
changeset
|
843 |
|
24800 | 844 |
* Pure: 'print_theory' now suppresses certain internal declarations by |
845 |
default; use '!' option for full details. |
|
20620
8b26f58c5646
* Pure: 'print_theory' now suppresses entities with internal name;
wenzelm
parents:
20607
diff
changeset
|
846 |
|
17865 | 847 |
|
17806 | 848 |
*** HOL *** |
849 |
||
25129 | 850 |
* Method "metis" proves goals by applying the Metis general-purpose |
851 |
resolution prover (see also http://gilith.com/software/metis/). |
|
852 |
Examples are in the directory MetisExamples. WARNING: the |
|
853 |
Isabelle/HOL-Metis integration does not yet work properly with |
|
854 |
multi-threading. |
|
855 |
||
856 |
* Command 'sledgehammer' invokes external automatic theorem provers as |
|
857 |
background processes. It generates calls to the "metis" method if |
|
858 |
successful. These can be pasted into the proof. Users do not have to |
|
859 |
wait for the automatic provers to return. WARNING: does not really |
|
860 |
work with multi-threading. |
|
861 |
||
24804 | 862 |
* New "auto_quickcheck" feature tests outermost goal statements for |
863 |
potential counter-examples. Controlled by ML references |
|
864 |
auto_quickcheck (default true) and auto_quickcheck_time_limit (default |
|
25129 | 865 |
5000 milliseconds). Fails silently if statements is outside of |
866 |
executable fragment, or any other codgenerator problem occurs. |
|
24804 | 867 |
|
25184 | 868 |
* New constant "undefined" with axiom "undefined x = undefined". |
869 |
||
870 |
* Added class "HOL.eq", allowing for code generation with polymorphic |
|
871 |
equality. |
|
872 |
||
873 |
* Some renaming of class constants due to canonical name prefixing in |
|
874 |
the new 'class' package: |
|
875 |
||
876 |
HOL.abs ~> HOL.abs_class.abs |
|
877 |
HOL.divide ~> HOL.divide_class.divide |
|
878 |
0 ~> HOL.zero_class.zero |
|
879 |
1 ~> HOL.one_class.one |
|
880 |
op + ~> HOL.plus_class.plus |
|
881 |
op - ~> HOL.minus_class.minus |
|
882 |
uminus ~> HOL.minus_class.uminus |
|
883 |
op * ~> HOL.times_class.times |
|
884 |
op < ~> HOL.ord_class.less |
|
885 |
op <= > HOL.ord_class.less_eq |
|
886 |
Nat.power ~> Power.power_class.power |
|
887 |
Nat.size ~> Nat.size_class.size |
|
888 |
Numeral.number_of ~> Numeral.number_class.number_of |
|
889 |
FixedPoint.Inf ~> Lattices.complete_lattice_class.Inf |
|
890 |
FixedPoint.Sup ~> Lattices.complete_lattice_class.Sup |
|
891 |
Orderings.min ~> Orderings.ord_class.min |
|
892 |
Orderings.max ~> Orderings.ord_class.max |
|
893 |
Divides.op div ~> Divides.div_class.div |
|
894 |
Divides.op mod ~> Divides.div_class.mod |
|
895 |
Divides.op dvd ~> Divides.div_class.dvd |
|
896 |
||
897 |
INCOMPATIBILITY. Adaptions may be required in the following cases: |
|
898 |
||
899 |
a) User-defined constants using any of the names "plus", "minus", |
|
900 |
"times", "less" or "less_eq". The standard syntax translations for |
|
901 |
"+", "-" and "*" may go wrong. INCOMPATIBILITY: use more specific |
|
902 |
names. |
|
903 |
||
904 |
b) Variables named "plus", "minus", "times", "less", "less_eq" |
|
905 |
INCOMPATIBILITY: use more specific names. |
|
906 |
||
907 |
c) Permutative equations (e.g. "a + b = b + a") |
|
908 |
Since the change of names also changes the order of terms, permutative |
|
909 |
rewrite rules may get applied in a different order. Experience shows |
|
910 |
that this is rarely the case (only two adaptions in the whole Isabelle |
|
911 |
distribution). INCOMPATIBILITY: rewrite proofs |
|
912 |
||
913 |
d) ML code directly refering to constant names |
|
914 |
This in general only affects hand-written proof tactics, simprocs and |
|
915 |
so on. INCOMPATIBILITY: grep your sourcecode and replace names. |
|
916 |
Consider using @{const_name} antiquotation. |
|
917 |
||
918 |
* New class "default" with associated constant "default". |
|
919 |
||
920 |
* Function "sgn" is now overloaded and available on int, real, complex |
|
921 |
(and other numeric types), using class "sgn". Two possible defs of |
|
922 |
sgn are given as equational assumptions in the classes sgn_if and |
|
923 |
sgn_div_norm; ordered_idom now also inherits from sgn_if. |
|
924 |
INCOMPATIBILITY. |
|
925 |
||
926 |
* Locale "partial_order" now unified with class "order" (cf. theory |
|
927 |
Orderings), added parameter "less". INCOMPATIBILITY. |
|
928 |
||
929 |
* Renamings in classes "order" and "linorder": facts "refl", "trans" and |
|
930 |
"cases" to "order_refl", "order_trans" and "linorder_cases", to avoid |
|
931 |
clashes with HOL "refl" and "trans". INCOMPATIBILITY. |
|
932 |
||
933 |
* Classes "order" and "linorder": potential INCOMPATIBILITY due to |
|
934 |
changed order of proof goals in instance proofs. |
|
935 |
||
936 |
* The transitivity reasoner for partial and linear orders is set up |
|
937 |
for classes "order" and "linorder". Instances of the reasoner are available |
|
938 |
in all contexts importing or interpreting the corresponding locales. |
|
939 |
Method "order" invokes the reasoner separately; the reasoner |
|
940 |
is also integrated with the Simplifier as a solver. Diagnostic |
|
941 |
command 'print_orders' shows the available instances of the reasoner |
|
942 |
in the current context. |
|
943 |
||
944 |
* Localized monotonicity predicate in theory "Orderings"; integrated |
|
945 |
lemmas max_of_mono and min_of_mono with this predicate. |
|
946 |
INCOMPATIBILITY. |
|
947 |
||
948 |
* Formulation of theorem "dense" changed slightly due to integration |
|
949 |
with new class dense_linear_order. |
|
950 |
||
951 |
* Uniform lattice theory development in HOL. |
|
952 |
||
953 |
constants "meet" and "join" now named "inf" and "sup" |
|
954 |
constant "Meet" now named "Inf" |
|
955 |
||
956 |
classes "meet_semilorder" and "join_semilorder" now named |
|
957 |
"lower_semilattice" and "upper_semilattice" |
|
958 |
class "lorder" now named "lattice" |
|
959 |
class "comp_lat" now named "complete_lattice" |
|
960 |
||
961 |
Instantiation of lattice classes allows explicit definitions |
|
962 |
for "inf" and "sup" operations (or "Inf" and "Sup" for complete lattices). |
|
963 |
||
964 |
INCOMPATIBILITY. Theorem renames: |
|
965 |
||
966 |
meet_left_le ~> inf_le1 |
|
967 |
meet_right_le ~> inf_le2 |
|
968 |
join_left_le ~> sup_ge1 |
|
969 |
join_right_le ~> sup_ge2 |
|
970 |
meet_join_le ~> inf_sup_ord |
|
971 |
le_meetI ~> le_infI |
|
972 |
join_leI ~> le_supI |
|
973 |
le_meet ~> le_inf_iff |
|
974 |
le_join ~> ge_sup_conv |
|
975 |
meet_idempotent ~> inf_idem |
|
976 |
join_idempotent ~> sup_idem |
|
977 |
meet_comm ~> inf_commute |
|
978 |
join_comm ~> sup_commute |
|
979 |
meet_leI1 ~> le_infI1 |
|
980 |
meet_leI2 ~> le_infI2 |
|
981 |
le_joinI1 ~> le_supI1 |
|
982 |
le_joinI2 ~> le_supI2 |
|
983 |
meet_assoc ~> inf_assoc |
|
984 |
join_assoc ~> sup_assoc |
|
985 |
meet_left_comm ~> inf_left_commute |
|
986 |
meet_left_idempotent ~> inf_left_idem |
|
987 |
join_left_comm ~> sup_left_commute |
|
988 |
join_left_idempotent ~> sup_left_idem |
|
989 |
meet_aci ~> inf_aci |
|
990 |
join_aci ~> sup_aci |
|
991 |
le_def_meet ~> le_iff_inf |
|
992 |
le_def_join ~> le_iff_sup |
|
993 |
join_absorp2 ~> sup_absorb2 |
|
994 |
join_absorp1 ~> sup_absorb1 |
|
995 |
meet_absorp1 ~> inf_absorb1 |
|
996 |
meet_absorp2 ~> inf_absorb2 |
|
997 |
meet_join_absorp ~> inf_sup_absorb |
|
998 |
join_meet_absorp ~> sup_inf_absorb |
|
999 |
distrib_join_le ~> distrib_sup_le |
|
1000 |
distrib_meet_le ~> distrib_inf_le |
|
1001 |
||
1002 |
add_meet_distrib_left ~> add_inf_distrib_left |
|
1003 |
add_join_distrib_left ~> add_sup_distrib_left |
|
1004 |
is_join_neg_meet ~> is_join_neg_inf |
|
1005 |
is_meet_neg_join ~> is_meet_neg_sup |
|
1006 |
add_meet_distrib_right ~> add_inf_distrib_right |
|
1007 |
add_join_distrib_right ~> add_sup_distrib_right |
|
1008 |
add_meet_join_distribs ~> add_sup_inf_distribs |
|
1009 |
join_eq_neg_meet ~> sup_eq_neg_inf |
|
1010 |
meet_eq_neg_join ~> inf_eq_neg_sup |
|
1011 |
add_eq_meet_join ~> add_eq_inf_sup |
|
1012 |
meet_0_imp_0 ~> inf_0_imp_0 |
|
1013 |
join_0_imp_0 ~> sup_0_imp_0 |
|
1014 |
meet_0_eq_0 ~> inf_0_eq_0 |
|
1015 |
join_0_eq_0 ~> sup_0_eq_0 |
|
1016 |
neg_meet_eq_join ~> neg_inf_eq_sup |
|
1017 |
neg_join_eq_meet ~> neg_sup_eq_inf |
|
1018 |
join_eq_if ~> sup_eq_if |
|
1019 |
||
1020 |
mono_meet ~> mono_inf |
|
1021 |
mono_join ~> mono_sup |
|
1022 |
meet_bool_eq ~> inf_bool_eq |
|
1023 |
join_bool_eq ~> sup_bool_eq |
|
1024 |
meet_fun_eq ~> inf_fun_eq |
|
1025 |
join_fun_eq ~> sup_fun_eq |
|
1026 |
meet_set_eq ~> inf_set_eq |
|
1027 |
join_set_eq ~> sup_set_eq |
|
1028 |
meet1_iff ~> inf1_iff |
|
1029 |
meet2_iff ~> inf2_iff |
|
1030 |
meet1I ~> inf1I |
|
1031 |
meet2I ~> inf2I |
|
1032 |
meet1D1 ~> inf1D1 |
|
1033 |
meet2D1 ~> inf2D1 |
|
1034 |
meet1D2 ~> inf1D2 |
|
1035 |
meet2D2 ~> inf2D2 |
|
1036 |
meet1E ~> inf1E |
|
1037 |
meet2E ~> inf2E |
|
1038 |
join1_iff ~> sup1_iff |
|
1039 |
join2_iff ~> sup2_iff |
|
1040 |
join1I1 ~> sup1I1 |
|
1041 |
join2I1 ~> sup2I1 |
|
1042 |
join1I1 ~> sup1I1 |
|
1043 |
join2I2 ~> sup1I2 |
|
1044 |
join1CI ~> sup1CI |
|
1045 |
join2CI ~> sup2CI |
|
1046 |
join1E ~> sup1E |
|
1047 |
join2E ~> sup2E |
|
1048 |
||
1049 |
is_meet_Meet ~> is_meet_Inf |
|
1050 |
Meet_bool_def ~> Inf_bool_def |
|
1051 |
Meet_fun_def ~> Inf_fun_def |
|
1052 |
Meet_greatest ~> Inf_greatest |
|
1053 |
Meet_lower ~> Inf_lower |
|
1054 |
Meet_set_def ~> Inf_set_def |
|
1055 |
||
1056 |
Sup_def ~> Sup_Inf |
|
1057 |
Sup_bool_eq ~> Sup_bool_def |
|
1058 |
Sup_fun_eq ~> Sup_fun_def |
|
1059 |
Sup_set_eq ~> Sup_set_def |
|
1060 |
||
1061 |
listsp_meetI ~> listsp_infI |
|
1062 |
listsp_meet_eq ~> listsp_inf_eq |
|
1063 |
||
1064 |
meet_min ~> inf_min |
|
1065 |
join_max ~> sup_max |
|
1066 |
||
1067 |
* Added syntactic class "size"; overloaded constant "size" now has |
|
1068 |
type "'a::size ==> bool" |
|
1069 |
||
24800 | 1070 |
* Internal reorganisation of `size' of datatypes: size theorems |
1071 |
"foo.size" are no longer subsumed by "foo.simps" (but are still |
|
1072 |
simplification rules by default!); theorems "prod.size" now named |
|
25184 | 1073 |
"*.size". |
1074 |
||
1075 |
* Class "div" now inherits from class "times" rather than "type". |
|
1076 |
INCOMPATIBILITY. |
|
24800 | 1077 |
|
1078 |
* HOL/Finite_Set: "name-space" locales Lattice, Distrib_lattice, |
|
1079 |
Linorder etc. have disappeared; operations defined in terms of |
|
1080 |
fold_set now are named Inf_fin, Sup_fin. INCOMPATIBILITY. |
|
1081 |
||
25129 | 1082 |
* HOL/Nat: neq0_conv no longer declared as iff. INCOMPATIBILITY. |
1083 |
||
24800 | 1084 |
* HOL-Word: New extensive library and type for generic, fixed size |
1085 |
machine words, with arithemtic, bit-wise, shifting and rotating |
|
1086 |
operations, reflection into int, nat, and bool lists, automation for |
|
1087 |
linear arithmetic (by automatic reflection into nat or int), including |
|
1088 |
lemmas on overflow and monotonicity. Instantiated to all appropriate |
|
1089 |
arithmetic type classes, supporting automatic simplification of |
|
1090 |
numerals on all operations. |
|
24333 | 1091 |
|
1092 |
* Library/Boolean_Algebra: locales for abstract boolean algebras. |
|
1093 |
||
1094 |
* Library/Numeral_Type: numbers as types, e.g. TYPE(32). |
|
1095 |
||
23850 | 1096 |
* Code generator library theories: |
24993 | 1097 |
- Code_Integer represents HOL integers by big integer literals in target |
23850 | 1098 |
languages. |
24993 | 1099 |
- Code_Char represents HOL characters by character literals in target |
23850 | 1100 |
languages. |
24993 | 1101 |
- Code_Char_chr like Code_Char, but also offers treatment of character |
1102 |
codes; includes Code_Integer. |
|
24800 | 1103 |
- Executable_Set allows to generate code for finite sets using lists. |
1104 |
- Executable_Rat implements rational numbers as triples (sign, enumerator, |
|
23850 | 1105 |
denominator). |
24800 | 1106 |
- Executable_Real implements a subset of real numbers, namly those |
23850 | 1107 |
representable by rational numbers. |
24800 | 1108 |
- Efficient_Nat implements natural numbers by integers, which in general will |
23850 | 1109 |
result in higher efficency; pattern matching with 0/Suc is eliminated; |
24993 | 1110 |
includes Code_Integer. |
1111 |
- Code_Index provides an additional datatype index which is mapped to |
|
1112 |
target-language built-in integers. |
|
26355 | 1113 |
- Code_Message provides an additional datatype message_string which is isomorphic to |
24993 | 1114 |
strings; messages are mapped to target-language strings. |
23850 | 1115 |
|
23783
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1116 |
* New package for inductive predicates |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1117 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1118 |
An n-ary predicate p with m parameters z_1, ..., z_m can now be defined via |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1119 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1120 |
inductive |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1121 |
p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1122 |
for z_1 :: U_1 and ... and z_n :: U_m |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1123 |
where |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1124 |
rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1125 |
| ... |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1126 |
|
24800 | 1127 |
with full support for type-inference, rather than |
23783
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1128 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1129 |
consts s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1130 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1131 |
abbreviation p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1132 |
where "p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1133 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1134 |
inductive "s z_1 ... z_m" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1135 |
intros |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1136 |
rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1137 |
... |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1138 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1139 |
For backward compatibility, there is a wrapper allowing inductive |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1140 |
sets to be defined with the new package via |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1141 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1142 |
inductive_set |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1143 |
s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1144 |
for z_1 :: U_1 and ... and z_n :: U_m |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1145 |
where |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1146 |
rule_1: "... ==> (t_1_1, ..., t_1_n) : s z_1 ... z_m" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1147 |
| ... |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1148 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1149 |
or |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1150 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1151 |
inductive_set |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1152 |
s :: "U_1 => ... => U_m => (T_1 * ... * T_n) set" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1153 |
and p :: "U_1 => ... => U_m => T_1 => ... => T_n => bool" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1154 |
for z_1 :: U_1 and ... and z_n :: U_m |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1155 |
where |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1156 |
"p z_1 ... z_m x_1 ... x_n == (x_1, ..., x_n) : s z_1 ... z_m" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1157 |
| rule_1: "... ==> p z_1 ... z_m t_1_1 ... t_1_n" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1158 |
| ... |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1159 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1160 |
if the additional syntax "p ..." is required. |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1161 |
|
25177 | 1162 |
Numerous examples can be found in the subdirectories src/HOL/Auth, |
1163 |
src/HOL/Bali, src/HOL/Induct, and src/HOL/MicroJava. |
|
23783
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1164 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1165 |
INCOMPATIBILITIES: |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1166 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1167 |
- Since declaration and definition of inductive sets or predicates |
24800 | 1168 |
is no longer separated, abbreviations involving the newly |
1169 |
introduced sets or predicates must be specified together with the |
|
1170 |
introduction rules after the 'where' keyword (see above), rather |
|
1171 |
than before the actual inductive definition. |
|
1172 |
||
1173 |
- The variables in induction and elimination rules are now |
|
1174 |
quantified in the order of their occurrence in the introduction |
|
1175 |
rules, rather than in alphabetical order. Since this may break |
|
1176 |
some proofs, these proofs either have to be repaired, e.g. by |
|
1177 |
reordering the variables a_i_1 ... a_i_{k_i} in Isar 'case' |
|
1178 |
statements of the form |
|
23783
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1179 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1180 |
case (rule_i a_i_1 ... a_i_{k_i}) |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1181 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1182 |
or the old order of quantification has to be restored by explicitly adding |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1183 |
meta-level quantifiers in the introduction rules, i.e. |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1184 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1185 |
| rule_i: "!!a_i_1 ... a_i_{k_i}. ... ==> p z_1 ... z_m t_i_1 ... t_i_n" |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1186 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1187 |
- The format of the elimination rules is now |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1188 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1189 |
p z_1 ... z_m x_1 ... x_n ==> |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1190 |
(!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P) |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1191 |
==> ... ==> P |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1192 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1193 |
for predicates and |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1194 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1195 |
(x_1, ..., x_n) : s z_1 ... z_m ==> |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1196 |
(!!a_1_1 ... a_1_{k_1}. x_1 = t_1_1 ==> ... ==> x_n = t_1_n ==> ... ==> P) |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1197 |
==> ... ==> P |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1198 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1199 |
for sets rather than |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1200 |
|
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1201 |
x : s z_1 ... z_m ==> |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1202 |
(!!a_1_1 ... a_1_{k_1}. x = (t_1_1, ..., t_1_n) ==> ... ==> P) |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1203 |
==> ... ==> P |
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1204 |
|
24800 | 1205 |
This may require terms in goals to be expanded to n-tuples |
1206 |
(e.g. using case_tac or simplification with the split_paired_all |
|
1207 |
rule) before the above elimination rule is applicable. |
|
1208 |
||
1209 |
- The elimination or case analysis rules for (mutually) inductive |
|
1210 |
sets or predicates are now called "p_1.cases" ... "p_k.cases". The |
|
1211 |
list of rules "p_1_..._p_k.elims" is no longer available. |
|
23783
e4d514f81d95
Added entry for new inductive definition package.
berghofe
parents:
23565
diff
changeset
|
1212 |
|
25198 | 1213 |
* New package "function"/"fun" for general recursive functions, |
1214 |
supporting mutual and nested recursion, definitions in local contexts, |
|
1215 |
more general pattern matching and partiality. See HOL/ex/Fundefs.thy |
|
1216 |
for small examples, and the separate tutorial on the function |
|
1217 |
package. The old recdef "package" is still available as before, but |
|
1218 |
users are encouraged to use the new package. |
|
1219 |
||
1220 |
* Method "lexicographic_order" automatically synthesizes termination |
|
1221 |
relations as lexicographic combinations of size measures. |
|
1222 |
||
24800 | 1223 |
* Case-expressions allow arbitrary constructor-patterns (including |
1224 |
"_") and take their order into account, like in functional |
|
1225 |
programming. Internally, this is translated into nested |
|
1226 |
case-expressions; missing cases are added and mapped to the predefined |
|
1227 |
constant "undefined". In complicated cases printing may no longer show |
|
1228 |
the original input but the internal form. Lambda-abstractions allow |
|
1229 |
the same form of pattern matching: "% pat1 => e1 | ..." is an |
|
1230 |
abbreviation for "%x. case x of pat1 => e1 | ..." where x is a new |
|
1231 |
variable. |
|
23564 | 1232 |
|
23468 | 1233 |
* IntDef: The constant "int :: nat => int" has been removed; now "int" |
24800 | 1234 |
is an abbreviation for "of_nat :: nat => int". The simplification |
1235 |
rules for "of_nat" have been changed to work like "int" did |
|
1236 |
previously. Potential INCOMPATIBILITY: |
|
23468 | 1237 |
- "of_nat (Suc m)" simplifies to "1 + of_nat m" instead of "of_nat m + 1" |
1238 |
- of_nat_diff and of_nat_mult are no longer default simp rules |
|
23377 | 1239 |
|
23295
86e225406859
Method "algebra" solves polynomial equations over (semi)rings
chaieb
parents:
23251
diff
changeset
|
1240 |
* Method "algebra" solves polynomial equations over (semi)rings using |
24800 | 1241 |
Groebner bases. The (semi)ring structure is defined by locales and the |
1242 |
tool setup depends on that generic context. Installing the method for |
|
1243 |
a specific type involves instantiating the locale and possibly adding |
|
1244 |
declarations for computation on the coefficients. The method is |
|
1245 |
already instantiated for natural numbers and for the axiomatic class |
|
1246 |
of idoms with numerals. See also the paper by Chaieb and Wenzel at |
|
1247 |
CALCULEMUS 2007 for the general principles underlying this |
|
1248 |
architecture of context-aware proof-tools. |
|
1249 |
||
25033 | 1250 |
* Method "ferrack" implements quantifier elimination over |
1251 |
special-purpose dense linear orders using locales (analogous to |
|
1252 |
"algebra"). The method is already installed for class |
|
1253 |
{ordered_field,recpower,number_ring} which subsumes real, hyperreal, |
|
1254 |
rat, etc. |
|
1255 |
||
24800 | 1256 |
* Former constant "List.op @" now named "List.append". Use ML |
1257 |
antiquotations @{const_name List.append} or @{term " ... @ ... "} to |
|
1258 |
circumvent possible incompatibilities when working on ML level. |
|
1259 |
||
24996 | 1260 |
* primrec: missing cases mapped to "undefined" instead of "arbitrary". |
22845 | 1261 |
|
24800 | 1262 |
* New function listsum :: 'a list => 'a for arbitrary monoids. |
1263 |
Special syntax: "SUM x <- xs. f x" (and latex variants) |
|
1264 |
||
1265 |
* New syntax for Haskell-like list comprehension (input only), eg. |
|
25177 | 1266 |
[(x,y). x <- xs, y <- ys, x ~= y], see also src/HOL/List.thy. |
24800 | 1267 |
|
1268 |
* The special syntax for function "filter" has changed from [x : |
|
1269 |
xs. P] to [x <- xs. P] to avoid an ambiguity caused by list |
|
1270 |
comprehension syntax, and for uniformity. INCOMPATIBILITY. |
|
1271 |
||
1272 |
* [a..b] is now defined for arbitrary linear orders. It used to be |
|
1273 |
defined on nat only, as an abbreviation for [a..<Suc b] |
|
1274 |
INCOMPATIBILITY. |
|
1275 |
||
1276 |
* Renamed lemma "set_take_whileD" to "set_takeWhileD". |
|
1277 |
||
25177 | 1278 |
* New functions "sorted" and "sort" in src/HOL/List.thy. |
24800 | 1279 |
|
1280 |
* New lemma collection field_simps (an extension of ring_simps) for |
|
1281 |
manipulating (in)equations involving division. Multiplies with all |
|
1282 |
denominators that can be proved to be non-zero (in equations) or |
|
1283 |
positive/negative (in inequations). |
|
23480 | 1284 |
|
1285 |
* Lemma collections ring_eq_simps, group_eq_simps and ring_distrib |
|
24800 | 1286 |
have been improved and renamed to ring_simps, group_simps and |
1287 |
ring_distribs. Removed lemmas field_xyz in theory Ring_and_Field |
|
1288 |
because they were subsumed by lemmas xyz. INCOMPATIBILITY. |
|
1289 |
||
25177 | 1290 |
* Theory Library/Commutative_Ring: switched from recdef to function |
24800 | 1291 |
package; constants add, mul, pow now curried. Infix syntax for |
1292 |
algebraic operations. |
|
22735 | 1293 |
|
24800 | 1294 |
* Dropped redundant lemma def_imp_eq in favor of meta_eq_to_obj_eq. |
22218 | 1295 |
INCOMPATIBILITY. |
1296 |
||
24800 | 1297 |
* Dropped redundant lemma if_def2 in favor of if_bool_eq_conj. |
22218 | 1298 |
INCOMPATIBILITY. |
1299 |
||
22126 | 1300 |
* HOL/records: generalised field-update to take a function on the |
1301 |
field rather than the new value: r(|A := x|) is translated to A_update |
|
1302 |
(K x) r The K-combinator that is internally used is called K_record. |
|
21226
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21215
diff
changeset
|
1303 |
INCOMPATIBILITY: Usage of the plain update functions has to be |
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21215
diff
changeset
|
1304 |
adapted. |
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21215
diff
changeset
|
1305 |
|
24800 | 1306 |
* Class "semiring_0" now contains annihilation axioms x * 0 = 0 and 0 |
1307 |
* x = 0, which are required for a semiring. Richer structures do not |
|
1308 |
inherit from semiring_0 anymore, because this property is a theorem |
|
1309 |
there, not an axiom. INCOMPATIBILITY: In instances of semiring_0, |
|
1310 |
there is more to prove, but this is mostly trivial. |
|
1311 |
||
1312 |
* Class "recpower" is generalized to arbitrary monoids, not just |
|
1313 |
commutative semirings. INCOMPATIBILITY: may need to incorporate |
|
25163 | 1314 |
commutativity or semiring properties additionally. |
21215
7c9337a0e30a
made locale partial_order compatible with axclass order
haftmann
parents:
21209
diff
changeset
|
1315 |
|
21099 | 1316 |
* Constant "List.list_all2" in List.thy now uses authentic syntax. |
24800 | 1317 |
INCOMPATIBILITY: translations containing list_all2 may go wrong, |
1318 |
better use 'abbreviation'. |
|
1319 |
||
1320 |
* Renamed constant "List.op mem" to "List.member". INCOMPATIBILITY. |
|
1321 |
||
22126 | 1322 |
* Numeral syntax: type 'bin' which was a mere type copy of 'int' has |
24800 | 1323 |
been abandoned in favour of plain 'int'. INCOMPATIBILITY -- |
22126 | 1324 |
significant changes for setting up numeral syntax for types: |
24800 | 1325 |
- New constants Numeral.pred and Numeral.succ instead |
20485 | 1326 |
of former Numeral.bin_pred and Numeral.bin_succ. |
1327 |
- Use integer operations instead of bin_add, bin_mult and so on. |
|
1328 |
- Numeral simplification theorems named Numeral.numeral_simps instead of Bin_simps. |
|
1329 |
- ML structure Bin_Simprocs now named Int_Numeral_Base_Simprocs. |
|
1330 |
||
25177 | 1331 |
See src/HOL/Integ/IntArith.thy for an example setup. |
1332 |
||
1333 |
* Command 'normal_form' computes the normal form of a term that may |
|
1334 |
contain free variables. For example ``normal_form "rev [a, b, c]"'' |
|
1335 |
produces ``[b, c, a]'' (without proof). This command is suitable for |
|
1336 |
heavy-duty computations because the functions are compiled to ML |
|
1337 |
first. Correspondingly, a method "normalization" is provided. See |
|
1338 |
further src/HOL/ex/NormalForm.thy and src/Tools/nbe.ML. |
|
19895 | 1339 |
|
17996 | 1340 |
* Alternative iff syntax "A <-> B" for equality on bool (with priority |
1341 |
25 like -->); output depends on the "iff" print_mode, the default is |
|
1342 |
"A = B" (with priority 50). |
|
1343 |
||
21265 | 1344 |
* Relations less (<) and less_eq (<=) are also available on type bool. |
1345 |
Modified syntax to disallow nesting without explicit parentheses, |
|
24800 | 1346 |
e.g. "(x < y) < z" or "x < (y < z)", but NOT "x < y < z". Potential |
1347 |
INCOMPATIBILITY. |
|
21265 | 1348 |
|
18674 | 1349 |
* "LEAST x:A. P" expands to "LEAST x. x:A & P" (input only). |
1350 |
||
20716
a6686a8e1b68
Changed precedence of "op O" (relation composition) from 60 to 75.
krauss
parents:
20712
diff
changeset
|
1351 |
* Relation composition operator "op O" now has precedence 75 and binds |
a6686a8e1b68
Changed precedence of "op O" (relation composition) from 60 to 75.
krauss
parents:
20712
diff
changeset
|
1352 |
stronger than union and intersection. INCOMPATIBILITY. |
a6686a8e1b68
Changed precedence of "op O" (relation composition) from 60 to 75.
krauss
parents:
20712
diff
changeset
|
1353 |
|
22126 | 1354 |
* The old set interval syntax "{m..n(}" (and relatives) has been |
1355 |
removed. Use "{m..<n}" (and relatives) instead. |
|
19377 | 1356 |
|
17865 | 1357 |
* In the context of the assumption "~(s = t)" the Simplifier rewrites |
24800 | 1358 |
"t = s" to False (by simproc "neq"). INCOMPATIBILITY, consider using |
1359 |
``declare [[simproc del: neq]]''. |
|
1360 |
||
1361 |
* Simplifier: "m dvd n" where m and n are numbers is evaluated to |
|
1362 |
True/False. |
|
1363 |
||
1364 |
* Theorem Cons_eq_map_conv no longer declared as "simp". |
|
19211 | 1365 |
|
19279 | 1366 |
* Theorem setsum_mult renamed to setsum_right_distrib. |
1367 |
||
19211 | 1368 |
* Prefer ex1I over ex_ex1I in single-step reasoning, e.g. by the |
22126 | 1369 |
``rule'' method. |
1370 |
||
24800 | 1371 |
* Reimplemented methods "sat" and "satx", with several improvements: |
1372 |
goals no longer need to be stated as "<prems> ==> False", equivalences |
|
1373 |
(i.e. "=" on type bool) are handled, variable names of the form |
|
1374 |
"lit_<n>" are no longer reserved, significant speedup. |
|
1375 |
||
1376 |
* Methods "sat" and "satx" can now replay MiniSat proof traces. |
|
22126 | 1377 |
zChaff is still supported as well. |
1378 |
||
1379 |
* 'inductive' and 'datatype': provide projections of mutual rules, |
|
1380 |
bundled as foo_bar.inducts; |
|
1381 |
||
1382 |
* Library: moved theories Parity, GCD, Binomial, Infinite_Set to |
|
1383 |
Library. |
|
21256 | 1384 |
|
1385 |
* Library: moved theory Accessible_Part to main HOL. |
|
19572
a4b3176f19dd
* Library: theory Accessible_Part has been move to main HOL.
wenzelm
parents:
19508
diff
changeset
|
1386 |
|
18446 | 1387 |
* Library: added theory Coinductive_List of potentially infinite lists |
1388 |
as greatest fixed-point. |
|
18399 | 1389 |
|
19254 | 1390 |
* Library: added theory AssocList which implements (finite) maps as |
19252 | 1391 |
association lists. |
17809
195045659c06
Tactics sat and satx reimplemented, several improvements
webertj
parents:
17806
diff
changeset
|
1392 |
|
24800 | 1393 |
* Method "evaluation" solves goals (i.e. a boolean expression) |
1394 |
efficiently by compiling it to ML. The goal is "proved" (via an |
|
1395 |
oracle) if it evaluates to True. |
|
20807 | 1396 |
|
1397 |
* Linear arithmetic now splits certain operators (e.g. min, max, abs) |
|
24800 | 1398 |
also when invoked by the simplifier. This results in the Simplifier |
1399 |
being more powerful on arithmetic goals. INCOMPATIBILITY. |
|
1400 |
Configuration option fast_arith_split_limit=0 recovers the old |
|
1401 |
behavior. |
|
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
20188
diff
changeset
|
1402 |
|
22126 | 1403 |
* Support for hex (0x20) and binary (0b1001) numerals. |
19254 | 1404 |
|
20807 | 1405 |
* New method: reify eqs (t), where eqs are equations for an |