Remove duplicated code in BestResults

This commit is contained in:
2023-09-28 00:59:34 +02:00
parent ac89a451e3
commit 3b06534327
4 changed files with 25 additions and 236 deletions

View File

@@ -14,10 +14,10 @@ namespace platform {
void reportAll();
void buildAll();
private:
set<string> getModels();
vector<string> getModels();
vector<string> loadResultFiles();
json buildTableResults(set<string> models);
void printTableResults(set<string> models, json table);
json buildTableResults(vector<string> models);
void printTableResults(vector<string> models, json table);
string bestResultFile();
json loadFile(const string& fileName);
string path;