Datalog with support for SMT queries and first-order functional programming
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?
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.