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:
parent
d4490738bc
commit
6f95c77023
4 changed files with 9 additions and 8 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue