mirror of
https://github.com/Z3Prover/z3
synced 2025-06-18 20:03:38 +00:00
Prefer using empty rather than size comparisons.
This commit is contained in:
parent
a83097d5cc
commit
e570940662
56 changed files with 104 additions and 104 deletions
|
@ -170,7 +170,7 @@ lbool tactic2solver::check_sat_core(unsigned num_assumptions, expr * const * ass
|
|||
break;
|
||||
default:
|
||||
m_result->set_status(l_undef);
|
||||
if (reason_unknown != "")
|
||||
if (!reason_unknown.empty())
|
||||
m_result->m_unknown = reason_unknown;
|
||||
if (num_assumptions == 0 && m_scopes.empty()) {
|
||||
m_assertions.reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue