mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
merging with the lp fork
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
cf695ab876
commit
b08f094620
44 changed files with 902 additions and 319 deletions
|
@ -19,9 +19,9 @@ class bound_analyzer_on_row {
|
|||
|
||||
linear_combination_iterator<mpq> & m_it;
|
||||
unsigned m_row_or_term_index;
|
||||
int m_column_of_u = -1; // index of an unlimited from above monoid
|
||||
int m_column_of_u; // index of an unlimited from above monoid
|
||||
// -1 means that such a value is not found, -2 means that at least two of such monoids were found
|
||||
int m_column_of_l = -1; // index of an unlimited from below monoid
|
||||
int m_column_of_l; // index of an unlimited from below monoid
|
||||
impq m_rs;
|
||||
bound_propagator & m_bp;
|
||||
public :
|
||||
|
@ -36,7 +36,9 @@ public :
|
|||
m_it(it),
|
||||
m_row_or_term_index(row_or_term_index),
|
||||
m_rs(rs),
|
||||
m_bp(bp)
|
||||
m_bp(bp),
|
||||
m_column_of_u(-1),
|
||||
m_column_of_l(-1)
|
||||
{}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue