mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +00:00
Signed-off-by: Lev Nachmanson <levnach@hotmail.com> add a diagnostic method Signed-off-by: Lev Nachmanson <levnach@hotmail.com> white space change Signed-off-by: Lev Nachmanson <levnach@microsoft.com> cleanup in int_solver Signed-off-by: Lev Nachmanson <levnach@hotmail.com> some cleanup Signed-off-by: Lev Nachmanson <levnach@microsoft.com> remove m_became_zeros Signed-off-by: Lev Nachmanson <levnach@microsoft.com> start cut_solver, work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> start cut_solver, work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> workin on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> working on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> working on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> working on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> work on disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fix bugs in disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fix bugs in gisjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fix bugs in gisjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fix bugs in disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fix bugs in disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fix bugs is disjoint intervals Signed-off-by: Lev Nachmanson <levnach@microsoft.com> bug fixes in disjoint_intervals Signed-off-by: Lev Nachmanson <levnach@hotmail.com> disjoint_intervals passes the test Signed-off-by: Lev Nachmanson <levnach@hotmail.com> test disjoint_intervals push(), pop() Signed-off-by: Lev Nachmanson <levnach@hotmail.com> cut_solver Signed-off-by: Lev Nachmanson <levnach@hotmail.com> work on cut_solver Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
1153 lines
37 KiB
C++
1153 lines
37 KiB
C++
/*
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
Author: Lev Nachmanson
|
|
*/
|
|
|
|
#include "util/lp/int_solver.h"
|
|
#include "util/lp/lar_solver.h"
|
|
#include "util/lp/cut_solver.h"
|
|
#include <utility>
|
|
namespace lp {
|
|
|
|
void int_solver::failed() {
|
|
auto & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
|
|
for (unsigned j : m_old_values_set.m_index) {
|
|
lcs.m_r_x[j] = m_old_values_data[j];
|
|
lp_assert(lcs.m_r_solver.column_is_feasible(j));
|
|
lcs.m_r_solver.remove_column_from_inf_set(j);
|
|
}
|
|
lp_assert(lcs.m_r_solver.calc_current_x_is_feasible_include_non_basis());
|
|
lp_assert(lcs.m_r_solver.current_x_is_feasible());
|
|
m_old_values_set.clear();
|
|
}
|
|
|
|
void int_solver::trace_inf_rows() const {
|
|
unsigned num = m_lar_solver->A_r().column_count();
|
|
for (unsigned v = 0; v < num; v++) {
|
|
if (is_int(v) && !get_value(v).is_int()) {
|
|
display_column(tout, v);
|
|
}
|
|
}
|
|
|
|
num = 0;
|
|
for (unsigned i = 0; i < m_lar_solver->A_r().row_count(); i++) {
|
|
unsigned j = m_lar_solver->m_mpq_lar_core_solver.m_r_basis[i];
|
|
if (column_is_int_inf(j)) {
|
|
num++;
|
|
iterator_on_row<mpq> it(m_lar_solver->A_r().m_rows[i]);
|
|
m_lar_solver->print_linear_iterator(&it, tout);
|
|
tout << "\n";
|
|
}
|
|
}
|
|
tout << "num of int infeasible: " << num << "\n";
|
|
}
|
|
|
|
int_set& int_solver::inf_int_set() {
|
|
return m_lar_solver->m_inf_int_set;
|
|
}
|
|
|
|
const int_set& int_solver::inf_int_set() const {
|
|
return m_lar_solver->m_inf_int_set;
|
|
}
|
|
|
|
bool int_solver::has_inf_int() const {
|
|
return !inf_int_set().is_empty();
|
|
}
|
|
|
|
int int_solver::find_inf_int_base_column() {
|
|
if (inf_int_set().is_empty())
|
|
return -1;
|
|
int j = find_inf_int_boxed_base_column_with_smallest_range();
|
|
if (j != -1)
|
|
return j;
|
|
unsigned k = settings().random_next() % inf_int_set().m_index.size();
|
|
return inf_int_set().m_index[k];
|
|
}
|
|
|
|
int int_solver::find_inf_int_boxed_base_column_with_smallest_range() {
|
|
int result = -1;
|
|
mpq range;
|
|
mpq new_range;
|
|
mpq small_range_thresold(1024);
|
|
unsigned n;
|
|
lar_core_solver & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
|
|
for (int j : inf_int_set().m_index) {
|
|
lp_assert(is_base(j) && column_is_int_inf(j));
|
|
lp_assert(!is_fixed(j));
|
|
if (!is_boxed(j))
|
|
continue;
|
|
new_range = lcs.m_r_upper_bounds()[j].x - lcs.m_r_low_bounds()[j].x;
|
|
if (new_range > small_range_thresold)
|
|
continue;
|
|
if (result == -1) {
|
|
result = j;
|
|
range = new_range;
|
|
n = 1;
|
|
continue;
|
|
}
|
|
if (new_range < range) {
|
|
n = 1;
|
|
result = j;
|
|
range = new_range;
|
|
continue;
|
|
}
|
|
if (new_range == range) {
|
|
lp_assert(n >= 1);
|
|
if (settings().random_next() % (++n) == 0) {
|
|
result = j;
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
bool int_solver::is_gomory_cut_target(linear_combination_iterator<mpq> &iter) {
|
|
unsigned j;
|
|
lp_assert(iter.is_reset());
|
|
// All non base variables must be at their bounds and assigned to rationals (that is, infinitesimals are not allowed).
|
|
while (iter.next(j)) {
|
|
if (is_base(j)) continue;
|
|
if (!is_zero(get_value(j).y)) {
|
|
TRACE("gomory_cut", tout << "row is not gomory cut target:\n";
|
|
display_column(tout, j);
|
|
tout << "infinitesimal: " << !is_zero(get_value(j).y) << "\n";);
|
|
iter.reset();
|
|
return false;
|
|
}
|
|
}
|
|
iter.reset();
|
|
return true;
|
|
}
|
|
|
|
|
|
void int_solver::real_case_in_gomory_cut(const mpq & a, unsigned x_j, mpq & k, lar_term& pol, explanation & expl, unsigned gomory_cut_inf_column) {
|
|
TRACE("gomory_cut_detail_real", tout << "real\n";);
|
|
mpq f_0 = fractional_part(get_value(gomory_cut_inf_column));
|
|
mpq new_a;
|
|
if (at_low(x_j)) {
|
|
if (a.is_pos()) {
|
|
new_a = a / (1 - f_0);
|
|
}
|
|
else {
|
|
new_a = a / f_0;
|
|
new_a.neg();
|
|
}
|
|
k.addmul(new_a, low_bound(x_j).x); // is it a faster operation than
|
|
// k += lower_bound(x_j).x * new_a;
|
|
expl.push_justification(column_low_bound_constraint(x_j), new_a);
|
|
}
|
|
else {
|
|
lp_assert(at_upper(x_j));
|
|
if (a.is_pos()) {
|
|
new_a = a / f_0;
|
|
new_a.neg(); // the upper terms are inverted.
|
|
}
|
|
else {
|
|
new_a = a / (mpq(1) - f_0);
|
|
}
|
|
k.addmul(new_a, upper_bound(x_j).x); // k += upper_bound(x_j).x * new_a;
|
|
expl.push_justification(column_upper_bound_constraint(x_j), new_a);
|
|
}
|
|
TRACE("gomory_cut_detail_real", tout << a << "*v" << x_j << " k: " << k << "\n";);
|
|
pol.add_monomial(new_a, x_j);
|
|
}
|
|
|
|
constraint_index int_solver::column_upper_bound_constraint(unsigned j) const {
|
|
return m_lar_solver->get_column_upper_bound_witness(j);
|
|
}
|
|
|
|
constraint_index int_solver::column_low_bound_constraint(unsigned j) const {
|
|
return m_lar_solver->get_column_low_bound_witness(j);
|
|
}
|
|
|
|
|
|
void int_solver::int_case_in_gomory_cut(const mpq & a, unsigned x_j, mpq & k, lar_term & t, explanation& expl, mpq & lcm_den, unsigned inf_column) {
|
|
lp_assert(is_int(x_j));
|
|
lp_assert(!a.is_int());
|
|
mpq f_0 = fractional_part(get_value(inf_column));
|
|
lp_assert(f_0 > zero_of_type<mpq>() && f_0 < one_of_type<mpq>());
|
|
mpq f_j = fractional_part(a);
|
|
TRACE("gomory_cut_detail",
|
|
tout << a << " x_j" << x_j << " k = " << k << "\n";
|
|
tout << "f_j: " << f_j << "\n";
|
|
tout << "f_0: " << f_0 << "\n";
|
|
tout << "1 - f_0: " << 1 - f_0 << "\n";
|
|
tout << "at_low(" << x_j << ") = " << at_low(x_j) << std::endl;
|
|
);
|
|
lp_assert (!f_j.is_zero());
|
|
mpq new_a;
|
|
if (at_low(x_j)) {
|
|
auto one_minus_f_0 = 1 - f_0;
|
|
if (f_j <= one_minus_f_0) {
|
|
new_a = f_j / one_minus_f_0;
|
|
}
|
|
else {
|
|
new_a = (1 - f_j) / f_0;
|
|
}
|
|
k.addmul(new_a, low_bound(x_j).x);
|
|
expl.push_justification(column_low_bound_constraint(x_j), new_a);
|
|
}
|
|
else {
|
|
lp_assert(at_upper(x_j));
|
|
if (f_j <= f_0) {
|
|
new_a = f_j / f_0;
|
|
}
|
|
else {
|
|
new_a = (mpq(1) - f_j) / (1 - f_0);
|
|
}
|
|
new_a.neg(); // the upper terms are inverted
|
|
k.addmul(new_a, upper_bound(x_j).x);
|
|
expl.push_justification(column_upper_bound_constraint(x_j), new_a);
|
|
}
|
|
TRACE("gomory_cut_detail", tout << "new_a: " << new_a << " k: " << k << "\n";);
|
|
t.add_monomial(new_a, x_j);
|
|
lcm_den = lcm(lcm_den, denominator(new_a));
|
|
}
|
|
|
|
lia_move int_solver::report_conflict_from_gomory_cut(mpq & k) {
|
|
TRACE("empty_pol",);
|
|
lp_assert(k.is_pos());
|
|
// conflict 0 >= k where k is positive
|
|
k.neg(); // returning 0 <= -k
|
|
return lia_move::conflict;
|
|
}
|
|
|
|
void int_solver::gomory_cut_adjust_t_and_k(vector<std::pair<mpq, unsigned>> & pol,
|
|
lar_term & t,
|
|
mpq &k,
|
|
bool some_ints,
|
|
mpq & lcm_den) {
|
|
if (!some_ints)
|
|
return;
|
|
|
|
t.clear();
|
|
if (pol.size() == 1) {
|
|
unsigned v = pol[0].second;
|
|
lp_assert(is_int(v));
|
|
bool k_is_int = k.is_int();
|
|
const mpq& a = pol[0].first;
|
|
k /= a;
|
|
if (a.is_pos()) { // we have av >= k
|
|
if (!k_is_int)
|
|
k = ceil(k);
|
|
// switch size
|
|
t.add_monomial(- mpq(1), v);
|
|
k.neg();
|
|
} else {
|
|
if (!k_is_int)
|
|
k = floor(k);
|
|
t.add_monomial(mpq(1), v);
|
|
}
|
|
} else if (some_ints) {
|
|
lcm_den = lcm(lcm_den, denominator(k));
|
|
lp_assert(lcm_den.is_pos());
|
|
if (!lcm_den.is_one()) {
|
|
// normalize coefficients of integer parameters to be integers.
|
|
for (auto & pi: pol) {
|
|
pi.first *= lcm_den;
|
|
SASSERT(!is_int(pi.second) || pi.first.is_int());
|
|
}
|
|
k *= lcm_den;
|
|
}
|
|
// negate everything to return -pol <= -k
|
|
for (const auto & pi: pol)
|
|
t.add_monomial(-pi.first, pi.second);
|
|
k.neg();
|
|
}
|
|
}
|
|
|
|
bool int_solver::current_solution_is_inf_on_cut(const lar_term& t, const mpq& k) const {
|
|
const auto & x = m_lar_solver->m_mpq_lar_core_solver.m_r_x;
|
|
impq v = t.apply(x);
|
|
TRACE(
|
|
"current_solution_is_inf_on_cut", tout << "v = " << v << " k = " << k << std::endl;
|
|
if (v <=k) {
|
|
tout << "v <= k - it should not happen!\n";
|
|
}
|
|
);
|
|
|
|
return v > k;
|
|
}
|
|
|
|
void int_solver::adjust_term_and_k_for_some_ints_case_gomory(lar_term& t, mpq& k, mpq &lcm_den) {
|
|
lp_assert(!t.is_empty());
|
|
auto pol = t.coeffs_as_vector();
|
|
t.clear();
|
|
if (pol.size() == 1) {
|
|
TRACE("gomory_cut_detail", tout << "pol.size() is 1" << std::endl;);
|
|
unsigned v = pol[0].second;
|
|
lp_assert(is_int(v));
|
|
const mpq& a = pol[0].first;
|
|
k /= a;
|
|
if (a.is_pos()) { // we have av >= k
|
|
if (!k.is_int())
|
|
k = ceil(k);
|
|
// switch size
|
|
t.add_monomial(- mpq(1), v);
|
|
k.neg();
|
|
} else {
|
|
if (!k.is_int())
|
|
k = floor(k);
|
|
t.add_monomial(mpq(1), v);
|
|
}
|
|
} else {
|
|
TRACE("gomory_cut_detail", tout << "pol.size() > 1" << std::endl;);
|
|
lcm_den = lcm(lcm_den, denominator(k));
|
|
lp_assert(lcm_den.is_pos());
|
|
if (!lcm_den.is_one()) {
|
|
// normalize coefficients of integer parameters to be integers.
|
|
for (auto & pi: pol) {
|
|
pi.first *= lcm_den;
|
|
SASSERT(!is_int(pi.second) || pi.first.is_int());
|
|
}
|
|
k *= lcm_den;
|
|
}
|
|
// negate everything to return -pol <= -k
|
|
for (const auto & pi: pol)
|
|
t.add_monomial(-pi.first, pi.second);
|
|
k.neg();
|
|
}
|
|
TRACE("gomory_cut_detail", tout << "k = " << k << std::endl;);
|
|
lp_assert(k.is_int());
|
|
}
|
|
|
|
|
|
|
|
|
|
lia_move int_solver::mk_gomory_cut(lar_term& t, mpq& k, explanation & expl, unsigned inf_col, linear_combination_iterator<mpq>& iter) {
|
|
|
|
lp_assert(column_is_int_inf(inf_col));
|
|
|
|
TRACE("gomory_cut",
|
|
tout << "applying cut at:\n"; m_lar_solver->print_linear_iterator_indices_only(&iter, tout); tout << std::endl;
|
|
iter.reset();
|
|
unsigned j;
|
|
while(iter.next(j)) {
|
|
m_lar_solver->m_mpq_lar_core_solver.m_r_solver.print_column_info(j, tout);
|
|
}
|
|
iter.reset();
|
|
tout << "inf_col = " << inf_col << std::endl;
|
|
);
|
|
|
|
// gomory will be t >= k
|
|
k = 1;
|
|
mpq lcm_den(1);
|
|
unsigned x_j;
|
|
mpq a;
|
|
bool some_int_columns = false;
|
|
lp_assert(iter.is_reset());
|
|
while (iter.next(a, x_j)) {
|
|
if (x_j == inf_col)
|
|
continue;
|
|
// make the format compatible with the format used in: Integrating Simplex with DPLL(T)
|
|
a.neg();
|
|
if (is_real(x_j))
|
|
real_case_in_gomory_cut(a, x_j, k, t, expl, inf_col);
|
|
else {
|
|
if (a.is_int()) continue; // f_j will be zero and no monomial will be added
|
|
some_int_columns = true;
|
|
int_case_in_gomory_cut(a, x_j, k, t, expl, lcm_den, inf_col);
|
|
}
|
|
}
|
|
|
|
if (t.is_empty())
|
|
return report_conflict_from_gomory_cut(k);
|
|
if (some_int_columns)
|
|
adjust_term_and_k_for_some_ints_case_gomory(t, k, lcm_den);
|
|
|
|
lp_assert(current_solution_is_inf_on_cut(t, k));
|
|
m_lar_solver->subs_term_columns(t);
|
|
return lia_move::cut;
|
|
}
|
|
|
|
void int_solver::init_check_data() {
|
|
unsigned n = m_lar_solver->A_r().column_count();
|
|
m_old_values_set.resize(n);
|
|
m_old_values_data.resize(n);
|
|
}
|
|
|
|
int int_solver::find_free_var_in_gomory_row(linear_combination_iterator<mpq>& iter) {
|
|
unsigned j;
|
|
while(iter.next(j)) {
|
|
if (!is_base(j) && is_free(j))
|
|
return static_cast<int>(j);
|
|
}
|
|
iter.reset();
|
|
return -1;
|
|
}
|
|
|
|
lia_move int_solver::proceed_with_gomory_cut(lar_term& t, mpq& k, explanation& ex, unsigned j) {
|
|
lia_move ret;
|
|
linear_combination_iterator<mpq>* iter = m_lar_solver->get_iterator_on_row(row_of_basic_column(j));
|
|
int free_j = find_free_var_in_gomory_row(*iter);
|
|
if (free_j != -1) {
|
|
ret = create_branch_on_column(j, t, k, true);
|
|
} else if (!is_gomory_cut_target(*iter)) {
|
|
ret = create_branch_on_column(j, t, k, false);
|
|
} else {
|
|
ret = mk_gomory_cut(t, k, ex, j, *iter);
|
|
}
|
|
delete iter;
|
|
return ret;
|
|
}
|
|
|
|
|
|
unsigned int_solver::row_of_basic_column(unsigned j) const {
|
|
return m_lar_solver->m_mpq_lar_core_solver.m_r_heading[j];
|
|
}
|
|
|
|
template <typename T>
|
|
void int_solver::fill_cut_solver(cut_solver<T> & cs) {
|
|
for (lar_base_constraint * c : m_lar_solver->constraints())
|
|
fill_cut_solver_for_constraint(c, cs);
|
|
}
|
|
|
|
template <typename T>
|
|
void int_solver::fill_cut_solver_for_constraint(const lar_base_constraint* c, cut_solver<T> & cs) {
|
|
vector<std::pair<T, var_index>> coeffs;
|
|
T rs;
|
|
get_int_coeffs_from_constraint(c, coeffs, rs);
|
|
cs.add_ineq(coeffs, rs);
|
|
}
|
|
|
|
|
|
// it produces an inequality coeff*x <= rs
|
|
template <typename T>
|
|
void int_solver::get_int_coeffs_from_constraint(const lar_base_constraint* c, vector<std::pair<T, var_index>>& coeffs, T & rs) {
|
|
lp_assert(c->m_kind != EQ); // it is not implemented, we need to create two inequalities in this case
|
|
int sign = ((int)c->m_kind > 0) ? -1 : 1;
|
|
vector<std::pair<T, var_index>> lhs = c->get_left_side_coefficients();
|
|
T den = denominator(c->m_right_side);
|
|
for (auto & kv : lhs) {
|
|
den = lcm(den, denominator(kv.first));
|
|
}
|
|
lp_assert(den > 0);
|
|
for (auto& kv : lhs) {
|
|
coeffs.push_back(std::make_pair(den * kv.first * sign, kv.second));
|
|
}
|
|
rs = den * c->m_right_side * sign;
|
|
if (kind_is_strict(c->m_kind))
|
|
rs--;
|
|
}
|
|
|
|
|
|
// this will allow to enable and disable tracking of the pivot rows
|
|
struct pivoted_rows_tracking_control {
|
|
lar_solver * m_lar_solver;
|
|
bool m_track_pivoted_rows;
|
|
pivoted_rows_tracking_control(lar_solver* ls) :
|
|
m_lar_solver(ls),
|
|
m_track_pivoted_rows(ls->get_track_pivoted_rows())
|
|
{
|
|
TRACE("pivoted_rows", tout << "pivoted rows = " << ls->m_mpq_lar_core_solver.m_r_solver.m_pivoted_rows->size() << std::endl;);
|
|
m_lar_solver->set_track_pivoted_rows(false);
|
|
}
|
|
~pivoted_rows_tracking_control() {
|
|
TRACE("pivoted_rows", tout << "pivoted rows = " << m_lar_solver->m_mpq_lar_core_solver.m_r_solver.m_pivoted_rows->size() << std::endl;);
|
|
m_lar_solver->set_track_pivoted_rows(m_track_pivoted_rows);
|
|
}
|
|
};
|
|
|
|
lia_move int_solver::check(lar_term& t, mpq& k, explanation& ex) {
|
|
init_check_data();
|
|
lp_assert(inf_int_set_is_correct());
|
|
// it is mostly a reimplementation of
|
|
// final_check_status theory_arith<Ext>::check_int_feasibility()
|
|
// from theory_arith_int.h
|
|
if (!has_inf_int())
|
|
return lia_move::ok;
|
|
if (settings().m_run_gcd_test)
|
|
if (!gcd_test(ex))
|
|
return lia_move::conflict;
|
|
pivoted_rows_tracking_control pc(m_lar_solver);
|
|
/* if (m_params.m_arith_euclidean_solver) apply_euclidean_solver(); */
|
|
//m_lar_solver->pivot_fixed_vars_from_basis();
|
|
patch_int_infeasible_nbasic_columns();
|
|
if (!has_inf_int())
|
|
return lia_move::ok;
|
|
|
|
// lp_assert(non_basic_columns_are_at_bounds());
|
|
TRACE("gomory_cut", tout << m_branch_cut_counter+1 << ", " << settings().m_int_branch_cut_gomory_threshold << std::endl;);
|
|
if (++m_branch_cut_counter > 0) { // testing cut_solver
|
|
cut_solver<mpq> cs([this](unsigned j) {return m_lar_solver->get_column_name(j);});
|
|
fill_cut_solver(cs);
|
|
} else
|
|
if ((++m_branch_cut_counter) % settings().m_int_branch_cut_gomory_threshold == 0) {
|
|
if (move_non_basic_columns_to_bounds()) {
|
|
lp_status st = m_lar_solver->find_feasible_solution();
|
|
lp_assert(non_basic_columns_are_at_bounds());
|
|
if (st != lp_status::FEASIBLE && st != lp_status::OPTIMAL) {
|
|
TRACE("arith_int", tout << "give_up\n";);
|
|
return lia_move::give_up;
|
|
}
|
|
}
|
|
int j = find_inf_int_base_column();
|
|
if (j == -1) return lia_move::ok;
|
|
TRACE("arith_int", tout << "j = " << j << " does not have an integer assignment: " << get_value(j) << "\n";);
|
|
return proceed_with_gomory_cut(t, k, ex, j);
|
|
}
|
|
return create_branch_on_column(find_inf_int_base_column(), t, k, false);
|
|
}
|
|
|
|
bool int_solver::move_non_basic_column_to_bounds(unsigned j) {
|
|
auto & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
auto & val = lcs.m_r_x[j];
|
|
switch (lcs.m_column_types()[j]) {
|
|
case column_type::boxed:
|
|
if (val != lcs.m_r_low_bounds()[j] && val != lcs.m_r_upper_bounds()[j]) {
|
|
if (random() % 2 == 0)
|
|
set_value_for_nbasic_column(j, lcs.m_r_low_bounds()[j]);
|
|
else
|
|
set_value_for_nbasic_column(j, lcs.m_r_upper_bounds()[j]);
|
|
return true;
|
|
}
|
|
break;
|
|
case column_type::low_bound:
|
|
if (val != lcs.m_r_low_bounds()[j]) {
|
|
set_value_for_nbasic_column(j, lcs.m_r_low_bounds()[j]);
|
|
return true;
|
|
}
|
|
break;
|
|
case column_type::upper_bound:
|
|
if (val != lcs.m_r_upper_bounds()[j]) {
|
|
set_value_for_nbasic_column(j, lcs.m_r_upper_bounds()[j]);
|
|
return true;
|
|
}
|
|
break;
|
|
default:
|
|
if (is_int(j) && !val.is_int()) {
|
|
set_value_for_nbasic_column(j, impq(floor(val)));
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool int_solver::move_non_basic_columns_to_bounds() {
|
|
auto & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
bool change = false;
|
|
for (unsigned j : lcs.m_r_nbasis) {
|
|
if (move_non_basic_column_to_bounds(j))
|
|
change = true;
|
|
}
|
|
return change;
|
|
}
|
|
|
|
void int_solver::set_value_for_nbasic_column_ignore_old_values(unsigned j, const impq & new_val) {
|
|
lp_assert(!is_base(j));
|
|
auto & x = m_lar_solver->m_mpq_lar_core_solver.m_r_x[j];
|
|
auto delta = new_val - x;
|
|
x = new_val;
|
|
update_column_in_int_inf_set(j);
|
|
m_lar_solver->change_basic_columns_dependend_on_a_given_nb_column(j, delta);
|
|
}
|
|
|
|
|
|
void int_solver::set_value_for_nbasic_column(unsigned j, const impq & new_val) {
|
|
lp_assert(!is_base(j));
|
|
auto & x = m_lar_solver->m_mpq_lar_core_solver.m_r_x[j];
|
|
if (m_lar_solver->has_int_var() && !m_old_values_set.contains(j)) {
|
|
m_old_values_set.insert(j);
|
|
m_old_values_data[j] = x;
|
|
}
|
|
auto delta = new_val - x;
|
|
x = new_val;
|
|
update_column_in_int_inf_set(j);
|
|
m_lar_solver->change_basic_columns_dependend_on_a_given_nb_column(j, delta);
|
|
}
|
|
|
|
void int_solver::patch_int_infeasible_non_basic_column(unsigned j) {
|
|
if (!is_int(j)) return;
|
|
bool inf_l, inf_u;
|
|
impq l, u;
|
|
mpq m;
|
|
if (!get_value(j).is_int() || !get_freedom_interval_for_column(j, inf_l, l, inf_u, u, m)) {
|
|
move_non_basic_column_to_bounds(j);
|
|
return;
|
|
}
|
|
auto & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
impq & val = lcs.m_r_x[j];
|
|
bool val_is_int = val.is_int();
|
|
bool m_is_one = m.is_one();
|
|
if (m.is_one() && val_is_int)
|
|
return;
|
|
// check whether value of j is already a multiple of m.
|
|
if (val_is_int && (val.x / m).is_int())
|
|
return;
|
|
TRACE("patch_int",
|
|
tout << "TARGET j" << j << " -> [";
|
|
if (inf_l) tout << "-oo"; else tout << l;
|
|
tout << ", ";
|
|
if (inf_u) tout << "oo"; else tout << u;
|
|
tout << "]";
|
|
tout << ", m: " << m << ", val: " << val << ", is_int: " << m_lar_solver->column_is_int(j) << "\n";);
|
|
if (!inf_l) {
|
|
l = m_is_one ? ceil(l) : m * ceil(l / m);
|
|
if (inf_u || l <= u) {
|
|
TRACE("patch_int",
|
|
tout << "patching with l: " << l << '\n';);
|
|
|
|
set_value_for_nbasic_column(j, l);
|
|
}
|
|
else {
|
|
TRACE("patch_int",
|
|
tout << "not patching " << l << "\n";);
|
|
}
|
|
}
|
|
else if (!inf_u) {
|
|
u = m_is_one ? floor(u) : m * floor(u / m);
|
|
set_value_for_nbasic_column(j, u);
|
|
TRACE("patch_int",
|
|
tout << "patching with u: " << u << '\n';);
|
|
}
|
|
else {
|
|
set_value_for_nbasic_column(j, impq(0));
|
|
TRACE("patch_int",
|
|
tout << "patching with 0\n";);
|
|
}
|
|
}
|
|
void int_solver::patch_int_infeasible_nbasic_columns() {
|
|
lp_assert(is_feasible());
|
|
for (unsigned j : m_lar_solver->m_mpq_lar_core_solver.m_r_nbasis) {
|
|
patch_int_infeasible_non_basic_column(j);
|
|
if (!is_feasible())
|
|
break;
|
|
}
|
|
if (!is_feasible()) {
|
|
move_non_basic_columns_to_bounds();
|
|
m_lar_solver->find_feasible_solution();
|
|
}
|
|
lp_assert(is_feasible() && inf_int_set_is_correct());
|
|
}
|
|
|
|
mpq get_denominators_lcm(iterator_on_row<mpq> &it) {
|
|
mpq r(1);
|
|
mpq a;
|
|
unsigned j;
|
|
while (it.next(a, j)) {
|
|
r = lcm(r, denominator(a));
|
|
}
|
|
return r;
|
|
}
|
|
|
|
bool int_solver::gcd_test_for_row(static_matrix<mpq, numeric_pair<mpq>> & A, unsigned i, explanation & ex) {
|
|
iterator_on_row<mpq> it(A.m_rows[i]);
|
|
mpq lcm_den = get_denominators_lcm(it);
|
|
mpq consts(0);
|
|
mpq gcds(0);
|
|
mpq least_coeff(0);
|
|
bool least_coeff_is_bounded = false;
|
|
mpq a;
|
|
unsigned j;
|
|
while (it.next(a, j)) {
|
|
if (m_lar_solver->column_is_fixed(j)) {
|
|
mpq aux = lcm_den * a;
|
|
consts += aux * m_lar_solver->column_low_bound(j).x;
|
|
}
|
|
else if (m_lar_solver->column_is_real(j)) {
|
|
return true;
|
|
}
|
|
else if (gcds.is_zero()) {
|
|
gcds = abs(lcm_den * a);
|
|
least_coeff = gcds;
|
|
least_coeff_is_bounded = m_lar_solver->column_is_bounded(j);
|
|
}
|
|
else {
|
|
mpq aux = abs(lcm_den * a);
|
|
gcds = gcd(gcds, aux);
|
|
if (aux < least_coeff) {
|
|
least_coeff = aux;
|
|
least_coeff_is_bounded = m_lar_solver->column_is_bounded(j);
|
|
}
|
|
else if (least_coeff_is_bounded && aux == least_coeff) {
|
|
least_coeff_is_bounded = m_lar_solver->column_is_bounded(j);
|
|
}
|
|
}
|
|
SASSERT(gcds.is_int());
|
|
SASSERT(least_coeff.is_int());
|
|
TRACE("gcd_test_bug", tout << "coeff: " << a << ", gcds: " << gcds
|
|
<< " least_coeff: " << least_coeff << " consts: " << consts << "\n";);
|
|
|
|
}
|
|
|
|
if (gcds.is_zero()) {
|
|
// All variables are fixed.
|
|
// This theory guarantees that the assignment satisfies each row, and
|
|
// fixed integer variables are assigned to integer values.
|
|
return true;
|
|
}
|
|
|
|
if (!(consts / gcds).is_int())
|
|
fill_explanation_from_fixed_columns(it, ex);
|
|
|
|
if (least_coeff.is_one() && !least_coeff_is_bounded) {
|
|
SASSERT(gcds.is_one());
|
|
return true;
|
|
}
|
|
|
|
if (least_coeff_is_bounded) {
|
|
return ext_gcd_test(it, least_coeff, lcm_den, consts, ex);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void int_solver::add_to_explanation_from_fixed_or_boxed_column(unsigned j, explanation & ex) {
|
|
constraint_index lc, uc;
|
|
m_lar_solver->get_bound_constraint_witnesses_for_column(j, lc, uc);
|
|
ex.m_explanation.push_back(std::make_pair(mpq(1), lc));
|
|
ex.m_explanation.push_back(std::make_pair(mpq(1), uc));
|
|
}
|
|
void int_solver::fill_explanation_from_fixed_columns(iterator_on_row<mpq> & it, explanation & ex) {
|
|
it.reset();
|
|
unsigned j;
|
|
while (it.next(j)) {
|
|
if (!m_lar_solver->column_is_fixed(j))
|
|
continue;
|
|
add_to_explanation_from_fixed_or_boxed_column(j, ex);
|
|
}
|
|
}
|
|
|
|
bool int_solver::gcd_test(explanation & ex) {
|
|
auto & A = m_lar_solver->A_r(); // getting the matrix
|
|
for (unsigned i = 0; i < A.row_count(); i++)
|
|
if (!gcd_test_for_row(A, i, ex)) {
|
|
std::cout << "false from gcd_test\n" ;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool int_solver::ext_gcd_test(iterator_on_row<mpq> & it,
|
|
mpq const & least_coeff,
|
|
mpq const & lcm_den,
|
|
mpq const & consts, explanation& ex) {
|
|
mpq gcds(0);
|
|
mpq l(consts);
|
|
mpq u(consts);
|
|
|
|
it.reset();
|
|
mpq a;
|
|
unsigned j;
|
|
while (it.next(a, j)) {
|
|
if (m_lar_solver->column_is_fixed(j))
|
|
continue;
|
|
SASSERT(!m_lar_solver->column_is_real(j));
|
|
mpq ncoeff = lcm_den * a;
|
|
SASSERT(ncoeff.is_int());
|
|
mpq abs_ncoeff = abs(ncoeff);
|
|
if (abs_ncoeff == least_coeff) {
|
|
SASSERT(m_lar_solver->column_is_bounded(j));
|
|
if (ncoeff.is_pos()) {
|
|
// l += ncoeff * m_lar_solver->column_low_bound(j).x;
|
|
l.addmul(ncoeff, m_lar_solver->column_low_bound(j).x);
|
|
// u += ncoeff * m_lar_solver->column_upper_bound(j).x;
|
|
u.addmul(ncoeff, m_lar_solver->column_upper_bound(j).x);
|
|
}
|
|
else {
|
|
// l += ncoeff * upper_bound(j).get_rational();
|
|
l.addmul(ncoeff, m_lar_solver->column_upper_bound(j).x);
|
|
// u += ncoeff * low_bound(j).get_rational();
|
|
u.addmul(ncoeff, m_lar_solver->column_low_bound(j).x);
|
|
}
|
|
add_to_explanation_from_fixed_or_boxed_column(j, ex);
|
|
}
|
|
else if (gcds.is_zero()) {
|
|
gcds = abs_ncoeff;
|
|
}
|
|
else {
|
|
gcds = gcd(gcds, abs_ncoeff);
|
|
}
|
|
SASSERT(gcds.is_int());
|
|
}
|
|
|
|
if (gcds.is_zero()) {
|
|
return true;
|
|
}
|
|
|
|
mpq l1 = ceil(l/gcds);
|
|
mpq u1 = floor(u/gcds);
|
|
|
|
if (u1 < l1) {
|
|
fill_explanation_from_fixed_columns(it, ex);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
linear_combination_iterator<mpq> * int_solver::get_column_iterator(unsigned j) {
|
|
if (m_lar_solver->use_tableau())
|
|
return new iterator_on_column<mpq, impq>(m_lar_solver->A_r().m_columns[j], m_lar_solver->A_r());
|
|
return new iterator_on_indexed_vector<mpq>(m_lar_solver->get_column_in_lu_mode(j));
|
|
}
|
|
|
|
|
|
int_solver::int_solver(lar_solver* lar_slv) :
|
|
m_lar_solver(lar_slv),
|
|
m_branch_cut_counter(0) {
|
|
lp_assert(m_old_values_set.size() == 0);
|
|
m_old_values_set.resize(lar_slv->A_r().column_count());
|
|
m_old_values_data.resize(lar_slv->A_r().column_count(), zero_of_type<impq>());
|
|
m_lar_solver->set_int_solver(this);
|
|
}
|
|
|
|
bool int_solver::has_low(unsigned j) const {
|
|
switch (m_lar_solver->m_mpq_lar_core_solver.m_column_types()[j]) {
|
|
case column_type::fixed:
|
|
case column_type::boxed:
|
|
case column_type::low_bound:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool int_solver::has_upper(unsigned j) const {
|
|
switch (m_lar_solver->m_mpq_lar_core_solver.m_column_types()[j]) {
|
|
case column_type::fixed:
|
|
case column_type::boxed:
|
|
case column_type::upper_bound:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
void set_lower(impq & l,
|
|
bool & inf_l,
|
|
impq const & v ) {
|
|
if (inf_l || v > l) {
|
|
l = v;
|
|
inf_l = false;
|
|
}
|
|
}
|
|
|
|
void set_upper(impq & u,
|
|
bool & inf_u,
|
|
impq const & v) {
|
|
if (inf_u || v < u) {
|
|
u = v;
|
|
inf_u = false;
|
|
}
|
|
}
|
|
|
|
bool int_solver::get_freedom_interval_for_column(unsigned j, bool & inf_l, impq & l, bool & inf_u, impq & u, mpq & m) {
|
|
auto & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
if (lcs.m_r_heading[j] >= 0) // the basic var
|
|
return false;
|
|
|
|
impq const & xj = get_value(j);
|
|
linear_combination_iterator<mpq> *it = get_column_iterator(j);
|
|
|
|
inf_l = true;
|
|
inf_u = true;
|
|
l = u = zero_of_type<impq>();
|
|
m = mpq(1);
|
|
|
|
if (has_low(j)) {
|
|
set_lower(l, inf_l, low_bound(j));
|
|
}
|
|
if (has_upper(j)) {
|
|
set_upper(u, inf_u, upper_bound(j));
|
|
}
|
|
|
|
mpq a; // the coefficient in the column
|
|
unsigned row_index;
|
|
while (it->next(a, row_index)) {
|
|
unsigned i = lcs.m_r_basis[row_index];
|
|
impq const & xi = get_value(i);
|
|
if (is_int(i) && is_int(j) && !a.is_int())
|
|
m = lcm(m, denominator(a));
|
|
if (a.is_neg()) {
|
|
if (has_low(i))
|
|
set_lower(l, inf_l, xj + (xi - lcs.m_r_low_bounds()[i]) / a);
|
|
|
|
if (has_upper(i))
|
|
set_upper(u, inf_u, xj + (xi - lcs.m_r_upper_bounds()[i]) / a);
|
|
}
|
|
else {
|
|
if (has_upper(i))
|
|
set_lower(l, inf_l, xj + (xi - lcs.m_r_upper_bounds()[i]) / a);
|
|
if (has_low(i))
|
|
set_upper(u, inf_u, xj + (xi - lcs.m_r_low_bounds()[i]) / a);
|
|
}
|
|
if (!inf_l && !inf_u && l == u) break;;
|
|
}
|
|
|
|
delete it;
|
|
TRACE("freedom_interval",
|
|
tout << "freedom variable for:\n";
|
|
tout << m_lar_solver->get_column_name(j);
|
|
tout << "[";
|
|
if (inf_l) tout << "-oo"; else tout << l;
|
|
tout << "; ";
|
|
if (inf_u) tout << "oo"; else tout << u;
|
|
tout << "]\n";
|
|
tout << "val = " << get_value(j) << "\n";
|
|
);
|
|
lp_assert(inf_l || l <= get_value(j));
|
|
lp_assert(inf_u || u >= get_value(j));
|
|
return true;
|
|
|
|
}
|
|
|
|
bool int_solver::is_int(unsigned j) const {
|
|
return m_lar_solver->column_is_int(j);
|
|
}
|
|
|
|
bool int_solver::is_real(unsigned j) const {
|
|
return !is_int(j);
|
|
}
|
|
|
|
bool int_solver::value_is_int(unsigned j) const {
|
|
return m_lar_solver->column_value_is_int(j);
|
|
}
|
|
|
|
|
|
|
|
bool int_solver::is_feasible() const {
|
|
auto & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
lp_assert(
|
|
lcs.m_r_solver.calc_current_x_is_feasible_include_non_basis() ==
|
|
lcs.m_r_solver.current_x_is_feasible());
|
|
return lcs.m_r_solver.current_x_is_feasible();
|
|
}
|
|
const impq & int_solver::get_value(unsigned j) const {
|
|
return m_lar_solver->m_mpq_lar_core_solver.m_r_x[j];
|
|
}
|
|
|
|
void int_solver::display_column(std::ostream & out, unsigned j) const {
|
|
m_lar_solver->m_mpq_lar_core_solver.m_r_solver.print_column_info(j, out);
|
|
}
|
|
|
|
bool int_solver::inf_int_set_is_correct() const {
|
|
for (unsigned j = 0; j < m_lar_solver->A_r().column_count(); j++) {
|
|
if (inf_int_set().contains(j) != (is_int(j) && (!value_is_int(j)))) {
|
|
TRACE("arith_int", tout << "j= " << j << " inf_int_set().contains(j) = " << inf_int_set().contains(j) << ", is_int(j) = " << is_int(j) << "\nvalue_is_int(j) = " << value_is_int(j) << ", val = " << get_value(j) << std::endl;);
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool int_solver::column_is_int_inf(unsigned j) const {
|
|
return is_int(j) && (!value_is_int(j));
|
|
}
|
|
|
|
void int_solver::update_column_in_int_inf_set(unsigned j) {
|
|
if (is_int(j) && (!value_is_int(j)))
|
|
inf_int_set().insert(j);
|
|
else
|
|
inf_int_set().erase(j);
|
|
}
|
|
|
|
bool int_solver::is_base(unsigned j) const {
|
|
return m_lar_solver->m_mpq_lar_core_solver.m_r_heading[j] >= 0;
|
|
}
|
|
|
|
bool int_solver::is_boxed(unsigned j) const {
|
|
return m_lar_solver->m_mpq_lar_core_solver.m_column_types[j] == column_type::boxed;
|
|
}
|
|
|
|
bool int_solver::is_fixed(unsigned j) const {
|
|
return m_lar_solver->m_mpq_lar_core_solver.m_column_types[j] == column_type::fixed;
|
|
}
|
|
|
|
bool int_solver::is_free(unsigned j) const {
|
|
return m_lar_solver->m_mpq_lar_core_solver.m_column_types[j] == column_type::free_column;
|
|
}
|
|
|
|
bool int_solver::at_bound(unsigned j) const {
|
|
auto & mpq_solver = m_lar_solver->m_mpq_lar_core_solver.m_r_solver;
|
|
switch (mpq_solver.m_column_types[j] ) {
|
|
case column_type::fixed:
|
|
case column_type::boxed:
|
|
return
|
|
mpq_solver.m_low_bounds[j] == get_value(j) ||
|
|
mpq_solver.m_upper_bounds[j] == get_value(j);
|
|
case column_type::low_bound:
|
|
return mpq_solver.m_low_bounds[j] == get_value(j);
|
|
case column_type::upper_bound:
|
|
return mpq_solver.m_upper_bounds[j] == get_value(j);
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool int_solver::at_low(unsigned j) const {
|
|
auto & mpq_solver = m_lar_solver->m_mpq_lar_core_solver.m_r_solver;
|
|
switch (mpq_solver.m_column_types[j] ) {
|
|
case column_type::fixed:
|
|
case column_type::boxed:
|
|
case column_type::low_bound:
|
|
return mpq_solver.m_low_bounds[j] == get_value(j);
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool int_solver::at_upper(unsigned j) const {
|
|
auto & mpq_solver = m_lar_solver->m_mpq_lar_core_solver.m_r_solver;
|
|
switch (mpq_solver.m_column_types[j] ) {
|
|
case column_type::fixed:
|
|
case column_type::boxed:
|
|
case column_type::upper_bound:
|
|
return mpq_solver.m_upper_bounds[j] == get_value(j);
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
lp_settings& int_solver::settings() {
|
|
return m_lar_solver->settings();
|
|
}
|
|
|
|
void int_solver::display_row_info(std::ostream & out, unsigned row_index) const {
|
|
auto & rslv = m_lar_solver->m_mpq_lar_core_solver.m_r_solver;
|
|
auto it = m_lar_solver->get_iterator_on_row(row_index);
|
|
mpq a;
|
|
unsigned j;
|
|
while (it->next(a, j)) {
|
|
if (numeric_traits<mpq>::is_pos(a))
|
|
out << "+";
|
|
out << a << rslv.column_name(j) << " ";
|
|
}
|
|
|
|
it->reset();
|
|
while(it->next(j)) {
|
|
rslv.print_column_bound_info(j, out);
|
|
}
|
|
rslv.print_column_bound_info(rslv.m_basis[row_index], out);
|
|
delete it;
|
|
}
|
|
|
|
unsigned int_solver::random() {
|
|
return m_lar_solver->get_core_solver().settings().random_next();
|
|
}
|
|
|
|
bool int_solver::shift_var(unsigned j, unsigned range) {
|
|
if (is_fixed(j) || is_base(j))
|
|
return false;
|
|
|
|
bool inf_l, inf_u;
|
|
impq l, u;
|
|
mpq m;
|
|
get_freedom_interval_for_column(j, inf_l, l, inf_u, u, m);
|
|
if (inf_l && inf_u) {
|
|
impq new_val = impq(random() % (range + 1));
|
|
set_value_for_nbasic_column_ignore_old_values(j, new_val);
|
|
return true;
|
|
}
|
|
if (is_int(j)) {
|
|
if (!inf_l) {
|
|
l = ceil(l);
|
|
if (!m.is_one())
|
|
l = m*ceil(l/m);
|
|
}
|
|
if (!inf_u) {
|
|
u = floor(u);
|
|
if (!m.is_one())
|
|
u = m*floor(u/m);
|
|
}
|
|
}
|
|
if (!inf_l && !inf_u && l >= u)
|
|
return false;
|
|
if (inf_u) {
|
|
SASSERT(!inf_l);
|
|
impq delta = impq(random() % (range + 1));
|
|
impq new_val = l + m*delta;
|
|
set_value_for_nbasic_column_ignore_old_values(j, new_val);
|
|
return true;
|
|
}
|
|
if (inf_l) {
|
|
SASSERT(!inf_u);
|
|
impq delta = impq(random() % (range + 1));
|
|
impq new_val = u - m*delta;
|
|
set_value_for_nbasic_column_ignore_old_values(j, new_val);
|
|
return true;
|
|
}
|
|
if (!is_int(j)) {
|
|
SASSERT(!inf_l && !inf_u);
|
|
mpq delta = mpq(random() % (range + 1));
|
|
impq new_val = l + ((delta * (u - l)) / mpq(range));
|
|
set_value_for_nbasic_column_ignore_old_values(j, new_val);
|
|
return true;
|
|
}
|
|
else {
|
|
mpq r = (u.x - l.x) / m;
|
|
if (r < mpq(range))
|
|
range = static_cast<unsigned>(r.get_uint64());
|
|
impq new_val = l + m * (impq(random() % (range + 1)));
|
|
set_value_for_nbasic_column_ignore_old_values(j, new_val);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
bool int_solver::non_basic_columns_are_at_bounds() const {
|
|
auto & lcs = m_lar_solver->m_mpq_lar_core_solver;
|
|
for (unsigned j :lcs.m_r_nbasis) {
|
|
auto & val = lcs.m_r_x[j];
|
|
switch (lcs.m_column_types()[j]) {
|
|
case column_type::boxed:
|
|
if (val != lcs.m_r_low_bounds()[j] && val != lcs.m_r_upper_bounds()[j])
|
|
return false;
|
|
break;
|
|
case column_type::low_bound:
|
|
if (val != lcs.m_r_low_bounds()[j])
|
|
return false;
|
|
break;
|
|
case column_type::upper_bound:
|
|
if (val != lcs.m_r_upper_bounds()[j])
|
|
return false;
|
|
break;
|
|
default:
|
|
if (is_int(j) && !val.is_int()) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
const impq& int_solver::low_bound(unsigned j) const {
|
|
return m_lar_solver->column_low_bound(j);
|
|
}
|
|
|
|
lia_move int_solver::create_branch_on_column(int j, lar_term& t, mpq& k, bool free_column) const {
|
|
lp_assert(t.is_empty());
|
|
lp_assert(j != -1);
|
|
t.add_monomial(mpq(1), m_lar_solver->adjust_column_index_to_term_index(j));
|
|
k = free_column? mpq(0) : floor(get_value(j));
|
|
TRACE("arith_int", tout << "branching v" << j << " = " << get_value(j) << "\n";
|
|
display_column(tout, j);
|
|
tout << "k = " << k << std::endl;
|
|
);
|
|
return lia_move::branch;
|
|
|
|
}
|
|
|
|
const impq& int_solver::upper_bound(unsigned j) const {
|
|
return m_lar_solver->column_upper_bound(j);
|
|
}
|
|
void int_solver::display_inf_or_int_inf_columns(std::ostream & out) const {
|
|
out << "int inf\n";
|
|
for (unsigned j : m_lar_solver->m_inf_int_set.m_index) {
|
|
display_column(out, j);
|
|
}
|
|
out << "regular inf\n";
|
|
for (unsigned j : m_lar_solver->m_mpq_lar_core_solver.m_r_solver.m_inf_set.m_index) {
|
|
display_column(out, j);
|
|
}
|
|
}
|
|
}
|