3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-05 01:27:41 +00:00

disable buggy code in slicer: it removes conjuncts for non-sliced variables. It should use the same criteria as the slice recognizer. reported by Arie Gurfinkel

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2012-10-31 20:29:28 -07:00
parent e2f3f9abd7
commit 8f7494cb04
4 changed files with 52 additions and 31 deletions

View file

@ -195,7 +195,7 @@ void horn_subsume_model_converter::operator()(model_ref& mr) {
body = m.mk_or(e, body);
}
m_rewrite(body);
mr->register_decl(h, m.mk_or(e, body));
mr->register_decl(h, body);
}
else {
func_interp* f = mr->get_func_interp(h);