Skip to content

ericpony/leon-intellij-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

leon-intellij-plugin

This repo offers the minimal files needed to integrate Leon into your IntelliJ Scala project.

Setup IntelliJ IDEA 14.0

  1. 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 as Leon.

  2. Go to File > Project Structure > Modules > YourAppName. Add the Leon module to the module dependency list. This step enables IntelliJ to recognize the Leon packages in your code and link them in compilation.

  3. Go to the dependency list of the Leon module. Add a Scala SDK as an external library. Also, add the library directory as Sources dependency. This step enables IntelliJ to make the Leon module.

  4. Go to Build and choose Make Module 'Leon'.

  5. 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.

Command-line Execution

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.

Command-line compilation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published