am 25b4a14e: am d03e065b: Don\'t consider non-words for split word suggestion

* commit '25b4a14e5f44d8921aa834755f4550960846de0c':
  Don't consider non-words for split word suggestion
main
Jean Chalard 2012-10-17 17:04:41 -07:00 committed by Android Git Automerger
commit 005f376840
1 changed files with 2 additions and 1 deletions

View File

@ -798,7 +798,8 @@ int UnigramDictionary::getMostFrequentWordLikeInner(const uint16_t *const inWord
// into inputIndex if there is a match.
const bool isAlike = testCharGroupForContinuedLikeness(flags, root, pos, inWord,
inputIndex, inputSize, newWord, &inputIndex, &pos);
if (isAlike && (BinaryFormat::FLAG_IS_TERMINAL & flags) && (inputIndex == inputSize)) {
if (isAlike && (!(BinaryFormat::FLAG_IS_NOT_A_WORD & flags))
&& (BinaryFormat::FLAG_IS_TERMINAL & flags) && (inputIndex == inputSize)) {
const int frequency = BinaryFormat::readFrequencyWithoutMovingPointer(root, pos);
onTerminalWordLike(frequency, newWord, inputIndex, outWord, &maxFreq);
}