summaryrefslogtreecommitdiff
path: root/Test/dafny0/Answer
Commit message (Collapse)AuthorAge
* Removed Dafny, Jennisys, Chalice, and BCT, which now live in different ↵Gravatar Rustan Leino2013-03-05
| | | | Codeplex repositories.
* Dafny: adjusted Answer file for reorderingGravatar Rustan Leino2012-10-18
|
* Dafny: fixed mergeGravatar Rustan Leino2012-10-04
|
* MergeGravatar Rustan Leino2012-10-04
|\
* | Dafny: complete implementation of iteratorsGravatar Rustan Leino2012-10-03
| |
* | Dafny: automatically update iterator _new field upon allocationsGravatar Rustan Leino2012-10-03
| |
* | Dafny: good error locations for yield statements; other iterator ↵Gravatar Rustan Leino2012-10-03
| | | | | | | | improvements / bug fixes
* | Dafny: changed iterator body to resolve to implicit fields rather than to ↵Gravatar Rustan Leino2012-10-02
| | | | | | | | the formal in- and yield-parameters
* | Dafny: incomplete snapshot of verification of iteratorsGravatar Rustan Leino2012-10-02
| |
| * MergeGravatar Nadia Polikarpova2012-09-29
| |\
| | * Boogie and Dafny: adjustments to the test suite expected output (and a ↵Gravatar Unknown2012-09-27
| | | | | | | | | | | | temporary hack in FloydCycleDetect.dfy to be corrected shortly)
* | | Dafny: compile iteratorsGravatar Rustan Leino2012-09-26
| | |
* | | Dafny: added test cases for resolving iteratorsGravatar Rustan Leino2012-09-25
| | |
* | | Dafny: added iterators; for now, only parsing and resolving (and printing ↵Gravatar Rustan Leino2012-09-25
| |/ |/| | | | | and refining), no compilation or verification
| * Bugfix in the translation of calc statements (oops), added more resolution ↵Gravatar Nadia Polikarpova2012-09-21
| | | | | | | | and verification tests
| * Added tests for parsing and resolution of calc statementsGravatar Nadia Polikarpova2012-09-21
|/
* Dafny: improved checking of inherited postconditions (in refinements)Gravatar Unknown2012-09-10
|
* Dafny: allow 'decreases *' (that is, non-terminating recursion) on ↵Gravatar Rustan Leino2012-09-09
| | | | tail-recursive methods
* Dafny: fixed bug in checking postconditions of functions that mention the ↵Gravatar Unknown2012-08-29
| | | | result the function itself
* Dafny: added heuristics for finding witnesses in assign-such-that checkingGravatar Unknown2012-08-10
|
* Dafny: fixed bug in reverifying allowing old locals to be modified.Gravatar Jason Koenig2012-08-01
|
* Dafny: support opening modules into the local scopeGravatar Jason Koenig2012-07-30
|
* Dafny: removed allocated, changed semantics of freshGravatar Jason Koenig2012-07-29
| | | | | -allocated(x) removed, as really only useful in old(...) -old(allocated(x)) and !fresh(x) are equivalent (for x with type ref, set, sequence, and datatype).
* Dafny: compilation of abstract modules, including local definitions (as in ↵Gravatar Jason Koenig2012-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 ↵Gravatar Jason Koenig2012-07-12
| | | | modified during refinement
* MergeGravatar Unknown2012-07-12
|\
| * Dafny: fixed translation bug in maps with objects in the domain, added test caseGravatar Jason Koenig2012-07-11
| |
* | Dafny: added a copredicate test caseGravatar Unknown2012-07-11
|/
* MergeGravatar Rustan Leino2012-07-09
|\
* | Dafny: More work on the coinduction principleGravatar Rustan Leino2012-07-09
| |
| * Dafny: fixed test caseGravatar Jason Koenig2012-07-09
| |
| * Dafny: types can now be qualified with full module pathsGravatar Jason Koenig2012-07-06
| |
* | Dafny: added copredicatesGravatar Rustan Leino2012-07-03
|/
* Dafny: fixed some test casesGravatar Jason Koenig2012-06-28
|
* Dafny: now, equality-support determination and checking feels ripe; so, ↵Gravatar Rustan Leino2012-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 tentativeGravatar Unknown2012-06-22
|
* Dafny: equality-support test cases. This is just a snapshot--some things ↵Gravatar Unknown2012-06-22
| | | | still to be fixed up.
* Dafny: deal with equality-support issues in refinementsGravatar Unknown2012-06-22
| | | | Dafny: a small amount of refactoring and bug fixes
* MergeGravatar Jason Koenig2012-06-13
|\
* | Dafny: allow parallel assignments to assign to the same LHS if the RHS match.Gravatar Jason Koenig2012-06-13
| |
| * MergeGravatar Unknown2012-06-13
| |\ | |/ |/|
| * Dafny: Changed the semantics of the assign-such-that statement "x :| P;" to ↵Gravatar Unknown2012-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 sameGravatar Jason Koenig2012-06-13
|/ | | | (i.e. a != b is allowed when a: array<int> and b: array<T>)
* Dafny: allow types to be qualified with the name of the module that declares ↵Gravatar Unknown2012-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 map comprehensions and updated display syntaxGravatar Unknown2012-05-31
|
* Dafny: fixed regression testsGravatar Unknown2012-05-29
|
* Dafny: more correct checking of co-inductive productivityGravatar Unknown2012-05-18
|
* Dafny: added support for co-recursive callsGravatar Rustan Leino2012-05-01
|
* Dafny: fixed unsoundness having to do with a function depending on the ↵Gravatar Unknown2012-04-27
| | | | allocation state
* Dafny: added resolution tests cases for inductive datatypesGravatar Unknown2012-04-27
|