3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

skip diseq when not using polysat

This commit is contained in:
Jakob Rath 2022-12-15 13:46:10 +01:00
parent a6504785b5
commit 06a999e219

View file

@ -218,6 +218,8 @@ namespace bv {
}
bool solver::polysat_diseq_eh(euf::th_eq const& ne) {
if (!use_polysat())
return false;
euf::theory_var v1 = ne.v1(), v2 = ne.v2();
pdd p = var2pdd(v1);
pdd q = var2pdd(v2);