mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "refactor space proximity"
This commit is contained in:
commit
64cc10769f
@ -1185,6 +1185,11 @@ float ProximityInfoState::getMostProbableString(int *const codePointBuf) const {
|
||||
return sumLogProbability;
|
||||
}
|
||||
|
||||
bool ProximityInfoState::hasSpaceProximity(const int index) const {
|
||||
ASSERT(0 <= index && index < mSampledInputSize);
|
||||
return mProximityInfo->hasSpaceProximity(getInputX(index), getInputY(index));
|
||||
}
|
||||
|
||||
// Returns a probability of mapping index to keyIndex.
|
||||
float ProximityInfoState::getProbability(const int index, const int keyIndex) const {
|
||||
ASSERT(0 <= index && index < mSampledInputSize);
|
||||
|
@ -146,6 +146,8 @@ class ProximityInfoState {
|
||||
return mSampledInputYs[index];
|
||||
}
|
||||
|
||||
bool hasSpaceProximity(const int index) const;
|
||||
|
||||
int getLengthCache(const int index) const {
|
||||
return mLengthCache[index];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user