mirror of
https://github.com/Z3Prover/z3
synced 2025-11-29 08:49:51 +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 @@ namespace datalog {
|
|||
SASSERT(is_inner_col(idx));
|
||||
return m_sig2inner[idx];
|
||||
}
|
||||
bool no_sieved_columns() const { return m_ignored_cols.size()==0; }
|
||||
bool no_sieved_columns() const { return m_ignored_cols.empty(); }
|
||||
bool no_inner_columns() const { return m_ignored_cols.size()==get_signature().size(); }
|
||||
|
||||
relation_base & get_inner() { return *m_inner; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue