dev(lp): remove a warning
Signed-off-by: Lev Nachmanson <levnach@microsoft.com>
This commit is contained in:
parent
a7e3befd21
commit
0e4f98dc47
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ void lp_primal_core_solver<T, X>::sort_non_basis() {
|
||||||
|
|
||||||
m_non_basis_list.clear();
|
m_non_basis_list.clear();
|
||||||
// reinit m_basis_heading
|
// reinit m_basis_heading
|
||||||
for (int j = 0; j < this->m_non_basic_columns.size(); j++) {
|
for (unsigned j = 0; j < this->m_non_basic_columns.size(); j++) {
|
||||||
unsigned col = this->m_non_basic_columns[j];
|
unsigned col = this->m_non_basic_columns[j];
|
||||||
this->m_basis_heading[col] = - j - 1;
|
this->m_basis_heading[col] = - j - 1;
|
||||||
m_non_basis_list.push_back(col);
|
m_non_basis_list.push_back(col);
|
||||||
|
|
Loading…
Reference in a new issue