Inox is a solver for higher-order functional programs which provides first-class support for features such as:
- Recursive and first-class functions
- ADTs, integers, bitvectors, strings, set-multiset-map abstractions
- Quantifiers
- ADT invariants
- Dependent types
Interfacing with the solver can take place through the Scala API by constructing the AST corresponding to the query of interest and then feeding it to one of the solvers. For more information, see:
- The usage tutorial gives some insight on how to use Inox as a library.
- The tree interpolators provide easy tree construction/extraction for library use.
- A more detailed description of the available solver/evaluator API calls.
- A description of the trees API and how to extend them.
To add Inox as a dependency of your project, add the following lines to your build.sbt
,
where VERSION
can be replaced by a tag (eg. v1.1.5
), a branch name (eg. master
)
or a commit hash (eg. 6dfb351eee
).
resolvers += "jitpack" at "https://jitpack.io"
resolvers += "uuverifiers" at "http://logicrunch.it.uu.se:4096/~wv/maven"
libraryDependencies += "com.github.epfl-lara" % "inox" % "VERSION"
Please see the releases page for the latest Inox release.
Use without the jitpack.io resolver
Alternatively, one can depend on Inox without using the jitpack.io resolver in the following way:
resolvers += "uuverifiers" at "http://logicrunch.it.uu.se:4096/~wv/maven"
def ghProject(repo: String, version: String) = RootProject(uri(s"${repo}#${version}"))
lazy val inox = ghProject(
"https://github.com/epfl-lara/inox.git",
"6dfb351eeee44a3f13152bf510aceba7936d0e4d"
)
One can also use Inox through command-line by using the TIP format to describe the relevant query. The easiest way to use the Inox command line is to simply build the project and use the generated script.
Inox relies on SMT solvers to solve the constraints it generates. Inox ships with the JVM SMT solver Princess which should work out of the box on any system.
You can also use the following external SMT solvers:
Solver binaries that you install should match your operating
system and your architecture. We recommend that you install
these solvers as a binary and have their binaries available
in the $PATH
(as z3
or cvc4
). Once they are installed,
you can instruct Inox to use a given sequence of solvers.
The more solvers you have installed, the more successful Inox might get,
because solver capabilities are incomparable.
In addition to these external binaries, a native Z3 API for Linux is bundled with Inox and should work out of the box (although having an external Z3 binary is a good idea in any case). If you build yourself, the generated script should put the native API onto your classpath. Otherwise, you will have to make sure the relevant jar from "unmanaged" is on your runtime classpath.
For other platforms than Linux, you will have to recompile the native Z3 communication layer yourself; see ScalaZ3 repository for information about how to build and package the project. You will then need to copy the resulting jar into the "unmanaged" directory named "scalaz3-$os-$arch-$scalaBinaryVersion.jar" (replace the $ variables by the relevant values).
As of now the default solver is the native Z3 API. If that solver
is unavailable, a series of fallbacks take place until the
princess solver. You can specify which solver to use by
e.g. giving the option
--solvers=smt-cvc4
to use CVC4. Check the --solvers
line in Inox' help.
Inox is probably easiest to build on Linux-like platforms, but read on regarding other platforms.
Due to its nature, this documentation section may not always be up to date; we welcome pull requests with carefully written and tested improvements to the information below.
Requirements:
- Java SE Development Kit 8 or Java SE Development Kit 7 for your platform
- SBT 0.13.x (Available from http://www.scala-sbt.org/)
- The git command on your path
Note: this is only required for version computation and you can avoid installing Git by using JGit (see the related documentation insbt-git
).
Get the sources of Inox by cloning the official Inox repository:
$ git clone https://github.com/epfl-lara/inox.git
Cloning into 'inox'...
// ...
$ cd inox
$ sbt clean compile
// takes about 1 minutes
Inox compilation generates an inox
bash script that runs Inox with all
the appropriate settings. This script expects argument files in the
TIP input format and will report SAT or UNSAT
to the specified properties.
See ./inox --help
for more information about script usage.
Not yet tested!
You will need a Git shell for windows, e.g. Git for Windows. Building then proceeds as described above.
You will then need to either port the bash inox
script to Windows, or run it
under Cygwin.
You may be able to obtain additional tips on getting Inox to work on Windows from Mikael Mayer or on his dedicated web page.
Inox comes with a test suite. Consider running the following commands to invoke different test suites:
$ sbt test
$ sbt it:test