Remove unused term matching strategies

This commit is contained in:
Loïc Lecrenier
2023-02-21 09:40:41 +01:00
parent 1d937f831b
commit 2d88089129
2 changed files with 1 additions and 45 deletions

View File

@ -36,6 +36,7 @@ mod distinct;
pub mod facet;
mod fst_utils;
mod matches;
pub mod new;
mod query_tree;
pub struct Search<'a> {
@ -344,14 +345,6 @@ pub enum CriterionImplementationStrategy {
pub enum TermsMatchingStrategy {
// remove last word first
Last,
// remove first word first
First,
// remove more frequent word first
Frequency,
// remove smallest word first
Size,
// only one of the word is mandatory
Any,
// all words are mandatory
All,
}