Begin BestResults build

This commit is contained in:
2023-09-21 23:04:11 +02:00
parent 337b6f7e79
commit 7bfafe555f
7 changed files with 285 additions and 198 deletions

View File

@@ -0,0 +1,20 @@
#ifndef BESTRESULTS_H
#define BESTRESULTS_H
#include <string>
using namespace std;
namespace platform {
class BestResults {
public:
explicit BestResults(const string& path, const string& score, const string& model) : path(path), score(score), model(model) {}
void build();
void report();
private:
vector<string> loadFiles();
string bestResultFile();
string path;
string score;
string model;
};
}
#endif //BESTRESULTS_H