This repository mirrors the Glucose project on GitHub.
The original instructions for building the software are
in README
.
Differently from the original source code, we use CMake as a build tool.
On Ubuntu:
sudo apt-get install cmake
Glucose depends on zlib.
On Ubuntu:
sudo apt-get install zlib-dev
To build the software, run the following commands:
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j
The produced artifacts will be:
libglucose.a
andlibglucosep.a
: the static libraries for the simple and parallel version of the SAT solver, respectively.glucose-simp
andglucose-syrup
: the binaries for the simple and parallel version of the SAT solver, respectively.