summaryrefslogtreecommitdiff
path: root/Test/dafny0/Basics.dfy
Commit message (Collapse)AuthorAge
* Pass assert/assume attributes down to BoogieGravatar Rustan Leino2013-12-16
|
* Add support for hexidecimal numbers.Gravatar parno2013-07-30
|
* Axioms that relate (multi)set cardinality with (multi)set difference.Gravatar Rustan Leino2013-07-16
| | | | Removed three redundant multiset axioms.
* Beefed up axioms about cardinality and the empty (multi)set, which fixes ↵Gravatar Rustan Leino2013-06-20
| | | | | | Issue 17 on dafny.codeplex.com. Added information that allows multiset members to be unboxed as needed (mimicking what was already done for sets).
* Fixed some omitted cases in Substitute (and added "assume false" to catch ↵Gravatar Rustan Leino2013-05-21
| | | | any other, later)
* Moved resolution of BinaryExpr.ResolveOp until the CheckTypeInference phase, ↵Gravatar Rustan Leino2013-04-01
| | | | | | | where more type information is known Refactored ConcreteUpdateStatement to no longer inherit from ConcreteSyntaxStatement. Fixed numerous places where some recursive checks did not reach.
* Added a test case for <==.Gravatar Nadia Polikarpova2013-03-14
|
* MergeGravatar Jason Koenig2012-06-13
|\
* | Dafny: allow parallel assignments to assign to the same LHS if the RHS match.Gravatar Jason Koenig2012-06-13
|/
* Dafny: Added Euclidean regression test (Verifier only).Gravatar Jason Koenig2011-07-08
|
* 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: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(...)
* Dafny: added chaining operatorsGravatar Rustan Leino2011-05-27
|
* 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