Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Dafny: Fixed a bug in the pretty printer. | 2011-12-26 | |
| | |||
* | Dafny: Extended the support for attributes on method/constructor calls. | 2011-12-23 | |
| | |||
* | Dafny: Added support for attributes on method/constructor calls. | 2011-12-21 | |
| | |||
* | Dafny: for a datatype with just one constructor, don't check (but do assume) ↵ | 2011-12-19 | |
| | | | | that destructors are applied only to those values constructed by that one-and-only constructor | ||
* | Dafny: Made sure that error locations refer to the Dafny program, even if ↵ | 2011-12-15 | |
| | | | | the /print option is used. | ||
* | Dafny: Added support for attributes on various specification constructs ↵ | 2011-12-07 | |
| | | | | (assert, ensures, modifies, decreases, invariant). | ||
* | Dafny: fix bug in translation of (the splitting of) if-then-else expressions ↵ | 2011-12-10 | |
| | | | | (see bug report Issue 10214 on codeplex) | ||
* | Merge | 2011-12-07 | |
|\ | |||
* \ | Merge | 2011-12-07 | |
|\ \ | |||
| * | | Dafny: Forward attributes on Dafny functions to Boogie (e.g., to disable ↵ | 2011-12-07 | |
| | | | | | | | | | | | | wellformedness checks). | ||
* | | | Boogie: Added new abstract interpretation harness, which uses native Boogie ↵ | 2011-12-05 | |
|/ / | | | | | | | | | | | | | | | Expr's, not the more abstract AIExpr's. Boogie: Added Trivial Domain (/infer:t), which just detects assume/assert false. Boogie: Added new Interval Domain (/infer:j), which is stronger than the /infer:i intervals (because the also include preconditions, booleans, and more constraints) and may also be more efficient than previous intervals Boogie: Mark all inferred conditions with attribute {:inferred} | ||
| * | Dafny: Added "type" declaration (syntax: "type X;"), which introduces an ↵ | 2011-11-21 | |
|/ | | | | arbitrary type (like a global type parameter). In the future, a refined module may allow such types to be instantiated. | ||
* | Dafny: added let expressions (syntax: "var x := E0; E1") | 2011-11-14 | |
| | | | | | Dafny: firmed up semantics of assert/assume expressions (the condition is now good for all program control paths that pass through the expression) Dafny: various implementation clean-ups | ||
* | Dafny: implemented the wellformedness check that datatype destructors are ↵ | 2011-11-11 | |
| | | | | | | only applied to values created by the corresponding constructor Dafny: implement ghost destructors properly | ||
* | Dafny: allow assert/assume expressions in more places | 2011-11-09 | |
| | |||
* | Dafny: added assert/assume expressions | 2011-11-09 | |
| | |||
* | Dafny: fixed part of a type-inference issue with datatypes and the < ↵ | 2011-11-09 | |
| | | | | | | operator on datatypes Dafny: allow the well-formedness check of a function's specification to know that the function, on the current arguments, returns a value of the declared result type | ||
* | Dafny: fixed bug in reads checking of array-to-sequence conversions | 2011-11-08 | |
| | |||
* | Dafny induction: | 2011-10-29 | |
| | | | | | | | * implemented induction tactic for result-less, non-mutating ghost methods * refine heuristics for determining if a variables is usefully passed to a recursive function * disallow certain "ensures" to use two-state features (needed for soundness of the parallel-statement translation, see comments in Resolver.cs and ParallelResolveErrors.dfy) * added command-line flags /induction and /inductionHeuristic (everything is on by default) | ||
* | Dafny: removed Dafny's "foreach" statements (replaced by the new "parallel" ↵ | 2011-10-26 | |
| | | | | statement) | ||
* | Dafny: removed support for assigning to an array-range (that is, an ↵ | 2011-10-26 | |
| | | | | assignment statement where the LHS has the form a[lo..hi]) | ||
* | Dafny: implemented compilation of parallel statements | 2011-10-25 | |
| | | | | Dafny: beefed up resolution of parallel statements | ||
* | Dafny: check subrange restriction in parallel Assign statement | 2011-10-24 | |
| | | | | | Dafny: verify parallel Call statement Dafny: fixed some bugs: handle all cases of comprehension expressions in resolver's UsesSpecFeatures, check target of method calls to be non-null (duh!) | ||
* | Dafny: continued translation of "parallel" statements (Assign and Proof ↵ | 2011-10-24 | |
| | | | | | | | forms are mostly there, Call is missing and so is compilation) Dafny: included some test cases for the "parallel" statement Dafny: starting changing old "foreach" statements to the new "parallel" statement | ||
* | Dafny: changed triggers (which are never really used, anyhow) from having a ↵ | 2011-10-21 | |
| | | | | | | | special syntactic form to being just an attribute Dafny: added "parallel" statement (so far, only parsing and resolving) Dafny: allow types on bound variables in "match" expressions/statements (there's never any incentive to list them explicitly in the program text, but it nevertheless seemed silly to forbid them) | ||
* | Dafny: fixed bug in translator when LHS of a call was an array element or a nat | 2011-09-30 | |
| | |||
* | Dafny: Added support for attributes on methods and constructors. | 2011-09-16 | |
| | |||
* | Dafny: fixed parsing bug with "!in" | 2011-09-08 | |
| | | | | | Dafny: fixed translation bug with missing match cases (where the constructor has some parameters) Dafny: fixed translation bug where the program had forward references to members of a datatype | ||
* | Merge | 2011-08-18 | |
|\ | |||
* | | Dafny: fixed bug in looking at the arguments of the :induction attribute | 2011-08-18 | |
| | | |||
| * | Dafny: Fixed a bug in the printer that led to a stack overflow. | 2011-08-11 | |
|/ | |||
* | Dafny: fix resolution crash (using multi-dimensional arrays in loop alternative) | 2011-08-03 | |
| | |||
* | Fixed regression test failures due to removal of bodiless methods and functions. | 2011-07-15 | |
| | |||
* | Fixed failing regression tests. | 2011-07-14 | |
| | |||
* | Merge | 2011-07-14 | |
|\ | |||
* | | Added multiset from sequence axioms, removed array range RHSs. Fixed issue ↵ | 2011-07-13 | |
| | | | | | | | | with duplicate array.Length functions in generated Boogie file. | ||
| * | Merge | 2011-07-11 | |
| |\ | |||
| * | | Dafny: allow constructors only inside classes, removed semi-colons at end of ↵ | 2011-07-11 | |
| | | | | | | | | | | | | body-less functions/methods | ||
* | | | Added s[..] syntax in anticipation of sequence forming operation. (also ↵ | 2011-07-11 | |
| |/ |/| | | | | | updated regression tests.) | ||
* | | Dafny: Added Euclidean regression test (Verifier only). | 2011-07-08 | |
|/ | |||
* | Dafny: Fixed bug in call statements where mutability of out parameters was ↵ | 2011-07-06 | |
| | | | | | | not checked. Added regression test. | ||
* | Dafny: Updated regression tests to include chaining disjoint operators. | 2011-07-05 | |
| | |||
* | Added additional test case to modifies on loops tests. | 2011-06-29 | |
| | |||
* | Removed tab characters. | 2011-06-29 | |
| | |||
* | Merge | 2011-06-29 | |
|\ | |||
* | | Added regression tests for new return statements with parameters. | 2011-06-29 | |
| | | |||
| * | Merge | 2011-06-29 | |
| |\ | |/ |/| | |||
| * | Dafny: Fixed axioms for Seq#Contains vs. the sequence building functions | 2011-06-29 | |
| | | |||
* | | Added regression test file LoopModifies.dfy. | 2011-06-29 | |
| | | |||
* | | Added regression test for loop modifies clauses. | 2011-06-28 | |
| | |