mirror of
https://github.com/Z3Prover/z3
synced 2025-06-21 05:13:39 +00:00
fix build, likely addressing issue #420
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a0503ba6a1
commit
cacfa0cb98
2 changed files with 5 additions and 11 deletions
|
@ -160,21 +160,16 @@ namespace pdr {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vector<std::string> manager::get_state_suffixes() {
|
|
||||||
vector<std::string> res;
|
|
||||||
res.push_back("_n");
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
manager::manager(smt_params& fparams, unsigned max_num_contexts, ast_manager& manager) :
|
manager::manager(smt_params& fparams, unsigned max_num_contexts, ast_manager& manager) :
|
||||||
m(manager),
|
m(manager),
|
||||||
m_fparams(fparams),
|
m_fparams(fparams),
|
||||||
m_brwr(m),
|
m_brwr(m),
|
||||||
m_mux(m, get_state_suffixes()),
|
m_mux(m, m_state_suffixes),
|
||||||
m_background(m.mk_true(), m),
|
m_background(m.mk_true(), m),
|
||||||
m_contexts(fparams, max_num_contexts, m),
|
m_contexts(fparams, max_num_contexts, m),
|
||||||
m_next_unique_num(0)
|
m_next_unique_num(0)
|
||||||
{
|
{
|
||||||
|
m_state_suffixes.push_back("_n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -81,6 +81,7 @@ namespace pdr {
|
||||||
|
|
||||||
mutable bool_rewriter m_brwr;
|
mutable bool_rewriter m_brwr;
|
||||||
|
|
||||||
|
vector<std::string> m_state_suffixes;
|
||||||
sym_mux m_mux;
|
sym_mux m_mux;
|
||||||
expr_ref m_background;
|
expr_ref m_background;
|
||||||
decl_vector m_o0_preds;
|
decl_vector m_o0_preds;
|
||||||
|
@ -90,8 +91,6 @@ namespace pdr {
|
||||||
unsigned m_next_unique_num;
|
unsigned m_next_unique_num;
|
||||||
|
|
||||||
|
|
||||||
static vector<std::string> get_state_suffixes();
|
|
||||||
|
|
||||||
unsigned n_index() const { return 0; }
|
unsigned n_index() const { return 0; }
|
||||||
unsigned o_index(unsigned i) const { return i+1; }
|
unsigned o_index(unsigned i) const { return i+1; }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue