Skip to content

Commit

Permalink
Fixed blur and flatten time tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
adisidev committed Aug 30, 2024
1 parent f56a103 commit 9cfb3ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,8 @@ int main(const int argc, const char *argv[])
if (blur_width > 0.0) {
time_tracker.start("Blur");
inset_state.blur_density(blur_width, plot_density);
time_tracker.start("Flatten Density");
time_tracker.stop("Blur");
}
if (qtdt_method) {

time_tracker.start("Flatten Density (Quadtree Method)");
Expand All @@ -333,7 +334,6 @@ int main(const int argc, const char *argv[])
inset_state.flatten_density();
time_tracker.stop("Flatten Density (Full Grid Method)");
}
time_tracker.stop("Flatten Density");

if (qtdt_method) {
time_tracker.start("Update Delanuay Triangulation");
Expand Down

0 comments on commit 9cfb3ca

Please sign in to comment.