3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

fix theory_str::check_length_concat_concat to actually assert the conflict axiom

This commit is contained in:
Murphy Berzish 2016-07-28 17:18:56 -04:00
parent 244b611f1c
commit 6f67e9cdda

View file

@ -4261,6 +4261,7 @@ bool theory_str::check_length_concat_concat(expr * n1, expr * n2) {
if (conflict) {
TRACE("t_str_detail", tout << "inconsistent length detected in concat <==> concat" << std::endl;);
assert_axiom(toAssert);
return false;
}
return true;