From 3596632eef07dbe28ea4a4f166c18ad9fe26d4e0 Mon Sep 17 00:00:00 2001 From: Andrew Reynolds Date: Thu, 29 Oct 2020 17:17:48 -0500 Subject: [PATCH] Set strings pending conflict flag (#5364) While addressing the review on 6898ab9, strings eager conflicts were accidentally disabled, this reenables them. --- src/theory/strings/solver_state.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/theory/strings/solver_state.cpp b/src/theory/strings/solver_state.cpp index 40edb88cf..89d77b033 100644 --- 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); } } -- 2.30.2