From 0ed89b82ef10d4b70daa2f875bb66694eb6d9443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffan=20S=C3=B8lvsten?= Date: Tue, 12 Mar 2024 09:27:08 +0100 Subject: [PATCH] Fix incorrect printing of number of canonical levels --- src/adiar/statistics.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/adiar/statistics.cpp b/src/adiar/statistics.cpp index d2759a71f..cd59c56a2 100644 --- a/src/adiar/statistics.cpp +++ b/src/adiar/statistics.cpp @@ -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;