summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-09-11 19:07:03 +0800
committerPeng Wu <alexepico@gmail.com>2012-09-11 19:08:23 +0800
commita3a09c574f3102b507e0534423cb9f67874bd0bb (patch)
treeb8b0a74121fe0b37399b69eeddcbebcd832eed40
parent8da979f50ee5e34149fa632d909f81788cb7fe30 (diff)
downloadlibpinyin-a3a09c574f3102b507e0534423cb9f67874bd0bb.tar.gz
libpinyin-a3a09c574f3102b507e0534423cb9f67874bd0bb.tar.xz
libpinyin-a3a09c574f3102b507e0534423cb9f67874bd0bb.zip
improves get_best_match
-rw-r--r--src/lookup/pinyin_lookup2.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lookup/pinyin_lookup2.cpp b/src/lookup/pinyin_lookup2.cpp
index 187f49f..4a859e9 100644
--- a/src/lookup/pinyin_lookup2.cpp
+++ b/src/lookup/pinyin_lookup2.cpp
@@ -241,6 +241,9 @@ bool PinyinLookup2::get_best_match(TokenVector prefixes,
populate_candidates(candidates, step);
get_top_results(topresults, candidates);
+ if (0 == topresults->len)
+ continue;
+
for ( int m = i + 1; m < nstep; ++m ){
const int len = m - i;
if (len > MAX_PHRASE_LENGTH)
@@ -257,6 +260,7 @@ bool PinyinLookup2::get_best_match(TokenVector prefixes,
int result = m_pinyin_table->search(len, pinyin_keys + i, ranges);
if (result & SEARCH_OK) {
+ /* assume topresults always contains items. */
search_bigram2(topresults, i, ranges),
search_unigram2(topresults, i, ranges);
}
@@ -277,8 +281,6 @@ bool PinyinLookup2::get_best_match(TokenVector prefixes,
bool PinyinLookup2::search_unigram2(GPtrArray * topresults, int nstep,
PhraseIndexRanges ranges) {
- if (0 == topresults->len)
- return false;
lookup_value_t * max = (lookup_value_t *)
g_ptr_array_index(topresults, 0);
@@ -311,10 +313,8 @@ bool PinyinLookup2::search_unigram2(GPtrArray * topresults, int nstep,
bool PinyinLookup2::search_bigram2(GPtrArray * topresults, int nstep,
PhraseIndexRanges ranges) {
- if (0 == topresults->len)
- return false;
- lookup_constraint_t* constraint =
+ lookup_constraint_t * constraint =
&g_array_index(m_constraints, lookup_constraint_t, nstep);
bool found = false;