Skip to content

Commit

Permalink
Remove support for Limmat as a SAT solver
Browse files Browse the repository at this point in the history
It wasn't available via configuration options anymore anyway and
Limmat's victory at the SAT competition dates back to 2002.
  • Loading branch information
tautschnig committed Apr 8, 2018
1 parent 28cca9c commit a0fd3f7
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 182 deletions.
4 changes: 0 additions & 4 deletions src/solvers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ set(booleforce_source
set(minibdd_source
${CMAKE_CURRENT_SOURCE_DIR}/miniBDD/example.cpp
)
set(limmat_source
${CMAKE_CURRENT_SOURCE_DIR}/sat/satcheck_limmat.cpp
)

file(GLOB_RECURSE sources "*.cpp" "*.h")
list(REMOVE_ITEM sources
Expand All @@ -62,7 +59,6 @@ list(REMOVE_ITEM sources
${lingeling_source}
${booleforce_source}
${minibdd_source}
${limmat_source}
)

add_library(solvers ${sources})
Expand Down
8 changes: 0 additions & 8 deletions src/solvers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,6 @@ ifneq ($(LINGELING),)
CP_CXXFLAGS += -DHAVE_LINGELING
endif

ifneq ($(LIMMAT),)
LIMMAT_SRC=sat/satcheck_limmat.cpp
LIMMAT_INCLUDE=-I $(LIMMAT)
LIMMAT_LIB=$(LIMMAT)/liblimmat$(LIBEXT)
CP_CXXFLAGS += -DHAVE_LIMMAT
endif

SRC = $(BOOLEFORCE_SRC) \
$(CHAFF_SRC) \
$(CUDD_SRC) \
Expand All @@ -96,7 +89,6 @@ SRC = $(BOOLEFORCE_SRC) \
$(PRECOSAT_SRC) \
$(SMVSAT_SRC) \
$(SQUOLEM2_SRC) \
$(LIMMAT_SRC) \
cvc/cvc_conv.cpp \
cvc/cvc_dec.cpp \
flattening/arrays.cpp \
Expand Down
137 changes: 0 additions & 137 deletions src/solvers/sat/satcheck_limmat.cpp

This file was deleted.

33 changes: 0 additions & 33 deletions src/solvers/sat/satcheck_limmat.h

This file was deleted.

0 comments on commit a0fd3f7

Please sign in to comment.