Introduce a customized A* algorithm.

This custom algo lazily compute the intersections between words, to avoid too much set operations and database reads
This commit is contained in:
Kerollmops
2020-06-14 12:51:54 +02:00
parent 69285b22d3
commit a8cda248b4
5 changed files with 262 additions and 65 deletions

View File

@ -1,4 +1,5 @@
mod best_proximity;
mod iter_shortest_paths;
mod query_tokens;
use std::borrow::Cow;