diff --git a/.vscode/launch.json b/.vscode/launch.json index ad6ce9b..9f944f7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -99,7 +99,7 @@ "request": "launch", "program": "${workspaceFolder}/build_debug/src/b_list", "args": [ - "--excel" + "datasets" ], //"cwd": "/Users/rmontanana/Code/discretizbench", "cwd": "${workspaceFolder}/../discretizbench", diff --git a/src/reports/ReportConsole.cpp b/src/reports/ReportConsole.cpp index ed3f3b4..65cb46a 100644 --- a/src/reports/ReportConsole.cpp +++ b/src/reports/ReportConsole.cpp @@ -35,8 +35,14 @@ namespace platform { } void ReportConsole::header() { + do_header(); std::cout << sheader.str(); } + void ReportConsole::body() + { + do_body(); + std::cout << sbody.str(); + } std::string ReportConsole::fileReport() { do_header(); @@ -132,10 +138,6 @@ namespace platform { sbody << std::string(MAXL, '*') << Colors::RESET() << std::endl; vbody.push_back(std::string(MAXL, '*') + Colors::RESET() + "\n"); } - void ReportConsole::body() - { - std::cout << sbody.str(); - } void ReportConsole::showSummary() { for (const auto& item : summary) {