Revert "feat: Pre-compute matches query index groups"

This reverts commit 039a9a4cc7.
This commit is contained in:
Clément Renault
2019-01-06 21:27:41 +01:00
parent a78b5d225f
commit f00b978801
8 changed files with 40 additions and 85 deletions

View File

@ -119,7 +119,7 @@ where D: Deref<Target=DB>,
info!("{} documents to classify", matches.len());
matches.into_iter().map(|(i, m)| Document::from_unsorted_matches(i, m)).collect()
matches.into_iter().map(|(i, m)| Document::from_matches(i, m)).collect()
}
}