aboutsummaryrefslogtreecommitdiffstats
path: root/native/jni/src/unigram_dictionary.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* am a0ac31fc: Fix the issue on multiple words suggestion•••* commit 'a0ac31fcaa01c21592a6e7af243c14dada65cf3e': Fix the issue on multiple words suggestion satok2012-05-231-2/+6
|\
| * Fix the issue on multiple words suggestion•••Bug: 6509844 Change-Id: I823074a2b29befc3e60c63699ab4dc7719105c63 satok2012-05-231-2/+6
* | Fix build•••Change-Id: I799811aa3afb59bba2e4086a063f5da03669bba3 Jean-Baptiste Queru2012-05-161-0/+1
|/
* Add missing includes.•••Change-Id: Ic7199045d0cffb208871f52cc167194013351d32 Ken Wakasa2012-05-161-0/+1
* Use "float" instead of "double"•••Change-Id: I93ed4d88ede4058f081dd8d634b00dfff4e96d07 satok2012-05-161-5/+5
* Reorder suggestions result according to auto correction threshold•••Bug: 5413904 Change-Id: I3aa3a8109ba45d2129b58d8242866fd3dd3473cb satok2012-05-161-1/+2
* Perform the actual bigram frequency lookup.•••This still returns the unigram frequency, because the values stored for bigrams in the dictionary are not ready to be returned in-place instead of unigram values. Aside from this, the code is complete. Bug: 6313806 Change-Id: If7bb7b644730782277f0f6663334c170b7fe13fb Jean Chalard2012-05-101-1/+2
* Replace the bigram list position with the map and filter•••Passing the position will not allow us a reasonable lookup time. Replace this with a map and bloom filter for very fast lookup. Bug: 6313806 Change-Id: I3a61c0001cbc987c1c3c7b8df635d4590a370144 Jean Chalard2012-05-071-25/+28
* Pass the bigram list position from the top level•••The position itself is still a const int = 0 until we have the previous word passed to the function. This basically does the plumbing. Bug: 6313806 Change-Id: Ib58995f334fe93e3ff5704d7c79f332017f101ac Jean Chalard2012-04-241-29/+35
* Add methods to inverse compute the probability.•••For now the probability is just returned with the same value it had, but this is some ground work that needs to be done anyway. Bug: 6313806 Change-Id: I9bb8b96b294109771208ade558c9ad56932d2f8e Jean Chalard2012-04-241-13/+18
* Pass words as int[] to the native code.•••We need to get the bigrams during the call to getSuggestions for bug#6313806. We already give an int[] to getSuggestions and we wanted to get rid of char[]'s anyway because it doesn't work with surrogate pairs, so here we go. Bug: 6313806 Change-Id: I56ce99f1db6b3302cdf42f0527343bded837091e Jean Chalard2012-04-231-1/+1
* Replace the flags in getSuggestions with a boolean.•••Change-Id: I0ec44df1979cb1dc21017ea290d2151a2af0e7cd Conflicts: java/src/com/android/inputmethod/latin/Suggest.java Jean Chalard2012-04-061-16/+15
* Enable using the flags read from the binary file.•••Change-Id: Ib420c3e174ccc1a80c4b6fd066de3b7a2b6fb290 Jean Chalard2012-04-061-2/+2
* Save the flags in a member in the unigram dictionary.•••Change-Id: Ic8fad9110db6b97f98ace27af0f347b4e69de8c8 Jean Chalard2012-04-061-2/+2
* Add a method to get the flags from a binary dictionary.•••This method is not used yet Change-Id: Ic15d3d423aff2c83c712bc0aa56571d30755e663 Jean Chalard2012-04-061-2/+2
* Remove write-only stuff•••Change-Id: I5ac8ab64c77a298502b3d063ea70db9b4da41716 Jean Chalard2012-04-061-3/+1
* Read shortcuts as strings in the dictionary.•••This has no impact on performance. Before: (0) 9.61 (0.01%) (1) 57514.58 (56.70%) (2) 10.55 (0.01%) (3) 10.79 (0.01%) (4) 133.20 (0.13%) (5) 43553.87 (42.94%) (6) 10.03 (0.01%) (20) 47.20 (0.05%) Total 101431.47 (sum of others 101289.84) After: (0) 10.52 (0.01%) (1) 56311.16 (56.66%) (2) 13.40 (0.01%) (3) 10.98 (0.01%) (4) 136.72 (0.14%) (5) 42707.92 (42.97%) (6) 9.79 (0.01%) (20) 51.35 (0.05%) Total 99390.76 (sum of others 99251.84) The difference is not significant with regard to measure imprecision Change-Id: I2e4f1ef7a5e99082e67dd27f56cf4fc432bb48fa Jean Chalard2012-04-061-5/+5
* Move the "src" directory as a preparation for Ib4a47342 and I66f6c5b9•••Change-Id: I3ab65059f6e356530484bfd0bba26a634a4cba65 Ken Wakasa2012-03-301-0/+894