- TODO items

This commit is contained in:
Karsten Laux 2021-12-15 18:14:11 +01:00
parent 363580cdf8
commit 50aeb42818

View File

@ -67,7 +67,11 @@ 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;