3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-19 05:25:48 +00:00

fix propagation of failure

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-07-03 11:41:37 -07:00
parent f30650b4b4
commit 1c11526d64
2 changed files with 3 additions and 4 deletions

View file

@ -523,7 +523,7 @@ namespace smt {
if (re().is_empty(q)) {
enode_pair_vector eqs;
literal_vector lits;
lits.push_back(~lit);
lits.push_back(lit);
th.set_conflict(eqs, lits);
return true;
}