Home | History | Annotate | Download | only in JAJP

Lines Matching defs:stem

264                 WnnWord stem = stemsi.next();
265 if (addClause(clauseList, input, stem, null, terminal, all)) {
281 /* get candidates of stem in a clause */
294 WnnWord stem = stemsi.next();
295 if (all || stem.frequency > max) {
299 if (addClause(clauseList, input, stem, fzk, terminal, all)) {
301 max = stem.frequency;
315 * @param stem Stem of the clause (a independent word)
321 private boolean addClause(LinkedList<WnnClause> clauseList, String input, WnnWord stem, WnnWord fzk,
326 if (connectible(stem.partOfSpeech.right, terminal.left)) {
327 clause = new WnnClause(input, stem);
330 if (connectible(stem.partOfSpeech.right, fzk.partOfSpeech.left)
332 clause = new WnnClause(input, stem, fzk);