summaryrefslogtreecommitdiffstats
path: root/src/pinyin.cpp
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-07-02 09:43:14 +0800
committerPeng Wu <alexepico@gmail.com>2012-07-02 09:43:14 +0800
commit5ff36bd939efdce410885454b253ae9a362f7e2b (patch)
tree57d671534c94ac3d6750ed4ec0c989827e109a66 /src/pinyin.cpp
parentfa35deef0cfa25111dca343d321cfefeeed91f47 (diff)
downloadlibpinyin-5ff36bd939efdce410885454b253ae9a362f7e2b.tar.gz
libpinyin-5ff36bd939efdce410885454b253ae9a362f7e2b.tar.xz
libpinyin-5ff36bd939efdce410885454b253ae9a362f7e2b.zip
comment out _remove_duplicated_items
Diffstat (limited to 'src/pinyin.cpp')
-rw-r--r--src/pinyin.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/pinyin.cpp b/src/pinyin.cpp
index 9c06e68..a255d5f 100644
--- a/src/pinyin.cpp
+++ b/src/pinyin.cpp
@@ -743,7 +743,7 @@ bool pinyin_in_chewing_keyboard(pinyin_instance_t * instance,
(context->m_options, key, symbol);
}
-
+#if 0
static gint compare_item_with_token(gconstpointer lhs,
gconstpointer rhs) {
lookup_candidate_t * item_lhs = (lookup_candidate_t *)lhs;
@@ -754,6 +754,7 @@ static gint compare_item_with_token(gconstpointer lhs,
return (token_lhs - token_rhs);
}
+#endif
static gint compare_item_with_frequency(gconstpointer lhs,
gconstpointer rhs) {
@@ -842,6 +843,7 @@ static void _append_items(pinyin_context_t * context,
}
}
+#if 0
static void _remove_duplicated_items(CandidateVector items) {
/* remove the duplicated items. */
phrase_token_t last_token = null_token, saved_token;
@@ -857,6 +859,7 @@ static void _remove_duplicated_items(CandidateVector items) {
last_token = saved_token;
}
}
+#endif
static void _compute_frequency_of_items(pinyin_context_t * context,
phrase_token_t prev_token,
@@ -950,9 +953,11 @@ bool pinyin_get_candidates(pinyin_instance_t * instance,
lookup_candidate_t template_item;
_append_items(context, ranges, &template_item, items);
+#if 0
g_array_sort(items, compare_item_with_token);
_remove_duplicated_items(items);
+#endif
_compute_frequency_of_items(context, prev_token, &merged_gram, items);
@@ -1270,9 +1275,11 @@ bool pinyin_get_full_pinyin_candidates(pinyin_instance_t * instance,
if (_try_divided_table(instance, ranges, offset, items)) {
+#if 0
g_array_sort(items, compare_item_with_token);
_remove_duplicated_items(items);
+#endif
_compute_frequency_of_items(context, prev_token,
&merged_gram, items);
@@ -1321,9 +1328,11 @@ bool pinyin_get_full_pinyin_candidates(pinyin_instance_t * instance,
lookup_candidate_t template_item;
_append_items(context, ranges, &template_item, items);
+#if 0
g_array_sort(items, compare_item_with_token);
_remove_duplicated_items(items);
+#endif
_compute_frequency_of_items(context, prev_token, &merged_gram, items);