You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2021/02/24 16:46:10 UTC

[lucene-solr] branch master updated (e1ff4c1 -> 3a99e2a)

This is an automated email from the ASF dual-hosted git repository.

rmuir pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from e1ff4c1  LUCENE-9808: Hunspell suggestions: consider space/dash-separated words for each case variation (#2425)
     add 3a99e2a  LUCENE-9806: Hunspell: speed up affix condition checking (#2423)

No new revisions were added by this update.

Summary of changes:
 .../lucene/analysis/hunspell/AffixCondition.java   | 181 +++++++++++++++++++++
 .../package-info.java => hunspell/AffixKind.java}  |   7 +-
 .../lucene/analysis/hunspell/Dictionary.java       |  79 ++-------
 .../analysis/hunspell/GeneratingSuggester.java     |   2 +-
 .../apache/lucene/analysis/hunspell/Stemmer.java   |  41 +----
 .../analysis/hunspell/TestAffixCondition.java      |  76 +++++++++
 6 files changed, 283 insertions(+), 103 deletions(-)
 create mode 100644 lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/AffixCondition.java
 copy lucene/analysis/common/src/java/org/apache/lucene/analysis/{bg/package-info.java => hunspell/AffixKind.java} (90%)
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestAffixCondition.java