Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

glnc/microsat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

73 Commits

Repository files navigation

microsat

microsat is a simple CDCL SAT solver, originally created by Marijn Heule and Armin Biere.

This fork adds the following features:

  • Deduce implicit variable decisions by propagating a (partial) assignment of the SAT problem variables
  • Check the status of a (partial) assignment of the SAT problem variables:
    • BUILDABLE: The problem will evaluate to true after completing the assignment by setting all undecided variables implicitely to false.
    • INCOMPLETE: Otherwise.

Build

./configure && make

Build and Install

./configure && sudo make install

Usage

Print usage

microsat

Version info

microsat --version

Check satisfiability of a DIMACS encoded SAT problem

microsat DIMACS_FILE

Propagate an (partial) assignment

microsat --propagate DIMACS_FILE

DIMACS file

The (partial) assignment is denoted as a DIMACS comment line which has to be added somewhere before the problem line:

c v<NUMBER_OF_ASSIGNED_VARIABLES> <ASSIGNED_VARIABLES>

For example:

c v4 5 -7 18 -20
p cnf ...

Two demo files (one for each status described above) can be found in the test subdirectory.

Packages

No packages published

Languages

  • C 100.0%

AltStyle によって変換されたページ (->オリジナル) /