signed vs unsigned warning fixed

This commit is contained in:
Yves Brise 2010-09-15 06:41:54 +00:00
parent 25b02d8699
commit e2bc8436ec
1 changed files with 1 additions and 1 deletions

View File

@ -1252,7 +1252,7 @@ expel_artificial_variables_from_basis( )
// know about variables entering the basis.
// The partial pricing strategies that keep the set of nonbasic vars
// explicitly are synchronized during transition from phaseI to phaseII
for (unsigned int i_ = qp_n + slack_A.size(); i_ < in_B.size(); ++i_) {
for (int i_ = qp_n + slack_A.size(); i_ < in_B.size(); ++i_) {
if (is_basic(i_)) { // is basic
if (has_ineq) {
row_ind = in_C[ art_A[i_ - qp_n - slack_A.size()].first];