mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
working on mam
This commit is contained in:
parent
f33d6f89b9
commit
4b6d7ca097
15 changed files with 807 additions and 209 deletions
|
@ -72,13 +72,9 @@ public:
|
|||
}
|
||||
|
||||
bool empty() const {
|
||||
svector<unsigned>::const_iterator it = m_timestamps.begin();
|
||||
svector<unsigned>::const_iterator end = m_timestamps.end();
|
||||
for (; it != end; ++it) {
|
||||
if (*it > m_curr_timestamp) {
|
||||
for (auto const& t : m_timestamps)
|
||||
if (t > m_curr_timestamp)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue