3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 10:30:44 +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 case l_undef: // made a decision
return true; return true;
case l_false: // inconsistent case l_false: // inconsistent
break; return false;
} }
} }
bool_var var; bool_var var;