Fix some mistakes in timer and output format

This commit is contained in:
2023-07-27 18:40:04 +02:00
parent 7f7ddad36a
commit b03e84044a
4 changed files with 28 additions and 24 deletions

View File

@@ -75,7 +75,7 @@ namespace platform {
void Experiment::save(string path)
{
json data = build_json();
ofstream file(path + get_file_name());
ofstream file(path + "/" + get_file_name());
file << data;
file.close();
}