By Bart Jacobs*, Jan Smans*, and Frank Piessens*, with contributions by Pieter Agten*, Cedric Cuypers*, Lieven Desmet*, Jan Tobias Muehlberg*, Willem Penninckx*, Pieter Philippaerts*, Amin Timany*, Thomas Van Eyck*, Gijs Vanspauwen*, Frédéric Vogels*, and external contributors
* imec-DistriNet research group, Department of Computer Science, KU Leuven - University of Leuven, Belgium
VeriFast is a research prototype of a tool for modular formal verification of correctness properties of single-threaded and multithreaded C and Java programs annotated with preconditions and postconditions written in separation logic. To express rich specifications, the programmer can define inductive datatypes, primitive recursive pure functions over these datatypes, and abstract separation logic predicates. To verify these rich specifications, the programmer can write lemma functions, i.e., functions that serve only as proofs that their precondition implies their postcondition. The verifier checks that lemma functions terminate and do not have side-effects. Since neither VeriFast itself nor the underlying SMT solver need to do any significant search, verification time is predictable and low.
The VeriFast source code and binaries are released under the MIT license.
A few minutes after each push to the master branch, binary packages become available at the following URLs:
For the latest named releases, for now see here.
Simply extract the files from the archive to any location in your filesystem. All files in the archive are in a directory named verifast-HASH where HASH is the Git commit hash. For example, on Linux:
tar xzf ~/Downloads/verifast-nightly.tar.gz
cd verifast-<TAB> # Press Tab to autocomplete
bin/vfide examples/java/termination/Stack.jarsrc # Launch the VeriFast IDE with the specified example
./test.sh # Run the test suite (verifies all examples)
- The VeriFast Tutorial
- Featherweight VeriFast (Slides, handouts, Coq proof)
- Scientific papers on the various underlying ideas
This work is supported in part by the Flemish Research Fund (FWO-Vlaanderen), by the EU FP7 projects SecureChange, STANCE, and ADVENT, by Microsoft Research Cambridge as part of the Verified Software Initiative, and by the Research Fund KU Leuven.
- Kiwamu Okabe created a Google Groups forum on VeriFast
- Kiwamu Okabe translated the VeriFast Tutorial into Japanese. Thanks, Kiwamu!