Implement Frequency matching strategy

This commit is contained in:
ManyTheFish
2024-05-29 11:06:39 +02:00
parent 19acc65ad2
commit abdc4afcca
5 changed files with 78 additions and 1 deletions

View File

@ -276,6 +276,8 @@ pub enum TermsMatchingStrategy {
Last,
// all words are mandatory
All,
// remove more frequent word first
Frequency,
}
impl Default for TermsMatchingStrategy {