add score name to best results excel file name

This commit is contained in:
2024-09-28 18:58:49 +02:00
parent 148a3b831a
commit c58bd9d60d
2 changed files with 3 additions and 3 deletions

View File

@@ -44,9 +44,9 @@ namespace platform {
{
return "best_results_" + score + "_" + model + ".json";
}
static std::string bestResultsExcel()
static std::string bestResultsExcel(const std::string& score)
{
return "BestResults.excel";
return "BestResults_" + score + ".xlsx";
}
static std::string excelResults() { return "some_results.xlsx"; }
static std::string grid_input(const std::string& model)