Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Dafny: allowed strictly finite datatypes in comprehensions, quantifiers, and ↵ | Jason Koenig | 2012-07-17 |
| | | | | parallel statements. | ||
* | Dafny: compilation of abstract modules, including local definitions (as in ↵ | Jason Koenig | 2012-07-17 |
| | | | | | | | module A as B = C) * * * Dafny: compilation of abstract modules, including local definitions (as in module A as B = C) | ||
* | Dafny: fixed bug in which old locals were not properly forbidden from being ↵ | Jason Koenig | 2012-07-12 |
| | | | | modified during refinement | ||
* | Merge | Unknown | 2012-07-12 |
|\ | |||
| * | Dafny: restored soundness for refinement by disallowing certain updates and ↵ | Jason Koenig | 2012-07-11 |
| | | | | | | | | method calls | ||
| * | Dafny: fixed translation bug in maps with objects in the domain, added test case | Jason Koenig | 2012-07-11 |
| | | |||
* | | Dafny: added a copredicate test case | Unknown | 2012-07-11 |
|/ | |||
* | Merge | Unknown | 2012-07-10 |
|\ | |||
| * | Merge | Rustan Leino | 2012-07-09 |
| |\ | |||
| * | | Dafny: More work on the coinduction principle | Rustan Leino | 2012-07-09 |
| | | | |||
| | * | Merge | Jason Koenig | 2012-07-09 |
| | |\ | |||
| | * | | Dafny: fixed test case | Jason Koenig | 2012-07-09 |
| | | | | |||
| | | * | GPUVerify: add beginnings of a test suite | Peter Collingbourne | 2012-07-04 |
| | |/ | |||
| | * | Dafny: types can now be qualified with full module paths | Jason Koenig | 2012-07-06 |
| |/ |/| | |||
| * | Merge | Rustan Leino | 2012-07-03 |
| |\ | |/ |/| | |||
| * | Dafny: added copredicates | Rustan Leino | 2012-07-03 |
| | | |||
* | | Dafny: reinstated autocontracts | Jason Koenig | 2012-07-02 |
|/ | |||
* | Boogie: updated test15/Answer (which showed as a permutation of the previous ↵ | Rustan Leino | 2012-06-29 |
| | | | | Answer) | ||
* | Dafny: fixed up test suite (temporarily removed autocontract tests) | Jason Koenig | 2012-06-28 |
| | |||
* | Dafny: fixed some test cases | Jason Koenig | 2012-06-28 |
| | |||
* | Dafny: Merge | Jason Koenig | 2012-06-27 |
|\ | |||
| * | Undo bad merge. | afd | 2012-06-27 |
| | | |||
| * | Merge | Unknown | 2012-06-25 |
| |\ | |||
| | * | Dafny: now, equality-support determination and checking feels ripe; so, ↵ | Rustan Leino | 2012-06-22 |
| | | | | | | | | | | | | | | | | | | codatatypes would then be sound Dafny: added special case to allow equality comparison against parameter-less datatype values | ||
| | * | Dafny: mark code for equality-support determination tentative | Unknown | 2012-06-22 |
| | | | |||
| | * | Dafny: equality-support test cases. This is just a snapshot--some things ↵ | Unknown | 2012-06-22 |
| | | | | | | | | | | | | still to be fixed up. | ||
| | * | Dafny: deal with equality-support issues in refinements | Unknown | 2012-06-22 |
| | | | | | | | | | | | | Dafny: a small amount of refactoring and bug fixes | ||
| | * | Dafny: Since it's no longer true that all types support equality at run-time ↵ | Unknown | 2012-06-21 |
| | | | | | | | | | | | | (in particular, codatatypes), Dafny needs to check this. In these changes, Dafny supports the "(==)" suffix to type parameters, infers that suffix in some cases, and enforces equality support in many places. Refinement and datatypes still need more attention in the Dafny implementation. | ||
| * | | Merge | Unknown | 2012-06-21 |
| |\| | |||
| | * | Dafny: improved refinement features; added staged version of the proof of ↵ | Unknown | 2012-06-19 |
| |/ |/| | | | | | the Schorr-Waite algorithm (the staging features, as well as the newly added comments, make the verification much more digestible) | ||
| * | Merged with default. | chmaria | 2012-06-18 |
| |\ | |/ |/| | |||
| * | Dafny: Added CC translation of postconditions. | chmaria | 2012-06-18 |
| | | |||
* | | Dafny: in compiler, respect C#'s different scoping rules and lack of support ↵ | Unknown | 2012-06-14 |
| | | | | | | | | for special characters in identifiers | ||
* | | Merge | Unknown | 2012-06-14 |
|\ \ | |||
* | | | Dafny: fixed a couple of compiler bugs | Unknown | 2012-06-14 |
| | | | |||
* | | | Dafny: cleaned up test scripts a little | Unknown | 2012-06-14 |
| | | | |||
| * | | Merge | Jason Koenig | 2012-06-13 |
| |\ \ | |/ / |/| | | |||
| * | | Dafny: allow parallel assignments to assign to the same LHS if the RHS match. | Jason Koenig | 2012-06-13 |
| | | | |||
* | | | Merge | Unknown | 2012-06-13 |
|\| | | |||
* | | | Dafny: Changed the semantics of the assign-such-that statement "x :| P;" to ↵ | Unknown | 2012-06-13 |
| | | | | | | | | | | | | check the existence of a value. The previous "assume only" version is available by supplying the keyword "assume" in front of "P". | ||
| * | | Dafny: liberalized equality to work when the types could possibly be the same | Jason Koenig | 2012-06-13 |
| | | | | | | | | | | | | (i.e. a != b is allowed when a: array<int> and b: array<T>) | ||
* | | | Dafny: added another version of the majority finding algorithm to the test suite | Unknown | 2012-06-12 |
|/ / | |||
* | | Dafny: beefed up allocation axioms for boxes stored in fields | Unknown | 2012-06-12 |
| | | |||
| * | Dafny: Added tests. | chmaria | 2012-06-12 |
| | | |||
* | | Dafny: allow types to be qualified with the name of the module that declares ↵ | Unknown | 2012-06-11 |
| | | | | | | | | them (for now, this is supported only in type expressions and "new" allocations, not in places where the type name is used to qualify some other type member) | ||
| * | Dafny: Added compiler tests. | chmaria | 2012-06-11 |
| | | |||
* | | Dafny: added some test programs | Rustan Leino | 2012-06-08 |
| | | |||
* | | Dafny/Boogie/BVD: made Dafny plug-in for BVD work again | Rustan Leino | 2012-06-08 |
| | | |||
| * | Dafny: Added infrastructure for compiler tests. | chmaria | 2012-06-05 |
| | | |||
| * | Dafny: Added runtime checking tests. | chmaria | 2012-06-05 |
|/ |