summaryrefslogtreecommitdiff
path: root/src/theory/strings
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/strings')
-rw-r--r--src/theory/strings/core_solver.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/strings/core_solver.cpp b/src/theory/strings/core_solver.cpp
index 21b406ff3..9989c89f4 100644
--- a/src/theory/strings/core_solver.cpp
+++ b/src/theory/strings/core_solver.cpp
@@ -1872,7 +1872,8 @@ void CoreSolver::processDeq(Node ni, Node nj)
antec,
nm->mkNode(
OR, nm->mkNode(AND, eq1, sk.eqNode(firstChar).negate()), eq2),
- Inference::DEQ_DISL_FIRST_CHAR_STRING_SPLIT);
+ Inference::DEQ_DISL_FIRST_CHAR_STRING_SPLIT,
+ true);
d_im.sendPhaseRequirement(eq1, true);
return;
}
@@ -1920,7 +1921,8 @@ void CoreSolver::processDeq(Node ni, Node nj)
d_im.sendInference(antec,
antecNewLits,
nm->mkNode(AND, conc),
- Inference::DEQ_DISL_STRINGS_SPLIT);
+ Inference::DEQ_DISL_STRINGS_SPLIT,
+ true);
return;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback