diff options
Diffstat (limited to 'native/src/correction.cpp')
-rw-r--r-- | native/src/correction.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/native/src/correction.cpp b/native/src/correction.cpp index ee5023532..7323747d7 100644 --- a/native/src/correction.cpp +++ b/native/src/correction.cpp @@ -827,11 +827,6 @@ int Correction::RankingAlgorithm::calcFreqForSplitTwoWords( const bool capitalizedWordDemotion = firstCapitalizedWordDemotion ^ secondCapitalizedWordDemotion; - if (DEBUG_DICT_FULL) { - AKLOGI("Two words: %c, %c, %d", - word[0], word[firstWordLength + 1], capitalizedWordDemotion); - } - if (firstWordLength == 0 || secondWordLength == 0) { return 0; } @@ -891,6 +886,12 @@ int Correction::RankingAlgorithm::calcFreqForSplitTwoWords( multiplyRate(TWO_WORDS_CAPITALIZED_DEMOTION_RATE, &totalFreq); } + if (DEBUG_CORRECTION_FREQ) { + AKLOGI("Two words (%d, %d) (%d, %d) %d, %d", firstFreq, secondFreq, firstWordLength, + secondWordLength, capitalizedWordDemotion, totalFreq); + DUMP_WORD(word, firstWordLength); + } + return totalFreq; } |