Skip to content
/ Skeptik Public
forked from Paradoxika/Skeptik

GSoC 2012 project on SAT proof compression

Notifications You must be signed in to change notification settings

Jogo27/Skeptik

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License Logo

Skeptik is a collection of data structures and algorithms focused especially on the compression of formal proofs.

Resolution proofs, in particular, are used by various sat-solvers, smt-solvers and automated theorem provers, as certificates of correctness for the answers they provide. These automated deduction tools have a wide range of application areas, from mathematics to software and hardware verification.

By providing smaller resolution proofs that are easier and faster to check, Skeptik aims at improving the reliability of these automated deduction tools and at facilitating the exchange of information between them.

###Usage Instructions###

You must have SBT (version >= 0.12.1) installed. Then go to Skeptik's root directory using the terminal and simply execute:

  export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF-8 -Xmx512m -XX:MaxPermSize=256m"

  sbt
  
  compress

(you may increase the value after -Xmx, if you need or want to provide more memory to the JVM)

Further instructions, such as possible command-line arguments, will be shown to you.

If you face any difficulty, do not hesitate to contact us.

###Usage Example###

The following command processes the proof 'eq_diamond9.smt2' using the algorithms 'RP' and the sequential composition of 'DAGify', 'RPI' and 'LU'. The compressed proofs are written using 'skeptik' proof format, and a csv file containing compression statistics is produced.

  sbt 
  
  compress -csv -a RP,(DAGify*RPI*LU) -o skeptik examples/proofs/VeriT/eq_diamond9.smt2

###Importing Skeptik###

To import Skeptik as a library in your own Java or Scala projects, add the following line to your build.sbt file, if you are using SBT to manage your library dependencies:

   libraryDependencies += "at.logic" %% "skeptik" % "1.0"

or add the following lines to your pom.xml file, if you are using Maven instead:

        <dependency>
            <groupId>at.logic</groupId>
            <artifactId>skeptik_2.10</artifactId>
            <version>1.0</version>
        </dependency>

###Stats###

Build Status Ohloh

###Development Policy###

Developers are encouraged to:

  1. fork from Paradoxika/Skeptik,
  2. program according to the usual Scala style conventions,
  3. follow the git flow branching model in their own forks,
  4. make pull requests when they have finished a feature or hotfix branch.

Using the git flow model can be easier with the gitflow extension for git.

###Documentation###

Detailed theoretical descriptions of some of the algorithms implemented in Skeptik are available in our papers. There are also slides of presentations about Skeptik.

Scaladoc documentation for the code can be generated by running the following command:

  sbt doc

###Active Developers###

Full list of contributors

###Job Opportunities###

###Communication Channels###

###Support###

About

GSoC 2012 project on SAT proof compression

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Scala 76.0%
  • Perl 13.6%
  • TeX 6.3%
  • Shell 4.1%