mirror of
https://github.com/Z3Prover/z3
synced 2025-08-14 14:55:25 +00:00
Api (#7097)
* rename ul_pair to column Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * t Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * simple test passed * remove an assert * relax an assertion * remove an obsolete function Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * access a term by the term column * remove the column index from colunm.h * remove an unused method * remove debug code * fix the build of lp_tst Signed-off-by: Lev Nachmanson <levnach@hotmail.com> --------- Signed-off-by: Lev Nachmanson <levnach@hotmail.com> Co-authored-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
133546625c
commit
bdb9106f99
45 changed files with 587 additions and 973 deletions
|
@ -346,14 +346,14 @@ public:
|
|||
// we use the form -it + 1 = 0
|
||||
m_work_vector.set_value(one_of_type<T>(), bj);
|
||||
for (auto p : row) {
|
||||
m_work_vector.set_value(-p.coeff(), p.column().index());
|
||||
m_work_vector.set_value(-p.coeff(), p.j());
|
||||
// but take care of the basis 1 later
|
||||
}
|
||||
|
||||
// now iterate with pivoting
|
||||
fill_last_row_with_pivoting_loop_block(bj, basis_heading);
|
||||
for (auto p : row) {
|
||||
fill_last_row_with_pivoting_loop_block(p.column().index(), basis_heading);
|
||||
fill_last_row_with_pivoting_loop_block(p.j(), basis_heading);
|
||||
}
|
||||
unsigned last_row = row_count() - 1;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue