Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/CoinOslFactorization2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,8 @@ static int c_ekkbtj4p_dense(const int nrow, const double *COIN_RESTRICT dluval,
dv2 = densew[0];
for (k = 0; k < nincol; k++) {
#ifdef DEBUG
int kk = dlu1 - dluval;
int jj = (densew + (nincol - k + 1)) - dwork1;
intptr_t kk = dlu1 - dluval;
intptr_t jj = (densew + (nincol - k + 1)) - dwork1;
int ll = hrowi[k + kk];
if (ll != jj)
abort();
Expand Down
Loading