From 668d9f00f25a658b9bde6a3cdec313899b727083 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Fri, 27 May 2016 14:03:47 +0800 Subject: update test_phrase_index.cpp --- tests/storage/test_phrase_index.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'tests/storage') diff --git a/tests/storage/test_phrase_index.cpp b/tests/storage/test_phrase_index.cpp index 3687ca5..ddfea8a 100644 --- a/tests/storage/test_phrase_index.cpp +++ b/tests/storage/test_phrase_index.cpp @@ -28,8 +28,7 @@ int main(int argc, char * argv[]){ assert(key3 == key2); assert(freq == 300); - pinyin_option_t options = 0; - gfloat poss = phrase_item.get_pronunciation_possibility(options, &key1); + gfloat poss = phrase_item.get_pronunciation_possibility(&key1); printf("pinyin possiblitiy:%f\n", poss); assert(phrase_item.get_unigram_frequency() == 0); @@ -52,21 +51,21 @@ int main(int argc, char * argv[]){ assert(item2.get_unigram_frequency() == 0); assert(item2.get_n_pronunciation() == 2); assert(item2.get_phrase_length() == 1); - assert(item2.get_pronunciation_possibility(options, &key2) == 0.75); + assert(item2.get_pronunciation_possibility(&key2) == 0.75); } print_time(time, bench_times); { PhraseItem item3; phrase_index_test.get_phrase_item(1, item3); - item3.increase_pronunciation_possibility(options, &key1, 200); - assert(item3.get_pronunciation_possibility(options, &key1) == 0.5) ; + item3.increase_pronunciation_possibility(&key1, 200); + assert(item3.get_pronunciation_possibility(&key1) == 0.5) ; } { PhraseItem item5; phrase_index_test.get_phrase_item(1, item5); - gfloat poss = item5.get_pronunciation_possibility(options, &key1); + gfloat poss = item5.get_pronunciation_possibility(&key1); printf("pinyin poss:%f\n", poss); assert(poss == 0.5); } -- cgit