mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
smarter explanation.h (#4385)
* smarter explanation.h Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * clean explanation API Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * suppress warnings Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * disable the warnings Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
3b0c40044f
commit
af2f74c05f
16 changed files with 109 additions and 89 deletions
|
@ -110,7 +110,7 @@ void square_sparse_matrix<T, X>::set_with_no_adjusting_for_row(unsigned row, uns
|
|||
}
|
||||
}
|
||||
// have not found the column between the indices
|
||||
row_vec.push_back(indexed_value<T>(val, col)); // what about m_other ???
|
||||
row_vec.push_back(indexed_value<T>(val, col, -1));
|
||||
}
|
||||
|
||||
template <typename T, typename X>
|
||||
|
@ -123,7 +123,7 @@ void square_sparse_matrix<T, X>::set_with_no_adjusting_for_col(unsigned row, uns
|
|||
}
|
||||
}
|
||||
// have not found the column between the indices
|
||||
col_vec.push_back(indexed_value<T>(val, row)); // what about m_other ???
|
||||
col_vec.push_back(indexed_value<T>(val, row, -1));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue