diff options
author | 2013-08-20 01:39:03 -0700 | |
---|---|---|
committer | 2013-08-20 01:39:03 -0700 | |
commit | ad531fd2650b92461acd13e6ee776c13529885d5 (patch) | |
tree | 5a5a6aa33397319fc1df03fd8c0bbf78394103cf /native/jni/src | |
parent | 19c0b5b27633704377b777571b33562db17b9fca (diff) | |
parent | 112257e40f6f6d914fac1c3a45f39a770693b386 (diff) | |
download | latinime-ad531fd2650b92461acd13e6ee776c13529885d5.tar.gz latinime-ad531fd2650b92461acd13e6ee776c13529885d5.tar.xz latinime-ad531fd2650b92461acd13e6ee776c13529885d5.zip |
am 112257e4: Rename BinaryDictDecoder to Ver3DictDecoder.
* commit '112257e40f6f6d914fac1c3a45f39a770693b386':
Rename BinaryDictDecoder to Ver3DictDecoder.
Diffstat (limited to 'native/jni/src')
-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 219213574..21fe355b8 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.BinaryDictDecoder for details. + // See makedict.BinaryDictEncoder#makeBigramFlags for details. const float stepSize = static_cast<float>(MAX_PROBABILITY - unigramProbability) / (1.5f + MAX_BIGRAM_ENCODED_PROBABILITY); return unigramProbability |