diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2017-09-06 20:55:16 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2017-09-06 20:55:16 -0700 |
commit | 68b59b8a1e09722cd71490c91904d5c3104535fa (patch) | |
tree | 93080a52ca742f4fd5c8d35241d35db1b473e7dd /src/sat/glucose | |
parent | 3ffb098d645ad4c8aefc25bc27864a31c559dc2d (diff) | |
download | abc-68b59b8a1e09722cd71490c91904d5c3104535fa.tar.gz abc-68b59b8a1e09722cd71490c91904d5c3104535fa.tar.bz2 abc-68b59b8a1e09722cd71490c91904d5c3104535fa.zip |
Bug fix: forgot to init the runtime limit in Glucose.
Diffstat (limited to 'src/sat/glucose')
-rw-r--r-- | src/sat/glucose/Glucose.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sat/glucose/Glucose.cpp b/src/sat/glucose/Glucose.cpp index a66c323c..b3df0c82 100644 --- a/src/sat/glucose/Glucose.cpp +++ b/src/sat/glucose/Glucose.cpp @@ -95,6 +95,7 @@ Solver::Solver() : , verbEveryConflicts(10000) , terminate_search_early(false) , pstop(NULL) + , nRuntimeLimit(0) , verbosity (0) , showModel (0) |