Forked off MiniSAT 2.2, this repository aims at providing a production-ready version of the famous library.
- Keep the algorithm intact.
- Adapt for the modern C++ 2011 & 2014 standard.
- Support GCC, LLVM and MSVC.
- Support Linux, Windows native and MinGW/MSYS.
- Fix complier warnings (
-Wall -Wextra
). - Ensure code quality by automated build and tests.
- Clean the std. output and error output.
libgz
library was removed. Please usegunzip | minisat
instead.- Memory and CPU limits/stats are not supported well on all platforms.
Keen to help? Feel free to fork!
minisat/mtl
Mini Template Libraryminisat/utils
Generic helper code (I/O, Parsing, CPU-time, etc)minisat/core
A core version of the solverminisat/simp
An extended solver with simplification capabilitiesREADME.md
This read-me fileLICENSE
Licence files
# You can build in any directory, just name the minisat directory in the cmake
# command.
mkdir build && cd build
cmake ..
make
Run minisat with same heuristics as version 2.0:
minisat <cnf-file> -no-luby -rinc=1.5 -phase-saving=0 -rnd-freq=0.02