summaryrefslogtreecommitdiff
path: root/Test
Commit message (Collapse)AuthorAge
* Added several co-induction examples from a 1996 paper by Larry Paulson.Gravatar Rustan Leino2013-03-15
|
* Added explies support to calculations.Gravatar Nadia Polikarpova2013-03-15
|
* Added a test case for <==.Gravatar Nadia Polikarpova2013-03-14
|
* Adjustments in the /vcsMaxKeepGoingSplits flag in the test suiteGravatar Rustan Leino2013-03-09
|
* Disallow allocations in ghost contextsGravatar Rustan Leino2013-03-06
|
* New Answer file from previous changeGravatar Rustan Leino2013-03-06
|
* Renamed "parallel" statement to "forall" statement, and made the parentheses ↵Gravatar Rustan Leino2013-03-06
| | | | around the bound variables optional.
* New well-formedness checks for calculations (no cascading).Gravatar Nadia Polikarpova2013-03-05
|
* Added side-effects and control-flow checks in hints.Gravatar Nadia Polikarpova2013-03-05
|
* Adjustment in test output from previous commitGravatar Rustan Leino2013-02-21
|
* Fixed let-such-that and if-then-else encodings so that they will pass the ↵Gravatar Rustan Leino2013-02-21
| | | | subrange tests
* Added Equals method on TypeGravatar Rustan Leino2013-02-20
| | | | | Fixed some precondition violations Various improvements in Contracts
* Added tests: parallel calc, better well-formedness checks, calc expression.Gravatar Nadia Polikarpova2013-02-15
|
* Support for paren-free guards in if and while statements.Gravatar Nadia Polikarpova2013-02-15
|
* Updated a test in dafny2 with the new calc syntax.Gravatar Nadia Polikarpova2013-02-14
|
* MergeGravatar Nadia Polikarpova2013-02-13
|\
| * Frame expressions are now checked to be well formed.Gravatar Rustan Leino2013-02-13
| | | | | | | | (A nice consequence of this is that the method IsTotal is no longer needed.)
* | MergeGravatar Nadia Polikarpova2013-02-14
|\|
| * Report error if type of a quantified variable cannot be inferredGravatar Rustan Leino2013-02-11
| |
* | MergeGravatar Nadia Polikarpova2013-02-12
|\|
| * Reverted some accidental changes to a test caseGravatar Rustan Leino2013-02-11
| |
* | Changed calc syntax (custom operators are now written before the hint)Gravatar Nadia Polikarpova2013-02-08
|/
* Added some test cases that show exmaples that iterate over set elements.Gravatar Rustan Leino2013-02-02
|
* Renamed a variable in some test casesGravatar Rustan Leino2013-02-02
|
* Fixed another specification bug in a test case.Gravatar Rustan Leino2013-01-23
|
* Fixed bug in translation of method termination checks, and also fixed a ↵Gravatar Rustan Leino2013-01-23
| | | | (previously undetected) specification bug in the test suite.
* Split verification of quantifier expressions into #2 for checked and #1 for ↵Gravatar Rustan Leino2013-01-23
| | | | | | assumed. Fixed cases where token was not being updated for refinement.
* Examples from co-induction paperGravatar Rustan Leino2013-01-22
|
* Translate let-such-that expressionsGravatar Rustan Leino2013-01-22
|
* More automatic co-induction for comethodsGravatar Rustan Leino2013-01-20
|
* Added some co- test cases. Fixed some bugs.Gravatar Rustan Leino2013-01-20
|
* Fixed the problem with the previous check-in.Gravatar Rustan Leino2013-01-18
|
* Some additional resolution checks for co stuff.Gravatar Unknown2013-01-18
| | | | Beefed up some test cases.
* Proper support for inlining codatatype equalitiesGravatar Rustan Leino2013-01-18
|
* Removed the syntactic form copredicate #-form with the implicit argument.Gravatar Rustan Leino2013-01-16
| | | | Added syntactic support for codatatype #-form equalities.
* Encode codatatype equalities by predefined copredicates, including their ↵Gravatar Rustan Leino2013-01-15
| | | | prefix versions
* Support for copredicates and prefix predicates in comethods.Gravatar Rustan Leino2012-12-04
| | | | | | (Missing from the co support are (prefix) equalities of codatatypes, various restrictions on the use of co/prefix-predicates, and tactic support for applying the (prefix-)induction automatically.)
* Parse prefix predicates/methodsGravatar Rustan Leino2012-11-24
|
* Beefed up loop invariant to prove a functional postcondition in a test case.Gravatar Rustan Leino2012-11-24
|
* fixed type resolution bug (http://boogie.codeplex.com/discussions/403801)Gravatar Rustan Leino2012-11-20
|
* Beautified a test programGravatar Rustan Leino2012-11-19
|
* renamed "abstract module" to "module facade"Gravatar Rustan Leino2012-10-22
| | | | renamed "ghost module" to "abstract module", adding a keyword "abstract"
* allow a refinement to introduce "return" statements, at the price of ↵Gravatar Rustan Leino2012-10-22
| | | | | | re-verifying the postcondition at that time let refined classes inherit attributes
* added some calculational proofs from Dijkstra's writingsGravatar Rustan Leino2012-10-21
|
* Test cases for co-inductive proofs, and an axiom that makes some of them ↵Gravatar Rustan Leino2012-10-19
| | | | possible
* added two "calc" proofs (by Nadia) of the MajorityVote exampleGravatar Unknown2012-10-19
|
* fixed and improved scheme for inferring type parametersGravatar Rustan Leino2012-10-19
|
* Added a test case for "all cases of a datatype"Gravatar Unknown2012-10-17
|
* Included "all cases of a datatype" property for method in-parameters (see ↵Gravatar Unknown2012-10-17
| | | | http://boogie.codeplex.com/discussions/397616).
* Added some axioms to try to recover boxed data. In particular, any element ↵Gravatar Unknown2012-10-17
| | | | 'x' of a set in the encoding satisfies Box(Unbox(x))==x. The soundness and performance of the axiomatization are dicey, so the axioms are made available only to method in-parameters.