3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00
This commit is contained in:
Jakob Rath 2023-03-10 15:36:30 +01:00
parent 40d5b96ffa
commit de88fb3875

View file

@ -222,7 +222,8 @@ 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.
UNREACHABLE(); // since propagation now checks bool/eval conflicts before narrowing, this case should be impossible.
// UNREACHABLE(); // since propagation now checks bool/eval conflicts before narrowing, this case should be impossible.
// TODO: why does it still trigger?
s.set_conflict(~sc);
return true;
case l_undef: