Skip to content
Snippets Groups Projects
Commit 8b902a6f authored by Norihiro Watanabe's avatar Norihiro Watanabe Committed by Dmitri Naumov
Browse files

[Math/Eigen] EigenMatrix::write() can be called in release mode

parent 16c7b25c
No related branches found
No related tags found
No related merge requests found
...@@ -10,10 +10,8 @@ ...@@ -10,10 +10,8 @@
#ifndef EIGENMATRIX_H_ #ifndef EIGENMATRIX_H_
#define EIGENMATRIX_H_ #define EIGENMATRIX_H_
#ifndef NDEBUG
#include <fstream> #include <fstream>
#include <string> #include <string>
#endif
#include <Eigen/Sparse> #include <Eigen/Sparse>
...@@ -145,7 +143,6 @@ public: ...@@ -145,7 +143,6 @@ public:
/// return always true, i.e. the matrix is always ready for use /// return always true, i.e. the matrix is always ready for use
bool isAssembled() const { return true; } bool isAssembled() const { return true; }
#ifndef NDEBUG
/// printout this matrix for debugging /// printout this matrix for debugging
void write(const std::string &filename) const void write(const std::string &filename) const
{ {
...@@ -153,6 +150,7 @@ public: ...@@ -153,6 +150,7 @@ public:
if (of) if (of)
write(of); write(of);
} }
/// printout this matrix for debugging /// printout this matrix for debugging
void write(std::ostream &os) const void write(std::ostream &os) const
{ {
...@@ -161,7 +159,6 @@ public: ...@@ -161,7 +159,6 @@ public:
os << it.row() << " " << it.col() << ": " << it.value() << "\n"; os << it.row() << " " << it.col() << ": " << it.value() << "\n";
os << std::endl; os << std::endl;
} }
#endif
RawMatrixType& getRawMatrix() { return _mat; } RawMatrixType& getRawMatrix() { return _mat; }
const RawMatrixType& getRawMatrix() const { return _mat; } const RawMatrixType& getRawMatrix() const { return _mat; }
......
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