mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 22:35:45 +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
|
@ -8,8 +8,8 @@ namespace lean {
|
|||
template <typename T>
|
||||
struct iterator_on_row:linear_combination_iterator<T> {
|
||||
const vector<row_cell<T>> & m_row;
|
||||
unsigned m_i= 0; // offset
|
||||
iterator_on_row(const vector<row_cell<T>> & row) : m_row(row)
|
||||
unsigned m_i; // offset
|
||||
iterator_on_row(const vector<row_cell<T>> & row) : m_row(row), m_i(0)
|
||||
{}
|
||||
unsigned size() const { return m_row.size(); }
|
||||
bool next(T & a, unsigned & i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue