3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-31 23:34:55 +00:00

Add fallback lemma

This commit is contained in:
Jakob Rath 2021-09-06 18:00:21 +02:00
parent 381d13993c
commit 15c094fa32
3 changed files with 52 additions and 15 deletions

View file

@ -65,6 +65,10 @@ namespace polysat {
void push_boolean(sat::literal lit);
void pop();
using const_iterator = decltype(m_items)::const_iterator;
const_iterator begin() const { return m_items.begin(); }
const_iterator end() const { return m_items.end(); }
std::ostream& display(std::ostream& out) const;
};