aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-26 23:53:44 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-26 23:53:44 -0800
commitd10e53319fbce632feb5a208c8ff21c7727939ef (patch)
treea1cf13ce6371eb90ca3577dac0ece9e2b1381bd9
parentb900040880b6594d4d1627b6f99899f9ec6d4b77 (diff)
parentdae444d0fd0fac1dcb33332e01eeaa0d4e510d15 (diff)
downloadlatinime-d10e53319fbce632feb5a208c8ff21c7727939ef.tar.gz
latinime-d10e53319fbce632feb5a208c8ff21c7727939ef.tar.xz
latinime-d10e53319fbce632feb5a208c8ff21c7727939ef.zip
am dae444d0: am 588d2a52: Merge "Handle the last char correctly in excessive char correction algortihm." into honeycomb
* commit 'dae444d0fd0fac1dcb33332e01eeaa0d4e510d15': Handle the last char correctly in excessive char correction algortihm.
-rw-r--r--native/src/unigram_dictionary.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/native/src/unigram_dictionary.cpp b/native/src/unigram_dictionary.cpp
index 06dd39aaa..e27939d86 100644
--- a/native/src/unigram_dictionary.cpp
+++ b/native/src/unigram_dictionary.cpp
@@ -461,8 +461,9 @@ inline bool UnigramDictionary::processCurrentNode(const int pos, const int depth
int childPosition;
bool terminal;
int freq;
+ bool isSameAsUserTypedLength = false;
- if (excessivePos == depth) ++inputIndex;
+ if (excessivePos == depth && inputIndex < mInputLength - 1) ++inputIndex;
*nextSiblingPosition = Dictionary::setDictionaryValues(DICT, IS_LATEST_DICT_VERSION, pos, &c,
&childPosition, &terminal, &freq);
@@ -496,7 +497,8 @@ inline bool UnigramDictionary::processCurrentNode(const int pos, const int depth
// If inputIndex is greater than mInputLength, that means there is no
// proximity chars. So, we don't need to check proximity.
const int addedWeight = matchedProximityCharId == 0 ? TYPED_LETTER_MULTIPLIER : 1;
- const bool isSameAsUserTypedLength = mInputLength == inputIndex + 1;
+ bool isSameAsUserTypedLength = mInputLength == inputIndex + 1
+ || (excessivePos == mInputLength - 1 && inputIndex == mInputLength - 2);
if (isSameAsUserTypedLength && terminal) {
onTerminalWhenUserTypedLengthIsSameAsInputLength(mWord, inputIndex, depth, snr,
skipPos, excessivePos, transposedPos, freq, addedWeight);
@@ -514,7 +516,8 @@ inline bool UnigramDictionary::processCurrentNode(const int pos, const int depth
}
// If inputIndex is greater than mInputLength, that means there are no proximity chars.
- if (mInputLength <= *newInputIndex) {
+ // TODO: Check if this can be isSameAsUserTypedLength only.
+ if (isSameAsUserTypedLength || mInputLength <= *newInputIndex) {
*newTraverseAllNodes = true;
}
// get the count of nodes and increment childAddress.