3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-02 09:20:22 +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

@ -32,6 +32,7 @@ public:
m_fml(fml),
m_proof(p),
m_dep(d) {
SASSERT(fml);
m.inc_ref(fml);
m.inc_ref(d);
m.inc_ref(p);
@ -122,4 +123,4 @@ public:
inline std::ostream& operator<<(std::ostream& out, dependent_expr const& d) {
return d.display(out);
}
}