Skip to content
Snippets Groups Projects
Commit 31aa4cc4 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL] Drop colon in matrix output

making reading in python much easier.
parent 5aeb85eb
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ void EigenMatrix::write(std::ostream& os) const ...@@ -32,7 +32,7 @@ void EigenMatrix::write(std::ostream& os) const
{ {
for (RawMatrixType::InnerIterator it(mat_, k); it; ++it) for (RawMatrixType::InnerIterator it(mat_, k); it; ++it)
{ {
os << it.row() << " " << it.col() << ": " << it.value() << "\n"; os << it.row() << " " << it.col() << " " << it.value() << "\n";
} }
} }
os << std::endl; os << std::endl;
......
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