diff options
author | 2013-08-14 21:26:21 +0900 | |
---|---|---|
committer | 2013-08-15 15:46:58 +0900 | |
commit | 4c63d0614e7ed7aea4bcbab3a17090d841661d92 (patch) | |
tree | 36445b190fefe014aec8675f9a05eef5479ccca4 /native | |
parent | 46ebaa49e9d2ee0ee00d1b82c23c47b8982f7eca (diff) | |
download | latinime-4c63d0614e7ed7aea4bcbab3a17090d841661d92.tar.gz latinime-4c63d0614e7ed7aea4bcbab3a17090d841661d92.tar.xz latinime-4c63d0614e7ed7aea4bcbab3a17090d841661d92.zip |
[Refactor] Divide BinaryDictInputOutput into BinaryDictInputUtils and BinaryDictOutputUtils.
Change-Id: I0d476abe763c11ba9005152f928e8dccf15ac9de
Diffstat (limited to 'native')
-rw-r--r-- | native/jni/src/suggest/core/dictionary/probability_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/jni/src/suggest/core/dictionary/probability_utils.h b/native/jni/src/suggest/core/dictionary/probability_utils.h index f450087d8..313ce28bb 100644 --- a/native/jni/src/suggest/core/dictionary/probability_utils.h +++ b/native/jni/src/suggest/core/dictionary/probability_utils.h @@ -41,7 +41,7 @@ class ProbabilityUtils { // the unigram probability to be the median value of the 17th step from the top. A value of // 0 for the bigram probability represents the middle of the 16th step from the top, // while a value of 15 represents the middle of the top step. - // See makedict.BinaryDictInputOutput for details. + // See makedict.BinaryDictInputUtils for details. const float stepSize = static_cast<float>(MAX_PROBABILITY - unigramProbability) / (1.5f + MAX_BIGRAM_ENCODED_PROBABILITY); return unigramProbability |