Skip to content

Commit

Permalink
ok they are now back to what they were, just more spaces to enhance r…
Browse files Browse the repository at this point in the history
…eadability
  • Loading branch information
tremblap committed Oct 10, 2024
1 parent c496b08 commit 9b3625e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/data/FluidDataSet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class FluidDataSet
using namespace std;
if (size() == 0) return "{}";
ostringstream result;
result << endl << "point" << (size() > 1 ? "s: " : ": ") << size() << " col" << (pointSize() > 1 ? "s: " : ": ") << pointSize() << endl;
result << endl << "points:" << size() << " cols:" << pointSize() << endl;
if (size() < maxRows)
{
for (index r = 0; r < size(); r++)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

100 points of 100 cols.
points:100 cols:100
0 0 1 2 ... 97 98 99
0 100 101 102 ... 197 198 199
0 200 201 202 ... 297 298 299
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

2 points of 5 cols.
points:2 cols:5
zero 0 1 2 3 4
one 5 6 7 8 9

0 comments on commit 9b3625e

Please sign in to comment.