From 34de36eabbc3baac56885e01fa2ec79ba7fb5cc6 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Mon, 21 May 2012 14:56:50 +0800 Subject: write save_phrase_index --- utils/storage/gen_binary_files.cpp | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'utils/storage/gen_binary_files.cpp') diff --git a/utils/storage/gen_binary_files.cpp b/utils/storage/gen_binary_files.cpp index 4519064..eeed911 100644 --- a/utils/storage/gen_binary_files.cpp +++ b/utils/storage/gen_binary_files.cpp @@ -98,15 +98,8 @@ int main(int argc, char * argv[]){ phrase_index.compat(); - new_chunk = new MemoryChunk; - phrase_index.store(1, new_chunk); - new_chunk->save("gb_char.bin"); - phrase_index.load(1, new_chunk); + if (!save_phrase_index(&phrase_index)) + exit(ENOENT); - new_chunk = new MemoryChunk; - phrase_index.store(2, new_chunk); - new_chunk->save("gbk_char.bin"); - phrase_index.load(2, new_chunk); - return 0; } -- cgit