summaryrefslogtreecommitdiff
path: root/extractor
diff options
context:
space:
mode:
authorPaul Baltescu <pauldb89@gmail.com>2013-02-22 11:32:13 +0000
committerPaul Baltescu <pauldb89@gmail.com>2013-02-22 11:32:13 +0000
commita21835881984ba90f303c7b1681d295678cb7131 (patch)
tree33620defa1e0eeef1258c4c1f3e664f3c5aa710f /extractor
parent4679f78193a826201055ce7bb2e01b5ad64bf04b (diff)
Added \t when displaying LCP times.
Diffstat (limited to 'extractor')
-rw-r--r--extractor/suffix_array.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/extractor/suffix_array.cc b/extractor/suffix_array.cc
index 23c458a4..ab8a0913 100644
--- a/extractor/suffix_array.cc
+++ b/extractor/suffix_array.cc
@@ -136,7 +136,7 @@ void SuffixArray::TernaryQuicksort(int left, int right, int step,
vector<int> SuffixArray::BuildLCPArray() const {
Clock::time_point start_time = Clock::now();
- cerr << "Constructing LCP array..." << endl;
+ cerr << "\tConstructing LCP array..." << endl;
vector<int> lcp(suffix_array.size());
vector<int> rank(suffix_array.size());
@@ -165,7 +165,7 @@ vector<int> SuffixArray::BuildLCPArray() const {
}
Clock::time_point stop_time = Clock::now();
- cerr << "Constructing LCP took "
+ cerr << "\tConstructing LCP took "
<< GetDuration(start_time, stop_time) << " seconds" << endl;
return lcp;