ROADMAP v0.5.0 - Performance statistics for top-K optimization
(&self)
| 185 | /// Get statistics about processing |
| 186 | #[allow(dead_code)] // ROADMAP v0.5.0 - Performance statistics for top-K optimization |
| 187 | pub fn stats(&self) -> TopKStats { |
| 188 | TopKStats { |
| 189 | processed_count: self.processed_count, |
| 190 | kept_count: self.heap.len(), |
| 191 | would_keep_count: self.would_keep_count, |
| 192 | k: self.k, |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /// Convert to sorted results (descending by score) |
| 197 | /// |