Fix 2306814: Too aggressive suggesting names from my contacts list.

When there is more than one instance of a name in the Contacts, it
gets a very high weightage and can override corrections for very
high frequency words such as "the".

This fix prevents multiple occurences from increasing the frequency
of a contact and also from bumping it above 255, which is the frequency
of "the", "is", etc.
main
Amith Yamasani 2009-12-07 11:42:09 -08:00
parent bb6f9146f1
commit 5b63c38d1f
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ public class ExpandableDictionary extends Dictionary {
if (wordLength == depth + 1) { if (wordLength == depth + 1) {
// Terminate this word // Terminate this word
childNode.terminal = true; childNode.terminal = true;
childNode.frequency += frequency; // If there are multiple similar words childNode.frequency = Math.max(frequency, childNode.frequency);
if (childNode.frequency > 256) childNode.frequency = 256; if (childNode.frequency > 255) childNode.frequency = 255;
return; return;
} }
if (childNode.children == null) { if (childNode.children == null) {