This repo offers the minimal files needed to integrate Leon into your IntelliJ Scala project.
-
Go to File > Import. Select module Select Create Module from Existing Sources to import the
library
directory in this repo to your project. Suppose we name the new module asLeon
. -
Go to File > Project Structure > Modules > YourAppName. Add the
Leon
module to the module dependency list. This step enables IntelliJ to recognize theLeon
packages in your code and link them in compilation. -
Go to the dependency list of the
Leon
module. Add a Scala SDK as an external library. Also, add thelibrary
directory as Sources dependency. This step enables IntelliJ to make theLeon
module. -
Go to Build and choose Make Module 'Leon'.
-
If everything went right, now you should be able to compile Leon programs (or more precisely, Leon programs that don’t use special constructs such as
choose
) in IntelliJ.
Remark. If you simply add the library
directory to the dependency list of your project, IntelliJ can still recognize the Leon packages in your source code. However, it would report "package not found" errors if you try to compile the code.
To run Leon in command line, you need to make z3 or cvc4 accessible in PATH. The easiest way to obtain a Z3 executable for your OS is to download it from here. The ./leon
script in this repo helps you run Leon in the default settings. For example, try ./leon example/FlatMap.scala
. The script can take options in addition to a filename. See here for details of available options.
To compile Leon programs using scalac, you need to explicitly include files from the Leon library (that are implicitly bundled when you use the ./leon
script):
scalac $(find ./library -name "*.scala" | xargs) MyLeonApp.scala