3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

Return false when clause cannot be decided

This commit is contained in:
Arie Gurfinkel 2018-05-27 21:37:34 -07:00
parent 275b99e408
commit ea032b56c0

View file

@ -1822,7 +1822,7 @@ namespace smt {
case l_undef: // made a decision
return true;
case l_false: // inconsistent
break;
return false;
}
}
bool_var var;