abc/src/sat/bsat2
Alan Mishchenko 5c93850553 Compiler problems. 2014-10-21 20:24:13 -07:00
..
AbcApi.cpp Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Alg.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Alloc.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Dimacs.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Heap.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
IntTypes.h Compiler problems. 2014-10-21 20:13:25 -07:00
LICENSE Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
MainSat.cpp Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
MainSimp.cpp Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Map.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Options.cpp Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Options.h Compiler problems. 2014-10-21 20:13:25 -07:00
ParseUtils.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Queue.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
README Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
ReleaseNotes-2.2.0.txt Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
SimpSolver.cpp Compiler problems. 2014-10-21 20:18:14 -07:00
SimpSolver.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Solver.cpp Compiler problems. 2014-10-21 20:20:22 -07:00
Solver.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
SolverTypes.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Sort.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
System.cpp Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
System.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Vec.h Compiler problems. 2014-10-21 20:24:13 -07:00
XAlloc.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
module.make Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
pstdint.h Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00

README

================================================================================
DIRECTORY OVERVIEW:

mtl/            Mini Template Library
utils/          Generic helper code (I/O, Parsing, CPU-time, etc)
core/           A core version of the solver
simp/           An extended solver with simplification capabilities
README
LICENSE

================================================================================
BUILDING: (release version: without assertions, statically linked, etc)

export MROOT=<minisat-dir>              (or setenv in cshell)
cd { core | simp }
gmake rs
cp minisat_static <install-dir>/minisat

================================================================================
EXAMPLES:

Run minisat with same heuristics as version 2.0:

> minisat <cnf-file> -no-luby -rinc=1.5 -phase-saving=0 -rnd-freq=0.02