Set strings pending conflict flag (#5364)
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>
Thu, 29 Oct 2020 22:17:48 +0000 (17:17 -0500)
committerGitHub <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

index 40edb88cfd0e689e694a9eb05692c6ba524a68b3..89d77b033c678f17245f0dbb6ecd5dc4b8070066 100644 (file)
@@ -246,6 +246,7 @@ void SolverState::setPendingConflict(InferInfo& ii)
   if (!d_pendingConflictSet.get())
   {
     d_pendingConflict = ii;
+    d_pendingConflictSet.set(true);
   }
 }