You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PerformanceHistory::categorizeBatchSize is a 41-CCN if/else chain across ~75 lines. Replace it with a constexpr std::array of {threshold, category} pairs and a std::upper_bound lookup. Same behaviour, visible data, no accidental complexity.
PerformanceHistory::categorizeBatchSize is a 41-CCN if/else chain across ~75 lines. Replace it with a constexpr std::array of {threshold, category} pairs and a std::upper_bound lookup. Same behaviour, visible data, no accidental complexity.