3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

fix initialization

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-12-28 12:06:56 -08:00
parent 95e26aaad9
commit 5ed27a6c38
3 changed files with 6 additions and 1 deletions

View file

@ -143,6 +143,7 @@ namespace smt {
bool is_relevant(expr* e) const { return !m_enabled || m_relevant_expr_ids.get(e->get_id(), false); }
bool enabled() const { return m_enabled; }
void set_enabled(bool e) { m_enabled = e; }
void add_relevant(euf::th_solver* th) { m_relevant_eh.push_back(th); }
};