summaryrefslogtreecommitdiff
path: root/Source/Dafny
Commit message (Collapse)AuthorAge
* Dafny: Removed assembly reference to 'AIFramework'.Gravatar wuestholz2012-09-28
|
* Allow custom operators on a lineGravatar Nadia Polikarpova2012-09-17
|
* Allow several calculation operators (for the whole calculation)Gravatar Nadia Polikarpova2012-09-16
|
* Allowing calc as hint (without braces)Gravatar Nadia Polikarpova2012-09-16
|
* Renamed terms into lines (according to the proposal), fixed some contractsGravatar Nadia Polikarpova2012-09-16
|
* Error reporting for calculation stepsGravatar Nadia Polikarpova2012-09-14
|
* Calc statements: Renamed Steps into Terms; introduced Steps (expressions ↵Gravatar Nadia Polikarpova2012-09-14
| | | | t<i> op t<i + 1>), generated during resolution; first version of the translation
* MergeGravatar Nadia Polikarpova2012-09-14
|\
* | Pretty-print calc statementsGravatar Nadia Polikarpova2012-09-14
| |
* | Resolve and clone calc statements; fixed a small grammar bugGravatar Nadia Polikarpova2012-09-13
| |
* | Added calc statement to the AST and the grammar (first attempt)Gravatar Nadia Polikarpova2012-09-13
| |
| * Dafny: clone and merge attributes in refinementsGravatar Unknown2012-09-12
| |
| * Dafny: things about sequences: parse Suffix expressions after DisplayExpr's, ↵Gravatar Unknown2012-09-12
|/ | | | and axiomatize [][..0] == [] == [][0..]
* Dafny: did a little to extend the support of labeled statements in ↵Gravatar Unknown2012-09-10
| | | | refinements (things like multiple labels are still not thought through very well)
* Dafny: improved checking of inherited postconditions (in refinements)Gravatar Unknown2012-09-10
|
* MergeGravatar Rustan Leino2012-09-10
|\
* | Dafny: allow 'decreases *' (that is, non-terminating recursion) on ↵Gravatar Rustan Leino2012-09-09
| | | | | | | | tail-recursive methods
* | Dafny: Added detection and support for tail recursive calls (and an ↵Gravatar Unknown2012-09-07
| | | | | | | | optional "tailrecursion" attribute). Also, let the cloner also clone attributes.
* | Dafny: for refinements, don't consider a newly provided predicate body to be ↵Gravatar Unknown2012-08-30
| | | | | | | | an extension--clients don't need to be reverified if the body is new, only an extensions to a previous definition need to be
* | DafnyExtension: changed how "_" is displayed (now display as a keyword, not ↵Gravatar Unknown2012-08-30
| | | | | | | | as an identifier definition)
* | Dafny: allow "_" as don't-care variable nameGravatar Unknown2012-08-30
| |
| * Dafny: allow more corecursive calls for copredicatesGravatar Rustan Leino2012-08-30
|/
* Dafny: fixed bug in checking postconditions of functions that mention the ↵Gravatar Unknown2012-08-29
| | | | result the function itself
* Dafny: fixed contract violation in parser (for non-parsing Lhs production)Gravatar Unknown2012-08-29
|
* Dafny: fixed contract bug in resolverGravatar Rustan Leino2012-08-27
|
* Dafny and Boogie: get rid of 'static' fields in parserGravatar Rustan Leino2012-08-21
|
* DafnyExtension: simplified display of type names and field namesGravatar Unknown2012-08-17
|
* DafnyExtension: various improvementsGravatar Unknown2012-08-16
|
* DafnyExtension: fixed more missing cases for hover textsGravatar Unknown2012-08-15
|
* Dafny: fixed some bugs in the newly added DafnyExtension codeGravatar Unknown2012-08-15
|
* Dafny: added Statement.SubExpressions getterGravatar Unknown2012-08-15
| | | | DafnyExtension: added hover text for identifiers
* Dafny: two bug fixes (resolution crashing on bad input, DafnyExtension ↵Gravatar Unknown2012-08-14
| | | | crashing after certain deletes)
* Dafny: internal renamingGravatar Unknown2012-08-10
|
* Dafny: added heuristics for finding witnesses in assign-such-that checkingGravatar Unknown2012-08-10
|
* DafnyExtension: hide execution-trace output, show split-expr related error ↵Gravatar Rustan Leino2012-08-10
| | | | locations, set a 10-second timeout
* Dafny: fixed parser crashGravatar Unknown2012-08-09
|
* DafnyExtension: improvementsGravatar Rustan Leino2012-08-08
|
* MergeGravatar Unknown2012-08-08
|\
* | Dafny: the DafnyExtension mode for Visual Studio now calls the verifier and ↵Gravatar Unknown2012-08-08
| | | | | | | | visually indicates a non-verified buffer
| * Dafny: corrected commentGravatar Jason Koenig2012-08-03
|/
* Dafny: fixed bug in reverifying allowing old locals to be modified.Gravatar Jason Koenig2012-08-01
|
* Dafny: reverify if the refining method modifies the heap.Gravatar Jason Koenig2012-08-01
|
* Dafny: fixed bug where expressions were not replaced.Gravatar Jason Koenig2012-08-01
|
* Dafny: support opening modules into the local scopeGravatar Jason Koenig2012-07-30
|
* Dafny: removed allocated keyword, changed module import syntax. "opened" ↵Gravatar Jason Koenig2012-07-30
| | | | keyword is parsed but ignored.
* 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: added structural refinement checkGravatar Jason Koenig2012-07-29
|
* Dafny: fixed datatype GetHashCode() to make it consistent with Equals()Gravatar Jason Koenig2012-07-18
|
* Dafny: allowed strictly finite datatypes in comprehensions, quantifiers, and ↵Gravatar Jason Koenig2012-07-17
| | | | parallel statements.
* 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)