summaryrefslogtreecommitdiffstats
path: root/src/lookup/phrase_lookup.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2016-03-30 14:17:33 +0800
committerPeng Wu <alexepico@gmail.com>2016-03-30 14:31:55 +0800
commit9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee (patch)
tree13c44dbc6b2fe1b7a7adc0a17135501816745a4c /src/lookup/phrase_lookup.h
parent8cd9960d54d50ebb18e6f1b5aedd6e40391be879 (diff)
downloadlibpinyin-9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee.tar.gz
libpinyin-9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee.tar.xz
libpinyin-9217eb5d25faa0bed91c9344fc28ac5b6d57c0ee.zip
switch to phrase large table 3
Diffstat (limited to 'src/lookup/phrase_lookup.h')
-rw-r--r--src/lookup/phrase_lookup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lookup/phrase_lookup.h b/src/lookup/phrase_lookup.h
index cf65692..341b7bc 100644
--- a/src/lookup/phrase_lookup.h
+++ b/src/lookup/phrase_lookup.h
@@ -50,7 +50,7 @@ private:
SingleGram m_merged_single_gram;
protected:
//saved varibles
- FacadePhraseTable2 * m_phrase_table;
+ FacadePhraseTable3 * m_phrase_table;
FacadePhraseIndex * m_phrase_index;
Bigram * m_system_bigram;
Bigram * m_user_bigram;
@@ -91,7 +91,7 @@ public:
*
*/
PhraseLookup(const gfloat lambda,
- FacadePhraseTable2 * phrase_table,
+ FacadePhraseTable3 * phrase_table,
FacadePhraseIndex * phrase_index,
Bigram * system_bigram,
Bigram * user_bigram);