| 16 | |
| 17 | #[derive(Default)] |
| 18 | pub struct Dictionary { |
| 19 | pub entries: HashMap<u64, DictionaryItem>, |
| 20 | weights: Option<rand_distr::WeightedAliasIndex<f32>>, |
| 21 | } |
| 22 | |
| 23 | /// EXPERIMENT: try to avoid rarely seen comparison operands (which could be dumped from invalid |
| 24 | /// pointers) so that interesting comparisons are tried more frequently. |
nothing calls this directly
no outgoing calls
no test coverage detected