Skip to content
Snippets Groups Projects
Commit e6d563ee authored by Tom Fischer's avatar Tom Fischer
Browse files

added method getValue() to template class CRSMatrix

parent 59a21475
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,22 @@ public:
return 1;
}
double getValue(IDX_TYPE row, IDX_TYPE col)
{
assert(0 <= row && row < MatrixBase::_n_rows);
// linear search - for matrices with many entries per row binary search is much faster
const IDX_TYPE idx_end (_row_ptr[row+1]);
IDX_TYPE j(_row_ptr[row]), k;
while (j<idx_end && (k=_col_idx[j]) <= col) {
if (k == col) {
return _data[j];
}
j++;
}
return 0.0;
}
/**
* This is the constant access operator to a non-zero matrix entry.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment