summaryrefslogtreecommitdiff
path: root/src/prop/theory_proxy.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-07-09 11:50:51 -0500
committerGitHub <noreply@github.com>2021-07-09 16:50:51 +0000
commitff91290122d478dc637fb3e9ff4fe4c0ead5bd32 (patch)
treeb42cf104854699130cc2f811b57d787a65b6b639 /src/prop/theory_proxy.cpp
parentfb2f314ac9a187538bfa2c09f2d8bdc3465804a9 (diff)
Implement stop-only for new justification heuristic (#6847)
This also refactors decision engine so that we use inheritance instead of a dummy flag + members to determine which implementation to use.
Diffstat (limited to 'src/prop/theory_proxy.cpp')
-rw-r--r--src/prop/theory_proxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prop/theory_proxy.cpp b/src/prop/theory_proxy.cpp
index 845289841..47263af97 100644
--- a/src/prop/theory_proxy.cpp
+++ b/src/prop/theory_proxy.cpp
@@ -151,7 +151,7 @@ SatLiteral TheoryProxy::getNextDecisionEngineRequest(bool &stopSearch) {
if(stopSearch) {
Trace("decision") << " *** Decision Engine stopped search *** " << std::endl;
}
- return options::decisionStopOnly() ? undefSatLiteral : ret;
+ return ret;
}
bool TheoryProxy::theoryNeedCheck() const {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback