From 50aeb4281873f07977787f3ca5f0ab313b69715c Mon Sep 17 00:00:00 2001 From: karsten Date: Wed, 15 Dec 2021 18:14:11 +0100 Subject: [PATCH] - TODO items --- main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 362a3bf..9e0b8b4 100644 --- a/main.cpp +++ b/main.cpp @@ -67,8 +67,12 @@ int main() ParallelWordSearch parallelWordSearch(workerCount, test_data.begin(), test_data.end(), pattern); time_span = TestRunner(run_parallel_wordsearch, parallelWordSearch); - std::cout << "linear search found " << parallelWordSearch.get_result().size() << " matches: " << time_span << " seconds" << std::endl; + std::cout << "parallel search found " << parallelWordSearch.get_result().size() << " matches: " << time_span << " seconds" << std::endl; + // TODO add validation of results + // TODO brush up output + // TODO command line args for workerCount, test-pattern generation ? + std::cout << std::endl; return 0;