Skip to content
Snippets Groups Projects
Commit c3b94ec3 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[la.container.istl] add valid() to IstlRowMajorSparseMatrix

parent 17380a9e
No related branches found
No related tags found
No related merge requests found
...@@ -611,6 +611,21 @@ public: ...@@ -611,6 +611,21 @@ public:
} }
set_entry(jj, jj, ScalarType(1)); set_entry(jj, jj, ScalarType(1));
} // ... unit_col(...) } // ... unit_col(...)
bool valid() const
{
for (size_t ii = 0; ii < rows(); ++ii) {
const auto& row_vec = backend_->operator[](ii);
for (size_t jj = 0; jj < cols(); ++jj)
if (backend_->exists(ii, jj)) {
const auto& entry = row_vec[jj][0];
if (std::isnan(entry) || std::isinf(entry))
return false;
}
}
return true;
} // ... valid(...)
/** /**
* \} * \}
*/ */
......
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