Rename BestResult to BestScore

This commit is contained in:
2023-09-21 19:30:07 +02:00
parent 5fa0b957dd
commit 337b6f7e79
7 changed files with 67 additions and 14 deletions

10
src/Platform/BestScore.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef BESTSCORE_H
#define BESTSCORE_H
#include <string>
class BestScore {
public:
static std::string title() { return "STree_default (linear-ovo)"; }
static double score() { return 22.109799; }
static std::string scoreName() { return "accuracy"; }
};
#endif