Skip to content
Snippets Groups Projects
Commit 56bdb82a authored by Carl Philipp Klemm's avatar Carl Philipp Klemm
Browse files

run_expirament: fix loop conditional

parent 2be37a81
Branches
No related tags found
No related merge requests found
......@@ -380,7 +380,7 @@ std::filesystem::path Expirament::createCsvPath(const std::filesystem::path& fil
while(std::filesystem::exists(candidate))
{
++i;
std::filesystem::path candidate = outdir/(filename.string() + "-" + std::to_string(i) + ".csv");
candidate = outdir/(filename.string() + "-" + std::to_string(i) + ".csv");
}
return candidate;
}
......
......@@ -8,7 +8,7 @@ STOP=0
STEPFILE=/tmp/cchstep
RESTART=0
while [[ $STOP == 0 && RESTART < 100 ]]; do
while [[ $STOP == 0 && RESTART -lt 100 ]]; do
echo "Starting expirament at step $STEP substep $SUBSTEP"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment