summaryrefslogtreecommitdiff
path: root/Test/dafny0/DirtyLoops.dfy
Commit message (Collapse)AuthorAge
* Fix lit headers implicitly relying on bash-style constructsGravatar Clément Pit--Claudel2015-06-08
| | | | | Window's batch doesn't recognize ";" as a command separator; lit has a workaround for that, bu it's just as simple to do the right thing on our side.
* Language change: All functions and methods declared lexically outside any ↵Gravatar leino2014-12-12
| | | | | | | | | | class are now automatically static, and fields are no longer allowed to be declared there. Stated differently, all heap state must now be declared inside an explicitly declared class, and functions and methods declared outside any class can be viewed as belonging to the module. The motivating benefit of this change is to no longer need the 'static' keyword when declaring a module of functions and methods.
* Added computation of free variables in dirty while statements.Gravatar chmaria2014-11-06
|
* Made dirty statements ghost.Gravatar chmaria2014-11-04
|
* Added initial support for dirty while statements.Gravatar chmaria2014-11-01
|
* Added support for 'dirty' forall statements.Gravatar chmaria2014-06-03
One can now write forall statements without bodies (but with ensures clauses) as follows: forall s | s in S ensures s < 0; where S is set<int>. The ensures clauses are assumed but not checked.