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:
parent
275b99e408
commit
ea032b56c0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue