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

[lucene-solr] branch master updated (9d45dfe -> 8a34cc7)

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

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


    from 9d45dfe  LUCENE-9710: Hunspell: support minor compounding-related flags (#2272)
     add 8a34cc7  LUCENE-9701: Hunspell: implement simple REP-based suggestion algorithm (#2251)

No new revisions were added by this update.

Summary of changes:
 gradle/validation/rat-sources.gradle               |  1 +
 .../lucene/analysis/hunspell/Dictionary.java       | 11 ++++
 .../analysis/hunspell/ModifyingSuggester.java      | 70 ++++++++++++++++++++++
 .../apache/lucene/analysis/hunspell/RepEntry.java  | 67 +++++++++++++++++++++
 .../lucene/analysis/hunspell/SpellChecker.java     | 50 +++++++++++++++-
 .../lucene/analysis/hunspell/SpellCheckerTest.java | 20 ++++++-
 .../lucene/analysis/hunspell/breakdefault.sug      |  5 ++
 .../org/apache/lucene/analysis/hunspell/rep.aff    | 21 +++++++
 .../org/apache/lucene/analysis/hunspell/rep.dic    | 15 +++++
 .../org/apache/lucene/analysis/hunspell/rep.sug    |  8 +++
 .../org/apache/lucene/analysis/hunspell/rep.wrong  | 11 ++++
 11 files changed, 276 insertions(+), 3 deletions(-)
 create mode 100644 lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/ModifyingSuggester.java
 create mode 100644 lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/RepEntry.java
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/breakdefault.sug
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/rep.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/rep.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/rep.sug
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/rep.wrong