We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1131d52 commit dbde713Copy full SHA for dbde713
src/math/lp/dioph_eq.cpp
@@ -786,7 +786,7 @@ namespace lp {
786
// it is a non-const function : it can set m_some_terms_are_ignored to true
787
bool term_has_big_number(const lar_term& t) {
788
for (const auto& p : t) {
789
- if (abs(p.coeff()) > mpq(5) || p.coeff().is_big() || (is_fixed(p.var()) && lra.get_lower_bound(p.var()).x.is_big())) {
+ if (p.coeff().is_big() || (is_fixed(p.var()) && lra.get_lower_bound(p.var()).x.is_big())) {
790
m_some_terms_are_ignored = true;
791
return true;
792
}
0 commit comments