abc/src/sat/bsat2
Allen Ho d87b1cd543 fixed some warnings in bsat2 2024-03-04 10:16:14 +08:00
..
AbcApi.cpp Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
Alg.h More changes. 2024-03-02 16:46:09 -08:00
Alloc.h More changes. 2024-03-02 16:46:09 -08:00
Dimacs.h More changes. 2024-03-02 16:46:09 -08:00
Heap.h More changes. 2024-03-02 16:46:09 -08:00
IntTypes.h More changes to compile with namespaces. 2024-03-02 16:38:16 -08:00
LICENSE Adding code of MiniSAT 2.2. 2014-10-21 19:45:52 -07:00
MainSat.cpp More changes. 2024-03-02 16:46:09 -08:00
MainSimp.cpp More changes. 2024-03-02 16:46:09 -08:00
Map.h More changes. 2024-03-02 16:46:09 -08:00
Options.cpp fixed some warnings in bsat2 2024-03-04 10:16:14 +08:00
Options.h fixed some warnings in bsat2 2024-03-04 10:16:14 +08:00
ParseUtils.h Fixing a compiler problem with namespaces. 2024-03-02 16:10:37 -08:00
Queue.h More changes. 2024-03-02 17:10:30 -08: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 fixed some warnings in bsat2 2024-03-04 10:16:14 +08:00
SimpSolver.h More changes. 2024-03-02 16:46:09 -08:00
Solver.cpp fixed some warnings in bsat2 2024-03-04 10:16:14 +08:00
Solver.h More changes. 2024-03-02 16:46:09 -08:00
SolverTypes.h More changes. 2024-03-02 16:46:09 -08:00
Sort.h More changes. 2024-03-02 16:46:09 -08:00
System.cpp More changes. 2024-03-02 16:46:09 -08:00
System.h More changes. 2024-03-02 16:57:00 -08:00
Vec.h fixed some warnings in bsat2 2024-03-04 10:16:14 +08:00
XAlloc.h More changes to compile with namespaces. 2024-03-02 16:38:16 -08:00
module.make More changes. 2024-03-02 17:03:42 -08: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