summaryrefslogtreecommitdiffstats
path: root/src/lookup/phrase_lookup.cpp
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-01-10 12:46:11 +0800
committerPeng Wu <alexepico@gmail.com>2012-01-10 12:46:11 +0800
commit742de0a367e511388ff197f6c21d586877698dda (patch)
tree5df5ee074654c61ae45f2cf4a66b40b25089f9a4 /src/lookup/phrase_lookup.cpp
parent18e2714d4c67d55d9c054f8087b297e7862b433f (diff)
downloadlibpinyin-742de0a367e511388ff197f6c21d586877698dda.tar.gz
libpinyin-742de0a367e511388ff197f6c21d586877698dda.tar.xz
libpinyin-742de0a367e511388ff197f6c21d586877698dda.zip
begin to use facade * table
Diffstat (limited to 'src/lookup/phrase_lookup.cpp')
-rw-r--r--src/lookup/phrase_lookup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lookup/phrase_lookup.cpp b/src/lookup/phrase_lookup.cpp
index 53d43b3..28702c2 100644
--- a/src/lookup/phrase_lookup.cpp
+++ b/src/lookup/phrase_lookup.cpp
@@ -23,7 +23,7 @@
#include "stl_lite.h"
#include "novel_types.h"
#include "phrase_index.h"
-#include "phrase_large_table.h"
+#include "facade_phrase_table.h"
#include "ngram.h"
#include "phrase_lookup.h"
@@ -32,7 +32,7 @@ using namespace pinyin;
const gfloat PhraseLookup::bigram_lambda = LAMBDA_PARAMETER;
const gfloat PhraseLookup::unigram_lambda = 1 - LAMBDA_PARAMETER;
-PhraseLookup::PhraseLookup(PhraseLargeTable * phrase_table,
+PhraseLookup::PhraseLookup(FacadePhraseTable * phrase_table,
FacadePhraseIndex * phrase_index,
Bigram * system_bigram,
Bigram * user_bigram){