File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change
1
+ diff --git a/src/lookahead.cpp b/src/lookahead.cpp
2
+ index 9e8a16b..3d5721a 100644
3
+ --- a/src/lookahead.cpp
4
+ +++ b/src/lookahead.cpp
5
+ @@ -390,6 +390,7 @@ int Internal::lookahead_probing() {
6
+ CubesWithStatus Internal::generate_cubes(int depth, int min_depth) {
7
+ if (!active() || depth == 0) {
8
+ CubesWithStatus cubes;
9
+ + cubes.status = 0;
10
+ cubes.cubes.push_back(std::vector<int>());
11
+ return cubes;
12
+ }
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ cadical-download:
177
177
@$(TAR ) xfz $(cadical_release ) .tar.gz
178
178
@rm -Rf ../cadical
179
179
@mv cadical-$(cadical_release ) ../cadical
180
+ @ (cd ../cadical; patch -p1 < ../scripts/cadical-1.4.1-patch)
180
181
@ (cd ../cadical && ./configure)
181
182
# Need to rename VERSION so that it isn't picked up by `#include<version>` on
182
183
# macOS which is case insensitive
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ foreach(SOLVER ${sat_impl})
111
111
112
112
download_project (PROJ cadical
113
113
URL https://github.com/arminbiere/cadical/archive/rel-1.4.1.tar.gz
114
- PATCH_COMMAND true
114
+ PATCH_COMMAND patch -p1 -i ${CBMC_SOURCE_DIR} /../scripts/cadical-1.4.1-patch
115
115
COMMAND cmake -E copy ${CBMC_SOURCE_DIR} /../scripts/cadical_CMakeLists.txt CMakeLists.txt
116
116
COMMAND ./configure
117
117
URL_MD5 b44874501a175106424f4bd5de29aa59
You can’t perform that action at this time.
0 commit comments