From a21835881984ba90f303c7b1681d295678cb7131 Mon Sep 17 00:00:00 2001 From: Paul Baltescu Date: Fri, 22 Feb 2013 11:32:13 +0000 Subject: Added \t when displaying LCP times. --- extractor/suffix_array.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extractor') 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 SuffixArray::BuildLCPArray() const { Clock::time_point start_time = Clock::now(); - cerr << "Constructing LCP array..." << endl; + cerr << "\tConstructing LCP array..." << endl; vector lcp(suffix_array.size()); vector rank(suffix_array.size()); @@ -165,7 +165,7 @@ vector 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; -- cgit v1.2.3