diff options
| author | herbelin | 2008-06-11 11:25:07 +0000 |
|---|---|---|
| committer | herbelin | 2008-06-11 11:25:07 +0000 |
| commit | 1d67eb8a50a6d4f185aead5a23442e4b91270594 (patch) | |
| tree | 57e6635ae182429317cf6e81fb9f25c85aaa915d | |
| parent | ba61b1c136505c901c23f6a83cae6d29cedcd96c (diff) | |
MAJ diverses
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11102 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | CHANGES | 3 | ||||
| -rw-r--r-- | COMPATIBILITY | 5 | ||||
| -rw-r--r-- | dev/doc/changes.txt | 7 |
3 files changed, 12 insertions, 3 deletions
@@ -20,6 +20,7 @@ Language - Support for sort-polymorphism on constants denoting inductive types. - Several evolutions of the module system (handling of module aliases, functorial module types, an Include feature, etc). (TODO: Say more!) +- Prop now a subtype of Set (predicative and impredicative forms). Vernacular commands @@ -403,7 +404,7 @@ Tools Miscellaneous - Coq installation provides enough files so that Ocaml's extensions need not - the Coq sources to be compiled. + the Coq sources to be compiled (this assumes O'Caml 3.10 and Camlp5). - New commands "Set Whelp Server" and "Set Whelp Getter" to customize the Whelp search tool. - Syntax of "Test Printing Let ref" and "Test Printing If ref" changed into diff --git a/COMPATIBILITY b/COMPATIBILITY index 97963c8dca..b44f344d43 100644 --- a/COMPATIBILITY +++ b/COMPATIBILITY @@ -53,7 +53,10 @@ Language Libraries - Some changes in the library (as mentioned in the CHANGES file) may - imply the need for local adaptations. + imply the need for local adaptations. This may particularly be the + case with the move from Set to Type in libraries FSets, SetoidList, + ListSet, Sorting and Zmisc. In case of trouble it may help to simply + declare Set as an alias for Type (see file SetIsType). For the main changes in the ML interfaces, see file dev/doc/changes.txt in the main archive. diff --git a/dev/doc/changes.txt b/dev/doc/changes.txt index d8cdf738d9..b7545e09c0 100644 --- a/dev/doc/changes.txt +++ b/dev/doc/changes.txt @@ -2,9 +2,14 @@ = CHANGES BETWEEN COQ V8.1 AND COQ V8.2 = ========================================= -A few differences in Coq ML interfaces between Coq V8.0 and V8.1 +A few differences in Coq ML interfaces between Coq V8.1 and V8.2 ================================================================ +** Datatypes + +List of occurrences moved from "int list" to "Termops.occurrences" (an +alias to "bool * int list"). + ** Functions Eauto: e_resolve_constr, vernac_e_resolve_constr -> simplest_eapply |
