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

disable small clause generation for propagation

This commit is contained in:
Nikolaj Bjorner 2025-02-01 20:04:29 -08:00
parent 0ef26983fc
commit fd2a8a554d

View file

@ -2399,7 +2399,7 @@ public:
VERIFY(validate_assign(lit));
if (params().m_arith_dump_lemmas)
dump_assign_lemma(lit);
if (core.size() < small_lemma_size() && eqs.empty()) {
if (false && core.size() < small_lemma_size() && eqs.empty()) {
m_core2.reset();
for (auto const& c : core) {
m_core2.push_back(~c);