summaryrefslogtreecommitdiff
path: root/Test
Commit message (Collapse)AuthorAge
* 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: more part of verifying iteratorsGravatar Rustan Leino2012-10-03
| |
* | 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
| |\
| | * Dafny: removed div/mod axioms, since Boogie now interprets div/modGravatar Unknown2012-09-28
| | | | | | | | | | | | | | | Dafny: included FloydCycleDetect again (which had been temporarily commented out) DafnyExtension: adjusted to Boogie's change in abstract-interpretation support
| | * 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)
| | * Boogie: added type 'real' with overloaded arithmetic operations plus real ↵Gravatar boehmes2012-09-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | division '/' and (uninterpreted) real exponentiation '**', real literals and coercion functions 'int' and 'real'; Integer operations 'div' and 'mod' are now mapped to corresponding SMT-LIB operations instead of treating them uninterpreted; Made unary minus valid Boogie syntax again (the expression '- e' used to be rewritten by the parser to '0 - e', now this is done when generating VCs); Extended the BigDec class with additional functionality; Added test cases for SMT-LIB prover backend (the Z3 API interface has been adapted accordingly, but is untested)
| | * Boogie: new syntax for integer division and modulus: use div and mod instead ↵Gravatar boehmes2012-09-27
| | | | | | | | | | | | of / and %
| | * Removed AIFramework from Boogie -- use native trivial or native ↵Gravatar boehmes2012-09-27
| | | | | | | | | | | | | | | | | | | | | interval-based abstract interpretation instead. Command-line option '/infer' now accepts only arguments 't' and 'j' where the latter is the default now for Boogie. Command-line option '/logInfer' has been dropped.
* | | 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
| * | Use expression splitting for checking calculation stepsGravatar Nadia Polikarpova2012-09-23
| | |
| * | 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
| | |
| * | Allow multiple calc/block statements in a hint. Removed the empty calc test ↵Gravatar Nadia Polikarpova2012-09-19
| | | | | | | | | | | | from dafny2/Calculations, as it actually belongs in dafny0.
| * | Allow empty calc statementsGravatar Nadia Polikarpova2012-09-19
| |/
| * Dafny: Updated a test that would take a long time (almost 2h) to verify with ↵Gravatar wuestholz2012-09-18
| | | | | | | | Z3 4.1.
| * Dafny: some test cases for "calc" (very cool!)Gravatar Unknown2012-09-17
|/
* Updated test 'livevars' that would fail with Z3 4.1 (alternative error trace).Gravatar wuestholz2012-09-12
|
* Updated test 'test15' that would fail with Z3 4.1 (different ordering of ↵Gravatar wuestholz2012-09-12
| | | | elements in the model output).
* 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 a test that would fail with Z3 4.1.Gravatar wuestholz2012-09-07
|
* Dafny: fixed bug in checking postconditions of functions that mention the ↵Gravatar Unknown2012-08-29
| | | | result the function itself
* Dafny and Boogie: get rid of 'static' fields in parserGravatar Rustan Leino2012-08-21
|
* Also updated test15Gravatar Rustan Leino2012-08-14
|
* Update test suite for commit 8a59fbb7ee34.Gravatar Peter Collingbourne2012-08-14
|
* Dafny: added heuristics for finding witnesses in assign-such-that checkingGravatar Unknown2012-08-10
|
* Dafny: added MonotonicHeapstate refinement exampleGravatar Unknown2012-08-09
|
* 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: updated test suite to new syntaxGravatar 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: 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)
* 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: restored soundness for refinement by disallowing certain updates and ↵Gravatar Jason Koenig2012-07-11
| | | | | | | | method calls
| * 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 Unknown2012-07-10
|\
| * MergeGravatar Rustan Leino2012-07-09
| |\
| * | Dafny: More work on the coinduction principleGravatar Rustan Leino2012-07-09
| | |
| | * MergeGravatar Jason Koenig2012-07-09
| | |\