Skip to content

Commit

Permalink
tiny fix in report_intr_dim output format.
Browse files Browse the repository at this point in the history
  • Loading branch information
searchivarius committed May 10, 2019
1 parent c5712a3 commit 535fa79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion similarity_search/apps/report_intr_dim.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void TestSpace(
of.exceptions ( std::ifstream::failbit | std::ifstream::badbit );

for (size_t i = 0; i < dist.size(); ++i) {
if (i) of << "\t";
if (i) of << ",";
of << dist[i];
}
of << std::endl;
Expand Down

0 comments on commit 535fa79

Please sign in to comment.