Package org.egothor.stemmer
Class Gener
- java.lang.Object
-
- org.egothor.stemmer.Reduce
-
- org.egothor.stemmer.Gener
-
public class Gener extends Reduce
The Gener object helps in the discarding of nodes which break the reduction effort and defend the structure against large reductions.
-
-
Constructor Summary
Constructors Constructor Description Gener()
Constructor for the Gener object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
eat(Row in, int[] remap)
Test whether the given Row of Cells in a Trie should be included in an optimized Trie.Trie
optimize(Trie orig)
Return a Trie with infrequent values occurring in the given Trie removed.
-
-
-
Method Detail
-
optimize
public Trie optimize(Trie orig)
Return a Trie with infrequent values occurring in the given Trie removed.
-
eat
public boolean eat(Row in, int[] remap)
Test whether the given Row of Cells in a Trie should be included in an optimized Trie.- Parameters:
in
- the Row to testremap
- Description of the Parameter- Returns:
- true if the Row should remain, false otherwise
-
-