3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-14 04:48:45 +00:00

fix seg-fault caused by neglecting to inherit output predicate in slice

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-04-25 09:30:51 -07:00
parent f58e8e961d
commit 780ad7cc17

View file

@ -725,6 +725,9 @@ namespace datalog {
m_mc->add_predicate(p, f);
}
}
else if (src.is_output_predicate(p)) {
dst.set_output_predicate(p);
}
}
}