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:
parent
0ef26983fc
commit
fd2a8a554d
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue