3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

fix bugs in flatten_clauses simplifier, switch proof/fml

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-01-04 11:56:28 -08:00
parent d4490738bc
commit 6f95c77023
4 changed files with 9 additions and 8 deletions

View file

@ -48,7 +48,7 @@ public:
dependent_expr_state(m),
m(m),
m_params(p),
m_dep(m, nullptr, nullptr, nullptr),
m_dep(m, m.mk_true(), nullptr, nullptr),
m_factory(f)
{}
@ -129,7 +129,7 @@ public:
m_simp = nullptr;
m_model_trail = nullptr;
m_goal = nullptr;
m_dep = dependent_expr(m, nullptr, nullptr, nullptr);
m_dep = dependent_expr(m, m.mk_true(), nullptr, nullptr);
}
void collect_statistics(statistics & st) const override {