Skip to content

Commit

Permalink
Fix incorrect printing of number of canonical levels
Browse files Browse the repository at this point in the history
  • Loading branch information
SSoelvsten committed Mar 12, 2024
1 parent 5ac21d0 commit e24a48d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/adiar/statistics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,8 +752,7 @@ namespace adiar
const uintwide canonical_levels = internal::nested_sweeping::stats.outer_up.reduced_levels
- internal::nested_sweeping::stats.outer_up.reduced_levels__fast;

o << indent << label << "canonical"
<< internal::nested_sweeping::stats.outer_up.reduced_levels << " = "
o << indent << label << "canonical" << canonical_levels << " = "
<< internal::percent_frac(canonical_levels,
internal::nested_sweeping::stats.outer_up.reduced_levels)
<< percent << endl;
Expand Down

0 comments on commit e24a48d

Please sign in to comment.