mirror of
https://github.com/Z3Prover/z3
synced 2025-11-09 15:47:29 +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
|
|
@ -159,22 +159,17 @@ namespace pdr {
|
|||
out << "(pop)\n";
|
||||
}
|
||||
}
|
||||
|
||||
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) :
|
||||
m(manager),
|
||||
m_fparams(fparams),
|
||||
m_brwr(m),
|
||||
m_mux(m, get_state_suffixes()),
|
||||
m_brwr(m),
|
||||
m_mux(m, m_state_suffixes),
|
||||
m_background(m.mk_true(), m),
|
||||
m_contexts(fparams, max_num_contexts, m),
|
||||
m_next_unique_num(0)
|
||||
{
|
||||
m_state_suffixes.push_back("_n");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue