Differences From Artifact [3711bc314d]:
- File graphspell-js/dawg.js — part of check-in [8333a8bf1b] at 2018-04-01 08:16:11 on branch multid — [graphspell] new header <grammalecte-fsa> for binary dictionaries (user: olr, size: 21079) [annotate] [blame] [check-ins using] [more...]
To Artifact [711ba29b0e]:
- File graphspell-js/dawg.js — part of check-in [f2d8271145] at 2018-05-16 11:58:53 on branch trunk — [graphspell][bug] fix affixes occurrences calculation (user: olr, size: 21078) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + |
// affixes to find stem from flexion
let sAff = funcStemmingGen(sFlex, sStem);
if (!dAff.get(sAff)) {
dAff.set(sAff, nAff);
lAff.push(sAff);
nAff += 1;
}
|
| ︙ |