3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

Check invariant on pvars

This commit is contained in:
Jakob Rath 2022-12-19 13:55:50 +01:00
parent 208f166934
commit 69b41a7e70
4 changed files with 30 additions and 3 deletions

View file

@ -89,6 +89,10 @@ public:
}
return out;
}
using const_iterator = decltype(m_queue)::const_iterator;
const_iterator begin() const { return m_queue.begin(); }
const_iterator end() const { return m_queue.end(); }
};
inline std::ostream& operator<<(std::ostream& out, var_queue const& queue) {