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:
parent
509cad9c9a
commit
82cacdf569
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue