mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
work on static_matrix's cells
Signed-off-by: Lev <levnach@hotmail.com> trying the new scheme in static_matrix : in progress Signed-off-by: Lev Nachmanson <levnach@hotmail.com> in the middle of changes in static_matrix Signed-off-by: Lev Nachmanson <levnach@hotmail.com> more fixes in static_matrix.h Signed-off-by: Lev Nachmanson <levnach@hotmail.com> debug Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fixes in static_matrix Signed-off-by: Lev <levnach@hotmail.com> fixes in static_matrix, column_strip Signed-off-by: Lev <levnach@hotmail.com> fixes in static_matrix Signed-off-by: Lev Nachmanson <levnach@hotmail.com> fixes for static_matrix Signed-off-by: Lev <levnach@hotmail.com> work on static_matrix Signed-off-by: Lev <levnach@hotmail.com> work on static_matrix Signed-off-by: Lev <levnach@hotmail.com> progress in static_matrix Signed-off-by: Lev <levnach@hotmail.com> fix a bug in swap_with_head_cell Signed-off-by: Lev <levnach@hotmail.com> progress in static_matrix Signed-off-by: Lev <levnach@hotmail.com> compress rows and columns if needed Signed-off-by: Lev <levnach@hotmail.com> fix in compression of cells Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
95845bbb01
commit
16b71fe911
22 changed files with 767 additions and 388 deletions
|
@ -29,65 +29,7 @@ Revision History:
|
|||
namespace lp {
|
||||
template <typename C> // C plays a role of a container
|
||||
class bound_analyzer_on_row {
|
||||
struct term_with_basis_col {
|
||||
const C & m_row;
|
||||
unsigned m_bj;
|
||||
struct ival {
|
||||
unsigned m_var;
|
||||
const mpq & m_coeff;
|
||||
ival(unsigned var, const mpq & val) : m_var(var), m_coeff(val) {
|
||||
}
|
||||
unsigned var() const { return m_var;}
|
||||
const mpq & coeff() const { return m_coeff; }
|
||||
};
|
||||
|
||||
term_with_basis_col(const C& row, unsigned bj) : m_row(row), m_bj(bj) {}
|
||||
struct const_iterator {
|
||||
// fields
|
||||
typename C::const_iterator m_it;
|
||||
unsigned m_bj;
|
||||
|
||||
|
||||
//typedefs
|
||||
|
||||
|
||||
typedef const_iterator self_type;
|
||||
typedef ival value_type;
|
||||
typedef ival reference;
|
||||
typedef int difference_type;
|
||||
typedef std::forward_iterator_tag iterator_category;
|
||||
|
||||
reference operator*() const {
|
||||
if (m_bj == static_cast<unsigned>(-1))
|
||||
return ival((*m_it).var(), (*m_it).coeff());
|
||||
return ival(m_bj, - 1);
|
||||
}
|
||||
self_type operator++() { self_type i = *this; operator++(1); return i; }
|
||||
|
||||
self_type operator++(int) {
|
||||
if (m_bj == static_cast<unsigned>(-1))
|
||||
m_it++;
|
||||
else
|
||||
m_bj = static_cast<unsigned>(-1);
|
||||
return *this;
|
||||
}
|
||||
|
||||
// constructor
|
||||
const_iterator(const typename C::const_iterator& it, unsigned bj) :
|
||||
m_it(it),
|
||||
m_bj(bj)
|
||||
{}
|
||||
bool operator==(const self_type &other) const {
|
||||
return m_it == other.m_it && m_bj == other.m_bj ;
|
||||
}
|
||||
bool operator!=(const self_type &other) const { return !(*this == other); }
|
||||
};
|
||||
const_iterator begin() const {
|
||||
return const_iterator( m_row.begin(), m_bj);
|
||||
}
|
||||
const_iterator end() const { return const_iterator(m_row.end(), m_bj); }
|
||||
};
|
||||
term_with_basis_col m_row;
|
||||
const C& m_row;
|
||||
bound_propagator & m_bp;
|
||||
unsigned m_row_or_term_index;
|
||||
int m_column_of_u; // index of an unlimited from above monoid
|
||||
|
@ -105,7 +47,7 @@ public :
|
|||
bound_propagator & bp
|
||||
)
|
||||
:
|
||||
m_row(it, bj),
|
||||
m_row(it),
|
||||
m_bp(bp),
|
||||
m_row_or_term_index(row_or_term_index),
|
||||
m_column_of_u(-1),
|
||||
|
@ -117,6 +59,8 @@ public :
|
|||
unsigned j;
|
||||
void analyze() {
|
||||
for (const auto & c : m_row) {
|
||||
if (c.dead())
|
||||
continue;
|
||||
if ((m_column_of_l == -2) && (m_column_of_u == -2))
|
||||
break;
|
||||
analyze_bound_on_var_on_coeff(c.var(), c.coeff());
|
||||
|
@ -226,6 +170,7 @@ public :
|
|||
mpq total;
|
||||
lp_assert(is_zero(total));
|
||||
for (const auto& p : m_row) {
|
||||
if (p.dead()) continue;
|
||||
bool str;
|
||||
total -= monoid_min(p.coeff(), p.var(), str);
|
||||
if (str)
|
||||
|
@ -234,6 +179,7 @@ public :
|
|||
|
||||
|
||||
for (const auto &p : m_row) {
|
||||
if (p.dead()) continue;
|
||||
bool str;
|
||||
bool a_is_pos = is_pos(p.coeff());
|
||||
mpq bound = total / p.coeff() + monoid_min_no_mult(a_is_pos, p.var(), str);
|
||||
|
@ -251,6 +197,7 @@ public :
|
|||
mpq total;
|
||||
lp_assert(is_zero(total));
|
||||
for (const auto &p : m_row) {
|
||||
if (p.dead()) continue;
|
||||
bool str;
|
||||
total -= monoid_max(p.coeff(), p.var(), str);
|
||||
if (str)
|
||||
|
@ -258,6 +205,7 @@ public :
|
|||
}
|
||||
|
||||
for (const auto& p : m_row) {
|
||||
if (p.dead()) continue;
|
||||
bool str;
|
||||
bool a_is_pos = is_pos(p.coeff());
|
||||
mpq bound = total / p.coeff() + monoid_max_no_mult(a_is_pos, p.var(), str);
|
||||
|
@ -280,6 +228,7 @@ public :
|
|||
mpq bound = -m_rs.x;
|
||||
bool strict = false;
|
||||
for (const auto& p : m_row) {
|
||||
if (p.dead()) continue;
|
||||
j = p.var();
|
||||
if (j == static_cast<unsigned>(m_column_of_u)) {
|
||||
u_coeff = p.coeff();
|
||||
|
@ -309,6 +258,7 @@ public :
|
|||
mpq bound = -m_rs.x;
|
||||
bool strict = false;
|
||||
for (const auto &p : m_row) {
|
||||
if (p.dead()) continue;
|
||||
j = p.var();
|
||||
if (j == static_cast<unsigned>(m_column_of_l)) {
|
||||
l_coeff = p.coeff();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue