-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
5,753 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +0,0 @@ | ||
minisat | ||
release | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
config.mk | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
cmake_minimum_required(VERSION 2.6 FATAL_ERROR) | ||
|
||
project(minisat) | ||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Configurable options: | ||
|
||
option(STATIC_BINARIES "Link binaries statically." ON) | ||
option(USE_SORELEASE "Use SORELEASE in shared library filename." ON) | ||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Library version: | ||
|
||
set(MINISAT_SOMAJOR 2) | ||
set(MINISAT_SOMINOR 1) | ||
set(MINISAT_SORELEASE 0) | ||
|
||
# Compute VERSION and SOVERSION: | ||
if (USE_SORELEASE) | ||
set(MINISAT_VERSION ${MINISAT_SOMAJOR}.${MINISAT_SOMINOR}.${MINISAT_SORELEASE}) | ||
else() | ||
set(MINISAT_VERSION ${MINISAT_SOMAJOR}.${MINISAT_SOMINOR}) | ||
endif() | ||
set(MINISAT_SOVERSION ${MINISAT_SOMAJOR}) | ||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Dependencies: | ||
|
||
find_package(ZLIB) | ||
include_directories(${ZLIB_INCLUDE_DIR}) | ||
include_directories(${minisat_SOURCE_DIR}) | ||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Compile flags: | ||
|
||
add_definitions(-D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS) | ||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Build Targets: | ||
|
||
set(MINISAT_LIB_SOURCES | ||
minisat/utils/Options.cc | ||
minisat/utils/System.cc | ||
minisat/core/Solver.cc | ||
minisat/simp/SimpSolver.cc) | ||
|
||
add_library(minisat-lib-static STATIC ${MINISAT_LIB_SOURCES}) | ||
add_library(minisat-lib-shared SHARED ${MINISAT_LIB_SOURCES}) | ||
|
||
target_link_libraries(minisat-lib-shared ${ZLIB_LIBRARY}) | ||
target_link_libraries(minisat-lib-static ${ZLIB_LIBRARY}) | ||
|
||
add_executable(minisat_core minisat/core/Main.cc) | ||
add_executable(minisat_simp minisat/simp/Main.cc) | ||
|
||
if(STATIC_BINARIES) | ||
target_link_libraries(minisat_core minisat-lib-static) | ||
target_link_libraries(minisat_simp minisat-lib-static) | ||
else() | ||
target_link_libraries(minisat_core minisat-lib-shared) | ||
target_link_libraries(minisat_simp minisat-lib-shared) | ||
endif() | ||
|
||
set_target_properties(minisat-lib-static PROPERTIES OUTPUT_NAME "minisat") | ||
set_target_properties(minisat-lib-shared | ||
PROPERTIES | ||
OUTPUT_NAME "minisat" | ||
VERSION ${MINISAT_VERSION} | ||
SOVERSION ${MINISAT_SOVERSION}) | ||
|
||
set_target_properties(minisat_simp PROPERTIES OUTPUT_NAME "minisat") | ||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Installation targets: | ||
|
||
install(TARGETS minisat-lib-static minisat-lib-shared minisat_core minisat_simp | ||
RUNTIME DESTINATION bin | ||
LIBRARY DESTINATION lib | ||
ARCHIVE DESTINATION lib) | ||
|
||
install(DIRECTORY minisat/mtl minisat/utils minisat/core minisat/simp | ||
DESTINATION include/minisat | ||
FILES_MATCHING PATTERN "*.h") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MiniSat -- Copyright (c) 2003-2006, Niklas Een, Niklas Sorensson | ||
Copyright (c) 2007-2010 Niklas Sorensson | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
################################################################################################### | ||
|
||
.PHONY: r d p sh cr cd cp csh lr ld lp lsh config all install install-headers install-lib\ | ||
install-bin clean distclean | ||
all: r lr lsh | ||
|
||
## Load Previous Configuration #################################################################### | ||
|
||
-include config.mk | ||
|
||
## Configurable options ########################################################################### | ||
|
||
# Directory to store object files, libraries, executables, and dependencies: | ||
BUILD_DIR ?= build | ||
|
||
# Include debug-symbols in release builds | ||
MINISAT_RELSYM ?= -g | ||
|
||
# Sets of compile flags for different build types | ||
MINISAT_REL ?= -O3 -D NDEBUG | ||
MINISAT_DEB ?= -O0 -D DEBUG | ||
MINISAT_PRF ?= -O3 -D NDEBUG | ||
MINISAT_FPIC ?= -fpic | ||
|
||
# GNU Standard Install Prefix | ||
prefix ?= /usr/local | ||
|
||
## Write Configuration ########################################################################### | ||
|
||
config: | ||
@( echo 'BUILD_DIR?=$(BUILD_DIR)' ; \ | ||
echo 'MINISAT_RELSYM?=$(MINISAT_RELSYM)' ; \ | ||
echo 'MINISAT_REL?=$(MINISAT_REL)' ; \ | ||
echo 'MINISAT_DEB?=$(MINISAT_DEB)' ; \ | ||
echo 'MINISAT_PRF?=$(MINISAT_PRF)' ; \ | ||
echo 'MINISAT_FPIC?=$(MINISAT_FPIC)' ; \ | ||
echo 'prefix?=$(prefix)' ) > config.mk | ||
|
||
## Configurable options end ####################################################################### | ||
|
||
INSTALL ?= install | ||
|
||
# GNU Standard Install Variables | ||
exec_prefix ?= $(prefix) | ||
includedir ?= $(prefix)/include | ||
bindir ?= $(exec_prefix)/bin | ||
libdir ?= $(exec_prefix)/lib | ||
datarootdir ?= $(prefix)/share | ||
mandir ?= $(datarootdir)/man | ||
|
||
# Target file names | ||
MINISAT = minisat# Name of MiniSat main executable. | ||
MINISAT_CORE = minisat_core# Name of simplified MiniSat executable (only core solver support). | ||
MINISAT_SLIB = lib$(MINISAT).a# Name of MiniSat static library. | ||
MINISAT_DLIB = lib$(MINISAT).so# Name of MiniSat shared library. | ||
|
||
# Shared Library Version | ||
SOMAJOR=2 | ||
SOMINOR=1 | ||
SORELEASE?=.0# Declare empty to leave out from library file name. | ||
|
||
MINISAT_CXXFLAGS = -I. -D __STDC_LIMIT_MACROS -D __STDC_FORMAT_MACROS -Wall -Wno-parentheses -Wextra | ||
MINISAT_LDFLAGS = -Wall -lz | ||
|
||
ECHO=@echo | ||
ifeq ($(VERB),) | ||
VERB=@ | ||
else | ||
VERB= | ||
endif | ||
|
||
SRCS = $(wildcard minisat/core/*.cc) $(wildcard minisat/simp/*.cc) $(wildcard minisat/utils/*.cc) | ||
HDRS = $(wildcard minisat/mtl/*.h) $(wildcard minisat/core/*.h) $(wildcard minisat/simp/*.h) $(wildcard minisat/utils/*.h) | ||
OBJS = $(filter-out %Main.o, $(SRCS:.cc=.o)) | ||
|
||
r: $(BUILD_DIR)/release/bin/$(MINISAT) | ||
d: $(BUILD_DIR)/debug/bin/$(MINISAT) | ||
p: $(BUILD_DIR)/profile/bin/$(MINISAT) | ||
sh: $(BUILD_DIR)/dynamic/bin/$(MINISAT) | ||
|
||
cr: $(BUILD_DIR)/release/bin/$(MINISAT_CORE) | ||
cd: $(BUILD_DIR)/debug/bin/$(MINISAT_CORE) | ||
cp: $(BUILD_DIR)/profile/bin/$(MINISAT_CORE) | ||
csh: $(BUILD_DIR)/dynamic/bin/$(MINISAT_CORE) | ||
|
||
lr: $(BUILD_DIR)/release/lib/$(MINISAT_SLIB) | ||
ld: $(BUILD_DIR)/debug/lib/$(MINISAT_SLIB) | ||
lp: $(BUILD_DIR)/profile/lib/$(MINISAT_SLIB) | ||
lsh: $(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE) | ||
|
||
## Build-type Compile-flags: | ||
$(BUILD_DIR)/release/%.o: MINISAT_CXXFLAGS +=$(MINISAT_REL) $(MINISAT_RELSYM) | ||
$(BUILD_DIR)/debug/%.o: MINISAT_CXXFLAGS +=$(MINISAT_DEB) -g | ||
$(BUILD_DIR)/profile/%.o: MINISAT_CXXFLAGS +=$(MINISAT_PRF) -pg | ||
$(BUILD_DIR)/dynamic/%.o: MINISAT_CXXFLAGS +=$(MINISAT_REL) $(MINISAT_FPIC) | ||
|
||
## Build-type Link-flags: | ||
$(BUILD_DIR)/profile/bin/$(MINISAT): MINISAT_LDFLAGS += -pg | ||
$(BUILD_DIR)/release/bin/$(MINISAT): MINISAT_LDFLAGS += --static $(MINISAT_RELSYM) | ||
$(BUILD_DIR)/profile/bin/$(MINISAT_CORE): MINISAT_LDFLAGS += -pg | ||
$(BUILD_DIR)/release/bin/$(MINISAT_CORE): MINISAT_LDFLAGS += --static $(MINISAT_RELSYM) | ||
|
||
## Executable dependencies | ||
$(BUILD_DIR)/release/bin/$(MINISAT): $(BUILD_DIR)/release/minisat/simp/Main.o $(BUILD_DIR)/release/lib/$(MINISAT_SLIB) | ||
$(BUILD_DIR)/debug/bin/$(MINISAT): $(BUILD_DIR)/debug/minisat/simp/Main.o $(BUILD_DIR)/debug/lib/$(MINISAT_SLIB) | ||
$(BUILD_DIR)/profile/bin/$(MINISAT): $(BUILD_DIR)/profile/minisat/simp/Main.o $(BUILD_DIR)/profile/lib/$(MINISAT_SLIB) | ||
# need the main-file be compiled with fpic? | ||
$(BUILD_DIR)/dynamic/bin/$(MINISAT): $(BUILD_DIR)/dynamic/minisat/simp/Main.o $(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB) | ||
|
||
## Executable dependencies (core-version) | ||
$(BUILD_DIR)/release/bin/$(MINISAT_CORE): $(BUILD_DIR)/release/minisat/core/Main.o $(BUILD_DIR)/release/lib/$(MINISAT_SLIB) | ||
$(BUILD_DIR)/debug/bin/$(MINISAT_CORE): $(BUILD_DIR)/debug/minisat/core/Main.o $(BUILD_DIR)/debug/lib/$(MINISAT_SLIB) | ||
$(BUILD_DIR)/profile/bin/$(MINISAT_CORE): $(BUILD_DIR)/profile/minisat/core/Main.o $(BUILD_DIR)/profile/lib/$(MINISAT_SLIB) | ||
# need the main-file be compiled with fpic? | ||
$(BUILD_DIR)/dynamic/bin/$(MINISAT_CORE): $(BUILD_DIR)/dynamic/minisat/core/Main.o $(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB) | ||
|
||
## Library dependencies | ||
$(BUILD_DIR)/release/lib/$(MINISAT_SLIB): $(foreach o,$(OBJS),$(BUILD_DIR)/release/$(o)) | ||
$(BUILD_DIR)/debug/lib/$(MINISAT_SLIB): $(foreach o,$(OBJS),$(BUILD_DIR)/debug/$(o)) | ||
$(BUILD_DIR)/profile/lib/$(MINISAT_SLIB): $(foreach o,$(OBJS),$(BUILD_DIR)/profile/$(o)) | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE)\ | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR)\ | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB): $(foreach o,$(OBJS),$(BUILD_DIR)/dynamic/$(o)) | ||
|
||
## Compile rules (these should be unified, buit I have not yet found a way which works in GNU Make) | ||
$(BUILD_DIR)/release/%.o: %.cc | ||
$(ECHO) Compiling: $@ | ||
$(VERB) mkdir -p $(dir $@) | ||
$(VERB) $(CXX) $(MINISAT_CXXFLAGS) $(CXXFLAGS) -c -o $@ $< -MMD -MF $(BUILD_DIR)/release/$*.d | ||
|
||
$(BUILD_DIR)/profile/%.o: %.cc | ||
$(ECHO) Compiling: $@ | ||
$(VERB) mkdir -p $(dir $@) | ||
$(VERB) $(CXX) $(MINISAT_CXXFLAGS) $(CXXFLAGS) -c -o $@ $< -MMD -MF $(BUILD_DIR)/profile/$*.d | ||
|
||
$(BUILD_DIR)/debug/%.o: %.cc | ||
$(ECHO) Compiling: $@ | ||
$(VERB) mkdir -p $(dir $@) | ||
$(VERB) $(CXX) $(MINISAT_CXXFLAGS) $(CXXFLAGS) -c -o $@ $< -MMD -MF $(BUILD_DIR)/debug/$*.d | ||
|
||
$(BUILD_DIR)/dynamic/%.o: %.cc | ||
$(ECHO) Compiling: $@ | ||
$(VERB) mkdir -p $(dir $@) | ||
$(VERB) $(CXX) $(MINISAT_CXXFLAGS) $(CXXFLAGS) -c -o $@ $< -MMD -MF $(BUILD_DIR)/dynamic/$*.d | ||
|
||
## Linking rule | ||
$(BUILD_DIR)/release/bin/$(MINISAT) $(BUILD_DIR)/debug/bin/$(MINISAT) $(BUILD_DIR)/profile/bin/$(MINISAT) $(BUILD_DIR)/dynamic/bin/$(MINISAT)\ | ||
$(BUILD_DIR)/release/bin/$(MINISAT_CORE) $(BUILD_DIR)/debug/bin/$(MINISAT_CORE) $(BUILD_DIR)/profile/bin/$(MINISAT_CORE) $(BUILD_DIR)/dynamic/bin/$(MINISAT_CORE): | ||
$(ECHO) Linking Binary: $@ | ||
$(VERB) mkdir -p $(dir $@) | ||
$(VERB) $(CXX) $^ $(MINISAT_LDFLAGS) $(LDFLAGS) -o $@ | ||
|
||
## Static Library rule | ||
%/lib/$(MINISAT_SLIB): | ||
$(ECHO) Linking Static Library: $@ | ||
$(VERB) mkdir -p $(dir $@) | ||
$(VERB) $(AR) -rcs $@ $^ | ||
|
||
## Shared Library rule | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE)\ | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR)\ | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB): | ||
$(ECHO) Linking Shared Library: $@ | ||
$(VERB) mkdir -p $(dir $@) | ||
$(VERB) $(CXX) $(MINISAT_LDFLAGS) $(LDFLAGS) -o $@ -shared -Wl,-soname,$(MINISAT_DLIB).$(SOMAJOR) $^ | ||
$(VERB) ln -sf $(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE) $(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR) | ||
$(VERB) ln -sf $(MINISAT_DLIB).$(SOMAJOR) $(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB) | ||
|
||
install: install-headers install-lib install-bin | ||
install-debug: install-headers install-lib-debug | ||
|
||
install-headers: | ||
# Create directories | ||
$(INSTALL) -d $(DESTDIR)$(includedir)/minisat | ||
for dir in mtl utils core simp; do \ | ||
$(INSTALL) -d $(DESTDIR)$(includedir)/minisat/$$dir ; \ | ||
done | ||
# Install headers | ||
for h in $(HDRS) ; do \ | ||
$(INSTALL) -m 644 $$h $(DESTDIR)$(includedir)/$$h ; \ | ||
done | ||
|
||
install-lib-debug: $(BUILD_DIR)/debug/lib/$(MINISAT_SLIB) | ||
$(INSTALL) -d $(DESTDIR)$(libdir) | ||
$(INSTALL) -m 644 $(BUILD_DIR)/debug/lib/$(MINISAT_SLIB) $(DESTDIR)$(libdir) | ||
|
||
install-lib: $(BUILD_DIR)/release/lib/$(MINISAT_SLIB) $(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE) | ||
$(INSTALL) -d $(DESTDIR)$(libdir) | ||
$(INSTALL) -m 644 $(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE) $(DESTDIR)$(libdir) | ||
ln -sf $(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE) $(DESTDIR)$(libdir)/$(MINISAT_DLIB).$(SOMAJOR) | ||
ln -sf $(MINISAT_DLIB).$(SOMAJOR) $(DESTDIR)$(libdir)/$(MINISAT_DLIB) | ||
$(INSTALL) -m 644 $(BUILD_DIR)/release/lib/$(MINISAT_SLIB) $(DESTDIR)$(libdir) | ||
|
||
install-bin: $(BUILD_DIR)/dynamic/bin/$(MINISAT) | ||
$(INSTALL) -d $(DESTDIR)$(bindir) | ||
$(INSTALL) -m 755 $(BUILD_DIR)/dynamic/bin/$(MINISAT) $(DESTDIR)$(bindir) | ||
|
||
clean: | ||
rm -f $(foreach t, release debug profile dynamic, $(foreach o, $(SRCS:.cc=.o), $(BUILD_DIR)/$t/$o)) \ | ||
$(foreach t, release debug profile dynamic, $(foreach d, $(SRCS:.cc=.d), $(BUILD_DIR)/$t/$d)) \ | ||
$(foreach t, release debug profile dynamic, $(BUILD_DIR)/$t/bin/$(MINISAT_CORE) $(BUILD_DIR)/$t/bin/$(MINISAT)) \ | ||
$(foreach t, release debug profile, $(BUILD_DIR)/$t/lib/$(MINISAT_SLIB)) \ | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR).$(SOMINOR)$(SORELEASE)\ | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB).$(SOMAJOR)\ | ||
$(BUILD_DIR)/dynamic/lib/$(MINISAT_DLIB) | ||
|
||
distclean: clean | ||
rm -f config.mk | ||
|
||
## Include generated dependencies | ||
-include $(foreach s, $(SRCS:.cc=.d), $(BUILD_DIR)/release/$s) | ||
-include $(foreach s, $(SRCS:.cc=.d), $(BUILD_DIR)/debug/$s) | ||
-include $(foreach s, $(SRCS:.cc=.d), $(BUILD_DIR)/profile/$s) | ||
-include $(foreach s, $(SRCS:.cc=.d), $(BUILD_DIR)/dynamic/$s) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
================================================================================ | ||
Quick Install | ||
|
||
- Decide where to install the files . The simplest approach is to use | ||
GNU standard locations and just set a "prefix" for the root install | ||
directory (reffered to as $PREFIX below). More control can be | ||
achieved by overriding other of the GNU standard install locations | ||
(includedir, bindir, etc). Configuring with just a prefix: | ||
|
||
> make config prefix=$PREFIX | ||
|
||
- Compiling and installing: | ||
|
||
> make install | ||
|
||
================================================================================ | ||
Configuration | ||
|
||
- Multiple configuration steps can be joined into one call to "make | ||
config" by appending multiple variable assignments on the same line. | ||
|
||
- The configuration is stored in the file "config.mk". Look here if | ||
you want to know what the current configuration looks like. | ||
|
||
- To reset from defaults simply remove the "config.mk" file or call | ||
"make distclean". | ||
|
||
- Recompilation can be done without the configuration step. | ||
|
||
[ TODO: describe configartion possibilities for compile flags / modes ] | ||
|
||
================================================================================ | ||
Building | ||
|
||
[ TODO: describe seperate build modes ] | ||
|
||
================================================================================ | ||
Install | ||
|
||
[ TODO: ? ] | ||
|
||
================================================================================ | ||
Directory Overview: | ||
|
||
minisat/mtl/ Mini Template Library | ||
minisat/utils/ Generic helper code (I/O, Parsing, CPU-time, etc) | ||
minisat/core/ A core version of the solver | ||
minisat/simp/ An extended solver with simplification capabilities | ||
doc/ Documentation | ||
README | ||
LICENSE | ||
|
||
================================================================================ | ||
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 |
Oops, something went wrong.