Skip to content

Commit 17bd02d

Browse files
committed
change a comment
1 parent 8bbe752 commit 17bd02d

File tree

1 file changed

+33
-27
lines changed

1 file changed

+33
-27
lines changed

src/math/lp/dioph_eq.cpp

+33-27
Original file line numberDiff line numberDiff line change
@@ -1693,20 +1693,20 @@ namespace lp {
16931693
TRACE("dio",
16941694
tout << "current " << (is_upper? "upper":"lower") << " bound for x" << j << ":"
16951695
<< rs << std::endl;);
1696-
mpq rs_mod_g = (rs - m_c) % g;
1697-
if (rs_mod_g.is_neg()) {
1698-
rs_mod_g += g;
1696+
mpq rs_g = (rs - m_c) % g;
1697+
if (rs_g.is_neg()) {
1698+
rs_g += g;
16991699
}
1700-
if (! (!rs_mod_g.is_neg() && rs_mod_g.is_int())) {
1700+
if (! (!rs_g.is_neg() && rs_g.is_int())) {
17011701
std::cout << "rs:" << rs << "\n";
17021702
std::cout << "m_c:" << m_c << "\n";
17031703
std::cout << "g:" << g << "\n";
1704-
std::cout << "rs_mod_g:" << rs_mod_g << "\n";
1704+
std::cout << "rs_g:" << rs_g << "\n";
17051705
}
1706-
SASSERT(rs_mod_g.is_int());
1707-
TRACE("dio", tout << "(rs - m_c) % g:" << rs_mod_g << std::endl;);
1708-
if (!rs_mod_g.is_zero()) {
1709-
if (tighten_bound_kind(g, j, rs, rs_mod_g, is_upper))
1706+
SASSERT(rs_g.is_int());
1707+
TRACE("dio", tout << "(rs - m_c) % g:" << rs_g << std::endl;);
1708+
if (!rs_g.is_zero()) {
1709+
if (tighten_bound_kind(g, j, rs, rs_g, is_upper))
17101710
return lia_move::conflict;
17111711
} else {
17121712
TRACE("dio", tout << "no improvement in the bound\n";);
@@ -1716,25 +1716,31 @@ namespace lp {
17161716
}
17171717

17181718
// returns true only on a conflict
1719-
bool tighten_bound_kind(const mpq& g, unsigned j, const mpq& rs, const mpq& rs_mod_g, bool upper) {
1720-
// Assume:
1721-
// rs_mod_g := (rs - m_c) % g
1722-
// rs_mod_g != 0
1723-
//
1724-
// In case of an upper bound we have
1725-
// xj = t = g*t_+ m_c <= rs, also, by definition of rs_mod_g, for some integer k holds rs - m_c = k*g + rs_mod_g.
1726-
// Then g*t_ <= rs - mc = k*g + rs_mod_g => g*t_ <= k*g = rs - m_c - rs_mod_g.
1727-
// Adding m_c to both parts gets us
1728-
// xj = g*t_ + m_c <= rs - rs_mod_g
1729-
1730-
// In case of a lower bound we have
1731-
// xj = t = g*t_+ m_c >= rs, also, by definition fo rs_mod_g, for some integer k holds rs - m_c = k*g + rs_mod_g.
1732-
// Then g*t_ >= rs - mc = k*g + rs_mod_g => g*t_ >= k*g = rs - m_c + g - rs_mod_g.
1733-
// Adding m_c to both parts gets us
1734-
// xj = g*t_ + m_c >= rs + g - rs_mod_g
1719+
bool tighten_bound_kind(const mpq& g, unsigned j, const mpq& rs, const mpq& rs_g, bool upper) {
1720+
/*
1721+
Variable j corresponds to term t = lra.get_term(j).
1722+
At this point we substituted some variables of t with the equivalent terms in S and the equivalent expressions containing fresh variables: t = sum{a_i * x_i: i in K} + sum{b_i * x_i: i in P }, where P and K are disjoint sets, a_i % g = 0 for each i in K, and x_i is a fixed variable for each i in P.
1723+
In the notations of the program:
1724+
m_espace corresponds to sum{a_i * x_i: i in K},
1725+
m_c is the value of sum{b_i * x_i: i in P},
1726+
open_ml(m_lspace) gives sum{a_i*x_i: i in K} + {b_i * x_i: i in P}.
1727+
We can rewrite t = g*t_ + m_c, where t_ = sum{(a_i/g)*x_i: i in K}.
1728+
Let us suppose that upper is true and rs is an upper bound of variable j, or t = g*t_ + m_c <= rs.
1729+
Parameter rs_g is defined as (rs - m_c) % g. Notice that rs_g does not change when m_c changes by a multiple of g. We also know that rs_g > 0. For some integer k we have rs - m_c = k*g + rs_g.
1730+
Starting with g*t_ + m_c <= rs, we proceed to g*t_ <= rs - m_c = k*g + rs_g. We can discard rs_g on the right: g*t_ <= k*g = rs - m_c - rs_g. Adding m_c to both sides gives us g*t_ + m_c <= rs - rs_g, or t <= rs - rs_g.
1731+
1732+
In case of a lower bound we have
1733+
t = g*t_+ m_c >= rs
1734+
Then g*t_ >= rs - m_c = k*g + rs_g => g*t_ >= k*g + g.
1735+
Adding m_c to both sides gets us
1736+
g*t_ + m_c >= k*g + g + m_c = rs - m_c - rs_g + g + m_c = rs + (g - rs_g).
1737+
1738+
Each fixed variable i in P such that b_i is divisible by g can be moved from P to K.
1739+
Then we apply all arguments above, and get the same result, since m_c changes by a multiple of g.
1740+
*/
17351741

17361742

1737-
mpq bound = upper ? rs - rs_mod_g : rs + g - rs_mod_g;
1743+
mpq bound = upper ? rs - rs_g : rs + g - rs_g;
17381744
TRACE("dio", tout << "is upper:" << upper << std::endl;
17391745
tout << "new " << (upper ? "upper" : "lower") << " bound:" << bound << std::endl;);
17401746

@@ -1755,7 +1761,7 @@ namespace lp {
17551761
if (p.coeff().is_int() && (p.coeff() % g).is_zero()) {
17561762
// we can skip this dependency
17571763
// because the monomial p.coeff()*p.var() is 0 modulo g, and it does not matter that p.var() is fixed.
1758-
// We could have added p.coeff()*p.var() to t_, substructed the value of p.coeff()*p.var() from m_c and
1764+
// We could have added p.coeff()*p.var() to g*t_, substructed the value of p.coeff()*p.var() from m_c and
17591765
// still get the same result.
17601766
TRACE("dio", tout << "skipped dep:\n"; print_deps(tout, lra.get_bound_constraint_witnesses_for_column(p.var())););
17611767
continue;

0 commit comments

Comments
 (0)