Skip to content
Snippets Groups Projects
Commit ab0f4746 authored by René Fritze's avatar René Fritze
Browse files

wider printing

parent c9d26958
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ void printFieldVector(T& arg, std::string name, stream& out, std::string prefix ...@@ -35,7 +35,7 @@ void printFieldVector(T& arg, std::string name, stream& out, std::string prefix
IteratorType itEnd = arg.end(); IteratorType itEnd = arg.end();
out << prefix; out << prefix;
for (IteratorType it = arg.begin(); it != itEnd; ++it) { for (IteratorType it = arg.begin(); it != itEnd; ++it) {
out << std::setw(10) << std::setprecision(6) << *it; out << std::setw(14) << std::setprecision(6) << *it;
} }
out << '\n'; out << '\n';
} }
...@@ -69,7 +69,7 @@ void printFieldMatrix(T& arg, std::string name, stream& out, std::string prefix ...@@ -69,7 +69,7 @@ void printFieldMatrix(T& arg, std::string name, stream& out, std::string prefix
out << "\n" << prefix << " row " << row << ":"; out << "\n" << prefix << " row " << row << ":";
VectorInRowIteratorType vItEnd = rIt->end(); VectorInRowIteratorType vItEnd = rIt->end();
for (VectorInRowIteratorType vIt = rIt->begin(); vIt != vItEnd; ++vIt) { for (VectorInRowIteratorType vIt = rIt->begin(); vIt != vItEnd; ++vIt) {
out << std::setw(10) << std::setprecision(6) << *vIt; out << std::setw(14) << std::setprecision(6) << *vIt;
} }
row += 1; row += 1;
} }
......
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