Rank-derived score for the `rank`-th KG search result (0-based).
(rank: usize)
| 504 | |
| 505 | /// Rank-derived score for the `rank`-th KG search result (0-based). |
| 506 | fn rank_score(rank: usize) -> f64 { |
| 507 | 1.0 / (1.0 + rank as f64) |
| 508 | } |
| 509 | |
| 510 | /// Lowercased, deduplicated terms using KG FTS rules plus a small allowlist of |
| 511 | /// meaningful short technology names. Exact token matching prevents substring |