mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 13:58:45 +00:00
make check_relation::check_equiv() exit only when solver return SAT (ie, avoid false-positives with unknowns)
Signed-off-by: Nuno Lopes <nlopes@microsoft.com>
This commit is contained in:
parent
30eb461e01
commit
f29d82858f
|
@ -429,7 +429,7 @@ namespace datalog {
|
|||
if (res == l_false) {
|
||||
IF_VERBOSE(3, verbose_stream() << objective << " verified\n";);
|
||||
}
|
||||
else {
|
||||
else if (res == l_true) {
|
||||
IF_VERBOSE(3, verbose_stream() << "NOT verified " << res << "\n";
|
||||
verbose_stream() << mk_pp(fml1, m) << "\n";
|
||||
verbose_stream() << mk_pp(fml2, m) << "\n";
|
||||
|
|
Loading…
Reference in a new issue