mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 00:05:46 +00:00
make smt2 log scope aware
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
01f085ab53
commit
8bb2442a3f
5 changed files with 48 additions and 1 deletions
|
@ -30,6 +30,9 @@ class decl_collector {
|
|||
ptr_vector<func_decl> m_decls;
|
||||
ast_mark m_visited;
|
||||
ast_ref_vector m_trail;
|
||||
unsigned_vector m_trail_lim;
|
||||
unsigned_vector m_sorts_lim;
|
||||
unsigned_vector m_decls_lim;
|
||||
family_id m_basic_fid;
|
||||
family_id m_dt_fid;
|
||||
datatype_util m_dt_util;
|
||||
|
@ -54,6 +57,9 @@ public:
|
|||
void visit(unsigned n, expr* const* es);
|
||||
void visit(expr_ref_vector const& es);
|
||||
|
||||
void push();
|
||||
void pop(unsigned n);
|
||||
|
||||
void order_deps(unsigned n);
|
||||
|
||||
unsigned get_num_sorts() const { return m_sorts.size(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue