3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

adding stronger filter than connected

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-14 10:41:51 -08:00
parent 509cad9c9a
commit 82cacdf569

View file

@ -395,6 +395,9 @@ namespace sat {
return;
if (big.connected(u, v))
return;
for (auto const& w : s.get_wlist(u))
if (w.is_binary_clause() && v == w.get_literal())
return;
certify_implies(u, v, c);
s.mk_clause(~u, v, true);
// m_bins owns reference to ~u or v created by certify_implies