summaryrefslogtreecommitdiff
path: root/Test
Commit message (Collapse)AuthorAge
* Dafny: allow constructors only inside classes, removed semi-colons at end of ↵Gravatar Rustan Leino2011-07-11
| | | | body-less functions/methods
* Dafny: Fixed bug in call statements where mutability of out parameters was ↵Gravatar Jason Koenig2011-07-06
| | | | | | not checked. Added regression test.
* MergeGravatar Jason Koenig2011-07-05
|\
* | Dafny: Updated regression tests to include chaining disjoint operators.Gravatar Jason Koenig2011-07-05
| |
| * MergeGravatar Michal Moskal2011-07-05
| |\ | |/ |/|
| * Let = in options be passed down to the runtest.batGravatar Michal Moskal2011-06-30
| |
* | Added additional test case to modifies on loops tests.Gravatar Jason Koenig2011-06-29
|/
* Removed tab characters.Gravatar Jason Koenig2011-06-29
|
* MergeGravatar Jason Koenig2011-06-29
|\
* | Added regression tests for new return statements with parameters.Gravatar Jason Koenig2011-06-29
| |
| * MergeGravatar Rustan Leino2011-06-29
| |\ | |/ |/|
| * Dafny: Fixed axioms for Seq#Contains vs. the sequence building functionsGravatar Rustan Leino2011-06-29
| |
* | Added regression test file LoopModifies.dfy.Gravatar Jason Koenig2011-06-29
| |
* | Added regression test for loop modifies clauses.Gravatar Jason Koenig2011-06-28
| |
* | Changed regression test answer for dafny0 to reflect new error messages.Gravatar Jason Koenig2011-06-28
| |
* | extra test filesGravatar qadeer2011-06-24
| |
* | fixes to z3apiGravatar qadeer2011-06-24
| |
* | clean up in z3apiGravatar qadeer2011-06-22
| |
* | partial fixes to these regressionsGravatar qadeer2011-06-22
|/
* added more regressions to livevarsGravatar qadeer2011-06-14
|
* Dafny: added implicit datatype query fields and datatype destructor fieldsGravatar Rustan Leino2011-06-05
|
* Dafny: translate call statements with fancy LHSsGravatar Rustan Leino2011-05-31
|
* Dafny: Translate general LHSs for var and := (not yet for call, no ↵Gravatar Rustan Leino2011-05-30
| | | | compilation yet)
* Dafny: changed syntax of havoc statements from "havoc X;" to "X := *;"Gravatar Rustan Leino2011-05-28
|
* Dafny: added constructorsGravatar Rustan Leino2011-05-28
|
* MergeGravatar Rustan Leino2011-05-27
|\
* | Dafny:Gravatar Rustan Leino2011-05-27
| | | | | | | | | | * fixed bug in allowing ghost out-parameters of ghost methods * added test case for verifying calls of the form MyClass.M(...)
| * MergeGravatar Rustan Leino2011-05-27
| |\ | |/ |/|
* | Dafny: permanently changed the syntax of "datatype" declarations to what ↵Gravatar Rustan Leino2011-05-27
| | | | | | | | previously was an alternative syntax
* | Dafny: retired "use" statementsGravatar Rustan Leino2011-05-27
| |
* | Dafny: added chaining operatorsGravatar Rustan Leino2011-05-27
| |
* | Dafny:Gravatar Rustan Leino2011-05-26
| | | | | | | | | | | | * fixed ghost/non-ghost story for breaks and returns * changed compilation/translation to always use goto's to implement Dafny's breaks * introduced "break break" statements
| * Dafny: fixed bug in induction-tactic heuristic (should never pick values ↵Gravatar Rustan Leino2011-05-26
| | | | | | | | whose type is a type parameter)
| * Dafny: fixed bug (ill-formed Boogie) in translation of "foreach" for sequencesGravatar Rustan Leino2011-05-26
| |
* | Dafny: retired the "call" keywordGravatar Rustan Leino2011-05-26
| |
* | Dafny: allow class names to be used when referring to static functions (and, ↵Gravatar Rustan Leino2011-05-21
| | | | | | | | soon, methods), and test cases for new name resolution rules
* | Dafny:Gravatar Rustan Leino2011-05-21
|/ | | | | | | | | | * started rewriting parsing of qualified identifiers in expressions * annoyingly, had to introduce AST nodes for concrete syntax * previous syntax for invoking datatype constructors: #List.Cons(h, t) new syntax: List.Cons(h, t) or, if only one datatype has a constructor named Cons: Cons(h, t) * Removed type parameters for datatype constructors from the grammar * Helped Test/VSI-Benchmarks/b4.dfy along with a couple of assertions (previously, its proving performance was highly varied)
* Dafny: added alternative statement and alternative-loop statementGravatar Rustan Leino2011-05-19
|
* Dafny: let verifier, not the resolver, check for missing cases in match ↵Gravatar Rustan Leino2011-05-19
| | | | expressions/statements
* Dafny: added set comprehension expressionsGravatar Rustan Leino2011-05-18
|
* Dafny: Test case for sequence of boxed booleansGravatar Rustan Leino2011-05-16
|
* Dafny: added some test cases that use natGravatar Rustan Leino2011-05-16
|
* Dafny: added optional range expressions to logical quantifiers, preparing ↵Gravatar Rustan Leino2011-05-15
| | | | for addition other other comprehensions (like set comprehension)
* MergeGravatar Rustan Leino2011-05-13
|\
* | Boogie: added features to help with modular verification. In particular, ↵Gravatar Rustan Leino2011-05-13
| | | | | | | | define FILE_n when parsing file n on the command line, and support :extern and :ignore attributes on top-level declarations.
* | Cleaner version of ghost loop termination example.Gravatar Unknown2011-05-13
| |
* | Dafny: fixed bugs in resolution of multi-dimensional arraysGravatar Rustan Leino2011-05-12
| |
* | Dafny: forbid "decreases *" on ghost loopsGravatar Rustan Leino2011-05-12
| |
| * Dafny:Gravatar Rustan Leino2011-05-11
| | | | | | | | | | | | * added missing error checking for ghost-vs-physical contexts (e.g., use of the "old" keyword) * check that arrays are not null when accessed * added dafny1/FindZero.dfy test case
* | Dafny: fixed compilation bugs, added @-signs in front of identifiers to ↵Gravatar Rustan Leino2011-05-11
|/ | | | avoid clashes with C# keywords, added switch in runtest scripts to turn on compilation