projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d23ba14
)
Set strings pending conflict flag (#5364)
author
Andrew Reynolds
<andrew.j.reynolds@gmail.com>
Thu, 29 Oct 2020 22:17:48 +0000
(17:17 -0500)
committer
GitHub
<noreply@github.com>
Thu, 29 Oct 2020 22:17:48 +0000
(17:17 -0500)
While addressing the review on
6898ab9
, strings eager conflicts were accidentally disabled, this reenables them.
src/theory/strings/solver_state.cpp
patch
|
blob
|
history
diff --git
a/src/theory/strings/solver_state.cpp
b/src/theory/strings/solver_state.cpp
index 40edb88cfd0e689e694a9eb05692c6ba524a68b3..89d77b033c678f17245f0dbb6ecd5dc4b8070066 100644
(file)
--- a/
src/theory/strings/solver_state.cpp
+++ b/
src/theory/strings/solver_state.cpp
@@
-246,6
+246,7
@@
void SolverState::setPendingConflict(InferInfo& ii)
if (!d_pendingConflictSet.get())
{
d_pendingConflict = ii;
+ d_pendingConflictSet.set(true);
}
}