Skip to content
Snippets Groups Projects
Commit 3b339d0f authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Use NaNHelper for CRSMatrix output

parent 64f906b9
Branches
Tags
1 merge request!105Add NaNHelper utility
#ifndef CRS_MATRIX_HPP
#define CRS_MATRIX_HPP
#include <algebra/Vector.hpp>
#include <utils/Array.hpp>
#include <utils/NaNHelper.hpp>
#include <utils/PugsAssert.hpp>
#include <algebra/Vector.hpp>
#include <iostream>
template <typename DataType, typename IndexType>
......@@ -100,7 +100,7 @@ class CRSMatrix
const auto row_end = A.m_row_map[i + 1];
os << i << "|";
for (IndexType j = row_begin; j < row_end; ++j) {
os << ' ' << A.m_column_indices[j] << ':' << A.m_values[j];
os << ' ' << A.m_column_indices[j] << ':' << NaNHelper(A.m_values[j]);
}
os << '\n';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment