am 6e5c2db5: Merge "Cleanups in LatinIME native source code" into jb-mr1-dev
* commit '6e5c2db5710877b2d65edf0f0d28f1e3d3bb1c28': Cleanups in LatinIME native source codemain
commit
c19d332887
|
@ -67,5 +67,11 @@ inline static unsigned short toLowerCase(const unsigned short c) {
|
||||||
inline static unsigned short toBaseLowerCase(const unsigned short c) {
|
inline static unsigned short toBaseLowerCase(const unsigned short c) {
|
||||||
return toLowerCase(toBaseChar(c));
|
return toLowerCase(toBaseChar(c));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline static bool isSkippableChar(const uint16_t character) {
|
||||||
|
// TODO: Do not hardcode here
|
||||||
|
return character == '\'' || character == '-';
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace latinime
|
} // namespace latinime
|
||||||
#endif // LATINIME_CHAR_UTILS_H
|
#endif // LATINIME_CHAR_UTILS_H
|
||||||
|
|
|
@ -368,6 +368,9 @@ static inline void prof_out(void) {
|
||||||
#define MIN_USER_TYPED_LENGTH_FOR_MULTIPLE_WORD_SUGGESTION 3
|
#define MIN_USER_TYPED_LENGTH_FOR_MULTIPLE_WORD_SUGGESTION 3
|
||||||
#define MIN_USER_TYPED_LENGTH_FOR_EXCESSIVE_CHARACTER_SUGGESTION 3
|
#define MIN_USER_TYPED_LENGTH_FOR_EXCESSIVE_CHARACTER_SUGGESTION 3
|
||||||
|
|
||||||
|
// TODO: Remove
|
||||||
|
#define MAX_POINTER_COUNT_FOR_G 2
|
||||||
|
|
||||||
// Size, in bytes, of the bloom filter index for bigrams
|
// Size, in bytes, of the bloom filter index for bigrams
|
||||||
// 128 gives us 1024 buckets. The probability of false positive is (1 - e ** (-kn/m))**k,
|
// 128 gives us 1024 buckets. The probability of false positive is (1 - e ** (-kn/m))**k,
|
||||||
// where k is the number of hash functions, n the number of bigrams, and m the number of
|
// where k is the number of hash functions, n the number of bigrams, and m the number of
|
||||||
|
|
|
@ -19,15 +19,11 @@
|
||||||
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
||||||
#define MAX_PATHS 2
|
|
||||||
|
|
||||||
#define DEBUG_DECODER false
|
#define DEBUG_DECODER false
|
||||||
|
|
||||||
#define M_PI_F 3.14159265f
|
#define M_PI_F 3.14159265f
|
||||||
|
|
||||||
#define ROUND_FLOAT_10000(f) ((f) < 1000.0f && (f) > 0.001f) \
|
#define ROUND_FLOAT_10000(f) ((f) < 1000.0f && (f) > 0.001f) \
|
||||||
? (floorf((f) * 10000.0f) / 10000.0f) : (f)
|
? (floorf((f) * 10000.0f) / 10000.0f) : (f)
|
||||||
|
|
||||||
#define SQUARE_FLOAT(x) ((x) * (x))
|
#define SQUARE_FLOAT(x) ((x) * (x))
|
||||||
|
|
||||||
namespace latinime {
|
namespace latinime {
|
||||||
|
|
|
@ -27,11 +27,6 @@ namespace latinime {
|
||||||
|
|
||||||
class Correction;
|
class Correction;
|
||||||
|
|
||||||
inline bool isSkippableChar(const uint16_t character) {
|
|
||||||
// TODO: Do not hardcode here
|
|
||||||
return character == '\'' || character == '-';
|
|
||||||
}
|
|
||||||
|
|
||||||
class ProximityInfo {
|
class ProximityInfo {
|
||||||
public:
|
public:
|
||||||
ProximityInfo(JNIEnv *env, const jstring localeJStr, const int maxProximityCharsSize,
|
ProximityInfo(JNIEnv *env, const jstring localeJStr, const int maxProximityCharsSize,
|
||||||
|
|
Loading…
Reference in New Issue