You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
0 commit comments