3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00

Add assertion

This commit is contained in:
Jakob Rath 2023-03-10 15:31:58 +01:00
parent c8c40f0154
commit 40d5b96ffa

View file

@ -222,7 +222,7 @@ namespace polysat {
case l_false:
// We have a bool/eval conflict with one of the side conditions.
// This happens if the side condition was already bool-propagated, but appears in the propagation queue after c.
// TODO: instead of doing this here, we could have a separate pass that checks for bool/eval conflicts before narrowing.
UNREACHABLE(); // since propagation now checks bool/eval conflicts before narrowing, this case should be impossible.
s.set_conflict(~sc);
return true;
case l_undef: