diff options
author | 2011-06-30 17:50:48 +0900 | |
---|---|---|
committer | 2011-06-30 17:50:48 +0900 | |
commit | 432789ac93c759da9e59398e21df6982bb354e92 (patch) | |
tree | 207fce12a9d8a720d198694934012b0ea7d3c2eb /native/src/unigram_dictionary.cpp | |
parent | ffefdb6c1a4a7dfc0cebc071979b0a816fe89304 (diff) | |
download | latinime-432789ac93c759da9e59398e21df6982bb354e92.tar.gz latinime-432789ac93c759da9e59398e21df6982bb354e92.tar.xz latinime-432789ac93c759da9e59398e21df6982bb354e92.zip |
Internal cleanup
Moving functions around, renaming parameters
Change-Id: I3ab480f483d7d9700b9328cb07b16b51005098e5
Diffstat (limited to 'native/src/unigram_dictionary.cpp')
-rw-r--r-- | native/src/unigram_dictionary.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/unigram_dictionary.cpp b/native/src/unigram_dictionary.cpp index 3c25eda03..334f38e5b 100644 --- a/native/src/unigram_dictionary.cpp +++ b/native/src/unigram_dictionary.cpp @@ -1033,7 +1033,7 @@ inline bool UnigramDictionary::processCurrentNode(const int pos, const int depth const int diffs, const int skipPos, const int excessivePos, const int transposedPos, int *nextLetters, const int nextLettersSize, int *newCount, int *newChildPosition, bool *newTraverseAllNodes, int *newMatchRate, int *newInputIndex, int *newDiffs, - int *nextSiblingPosition, int *nextOutputIndex) { + int *nextSiblingPosition, int *newOutputIndex) { if (DEBUG_DICT) { int inputCount = 0; if (skipPos >= 0) ++inputCount; @@ -1053,7 +1053,7 @@ inline bool UnigramDictionary::processCurrentNode(const int pos, const int depth *nextSiblingPosition = Dictionary::setDictionaryValues(DICT_ROOT, IS_LATEST_DICT_VERSION, pos, &c, &childPosition, &terminal, &freq); - *nextOutputIndex = depth + 1; + *newOutputIndex = depth + 1; const bool needsToTraverseChildrenNodes = childPosition != 0; |