TL;DR: write SMT-based program analyses (symbolic executors, refinement type checkers, etc.) in an optimized Datalog-like language.
Datalog has proven to be a useful language for implementing a range of program analyses, but analyses that use SMT solving cannot be easily written in traditional versions of Datalog. Formulog sets out to fill this gap by augmenting Datalog with ways to construct and reason about SMT formulas, as well as some first-order functional programming to make life easier.
Why write your SMT-based analysis in Formulog?
- By combining logic programming, functional programming, and SMT solving, Formulog makes it possible to encode many analyses declaratively at the level of mathematical specification (e.g., inference rules), closing the gap between specification and implementation---and often revealing bugs in the spec!
- This high-level encoding makes it possible for Formulog to apply high-level optimizations to your analysis, like automatic parallelization and goal-directed evaluation.
- Thanks to our Formulog-to-Soufflé compiler, you can automatically generate a C++ version of the analysis that leverages highly optimized Datalog algorithms and data structures.
Interested? For more information, check out the Formulog docs (also available in the docs directory), including tips on getting started and the language reference. To get a sense for what's involved in building a nontrivial SMT-based analysis in Formulog, check out our tutorial on implementing a refinement type checker in Formulog.
Contributions to this project are most welcome!
Please open a GitHub issue and then link a pull request to it.
Pull requests must be in the Google Java format before being merged.
To reformat your code, run mvn spotless:apply
; you can also check if your code is conformant (without reformatting it) by running mvn spotless:check
.
Formulog is released under an Apache 2.0 license.
This project uses third-party libraries. You can generate a list of these libraries and download their associated licenses with this command:
mvn license:download-licenses
The generated content can be found in the target/generated-resources/
directory.