mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 20:21:23 +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
|
@ -387,7 +387,7 @@ namespace qe {
|
|||
for (row const& r : rows) {
|
||||
expr_ref_vector ts(m);
|
||||
expr_ref t(m), s(m), val(m);
|
||||
if (r.m_vars.size() == 0) {
|
||||
if (r.m_vars.empty()) {
|
||||
continue;
|
||||
}
|
||||
if (r.m_vars.size() == 1 && r.m_vars[0].m_coeff.is_neg() && r.m_type != opt::t_mod) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue