mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
fixes top lookahead simplification
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5f93b9a081
commit
5e2f7f7177
4 changed files with 23 additions and 19 deletions
|
@ -369,6 +369,7 @@ public:
|
|||
void reset() { m_size = 0; }
|
||||
bool empty() const { return m_size == 0; }
|
||||
unsigned size() const { return m_size; }
|
||||
unsigned max_var() const { return m_index.size(); }
|
||||
typedef unsigned_vector::const_iterator iterator;
|
||||
iterator begin() const { return m_elems.begin(); }
|
||||
iterator end() const { return m_elems.begin() + m_size; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue