File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -420,8 +420,8 @@ size_t hierarchical_binning::add_lower_level(data_store & libf_data) const
420420 {
421421 // use simple binning to distribute remaining UBs
422422 // Simple binning is not bound by config.tmax
423- size_t const num_user_bins = next_multiple_of_64 (number_of_user_bins);
424- size_t const number_of_technical_bins = subtract_empty_bins (num_user_bins , config.empty_bin_fraction );
423+ size_t const num_user_bins_next_64 = next_multiple_of_64 (number_of_user_bins);
424+ size_t const number_of_technical_bins = subtract_empty_bins (num_user_bins_next_64 , config.empty_bin_fraction );
425425 return simple_binning{libf_data, number_of_technical_bins}.execute (); // return id of maximum technical bin
426426 }
427427}
You can’t perform that action at this time.
0 commit comments