Skip to content

Commit

Permalink
Scaffolding fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Itolstoganov committed Apr 5, 2024
1 parent e8686a5 commit c75a075
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -855,8 +855,9 @@ void PathExtendLauncher::Launch() {
size_t curr_path_number = 0;
size_t curr_scaffolding_iter = 1;
while (prev_path_number != curr_path_number and curr_scaffolding_iter < max_scaffolding_iterations) {
INFO("Starting scaffolding iteration " << curr_scaffolding_iter << " for " << prev_path_number << " paths");
INFO("Starting scaffolding iteration " << curr_scaffolding_iter << " for " << polished_paths.size() << " paths");
ScaffoldPaths(polished_paths);
polished_paths.FilterEmptyPaths();
curr_path_number = polished_paths.size();
++curr_scaffolding_iter;
}
Expand Down

0 comments on commit c75a075

Please sign in to comment.