mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +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));
|
VERIFY(validate_assign(lit));
|
||||||
if (params().m_arith_dump_lemmas)
|
if (params().m_arith_dump_lemmas)
|
||||||
dump_assign_lemma(lit);
|
dump_assign_lemma(lit);
|
||||||
if (core.size() < small_lemma_size() && eqs.empty()) {
|
if (false && core.size() < small_lemma_size() && eqs.empty()) {
|
||||||
m_core2.reset();
|
m_core2.reset();
|
||||||
for (auto const& c : core) {
|
for (auto const& c : core) {
|
||||||
m_core2.push_back(~c);
|
m_core2.push_back(~c);
|
||||||
|
|
Loading…
Reference in a new issue