forked from niklasso/minisat
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
... because this tool allows to generate more difficult formulas easily. While touching scripts, also improve ways how to call related tools. Signed-off-by: Norbert Manthey <[email protected]>
- Loading branch information
1 parent
eee3ad7
commit 7bee7e2
Showing
7 changed files
with
59 additions
and
33 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
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
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
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
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,6 +1,6 @@ | ||
#!/bin/bash | ||
# | ||
# This script sets up the checker environment (install drat-trim as well as cnfuzz) | ||
# This script sets up the checker environment (install drat-trim as well as modgen) | ||
|
||
# exits the script immediately if a command exits with a non-zero status | ||
set -e | ||
|
@@ -19,12 +19,10 @@ else | |
git clone https://github.com/marijnheule/drat-trim.git drat-trim-src | ||
fi | ||
|
||
# get fuzz tools | ||
curl http://fmv.jku.at/cnfuzzdd/cnfuzzdd2013.zip > fuzz-suite.zip | ||
|
||
# build cnfuzz | ||
unzip -j -n fuzz-suite.zip cnfuzzdd2013/cnfuzz.c -d . | ||
gcc -o cnfuzz cnfuzz.c -Wall -O0 -lrt | ||
# get and build modgen | ||
git clone --depth=1 [email protected]:conp-solutions/modularityGen.git modgen-src | ||
make -C modgen-src | ||
cp modgen-src/modgen . | ||
|
||
# build drat-trim | ||
pushd drat-trim-src | ||
|
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
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