| 7 | #define HISTOGRAM_H |
| 8 | |
| 9 | typedef struct BinEntry { |
| 10 | uint64_t frequency; // ✅ Stores how often this distance occurs |
| 11 | float threshold; // ✅ Keeps track of the threshold for this distance |
| 12 | } BinEntry; |
| 13 | |
| 14 | typedef struct ReuseHistogram { |
| 15 | GHashTable* bins; // ✅ Dynamic binning with a hash table |
nothing calls this directly
no outgoing calls
no test coverage detected