diff options
author | 2012-05-21 11:52:23 -0700 | |
---|---|---|
committer | 2012-05-21 11:52:23 -0700 | |
commit | 239401745b6d032bddd3b7662cc22d7daf81bced (patch) | |
tree | 1177303128f4cd7a05a247ae000afc7047328326 /native/jni/src/defines.h | |
parent | 2164e19c4a5a627938140719196dc934566a2d20 (diff) | |
parent | 7557d3c6f3e7669fa213dbabda0f399e496b56b7 (diff) | |
download | latinime-239401745b6d032bddd3b7662cc22d7daf81bced.tar.gz latinime-239401745b6d032bddd3b7662cc22d7daf81bced.tar.xz latinime-239401745b6d032bddd3b7662cc22d7daf81bced.zip |
am 7557d3c6: am bc77adef: Merge "Return the bigram frequency if available." into jb-dev
* commit '7557d3c6f3e7669fa213dbabda0f399e496b56b7':
Return the bigram frequency if available.
Diffstat (limited to 'native/jni/src/defines.h')
-rw-r--r-- | native/jni/src/defines.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/native/jni/src/defines.h b/native/jni/src/defines.h index c6ad66abe..dfc5238a0 100644 --- a/native/jni/src/defines.h +++ b/native/jni/src/defines.h @@ -207,6 +207,7 @@ static inline void prof_out(void) { #define NEUTRAL_SCORE_SQUARED_RADIUS 8.0f #define HALF_SCORE_SQUARED_RADIUS 32.0f #define MAX_FREQ 255 +#define MAX_BIGRAM_FREQ 15 // This must be greater than or equal to MAX_WORD_LENGTH defined in BinaryDictionary.java // This is only used for the size of array. Not to be used in c functions. @@ -225,8 +226,8 @@ static inline void prof_out(void) { #define MULTIPLE_WORDS_DEMOTION_RATE 80 #define MIN_INPUT_LENGTH_FOR_THREE_OR_MORE_WORDS_CORRECTION 6 -#define TWO_WORDS_CORRECTION_WITH_OTHER_ERROR_THRESHOLD 0.39 -#define START_TWO_WORDS_CORRECTION_THRESHOLD 0.22 +#define TWO_WORDS_CORRECTION_WITH_OTHER_ERROR_THRESHOLD 0.35 +#define START_TWO_WORDS_CORRECTION_THRESHOLD 0.185 #define MAX_DEPTH_MULTIPLIER 3 |