Julius 4.2
libjulius/include/julius/beam.h
説明を見る。
00001 
00018 /*
00019  * Copyright (c) 1991-2011 Kawahara Lab., Kyoto University
00020  * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology
00021  * Copyright (c) 2005-2011 Julius project team, Nagoya Institute of Technology
00022  * All rights reserved
00023  */
00024 
00025 #ifndef __J_BEAM_H__
00026 #define __J_BEAM_H__
00027 
00029 typedef int TOKENID;
00030 
00032 #define TOKENID_UNDEFINED -1
00033 
00035 typedef struct {
00036   TRELLIS_ATOM *last_tre;       
00037   WORD_ID last_cword;           
00038   LOGPROB last_lscore;          
00039   LOGPROB score;                
00040   int node;                     
00041 #ifdef WPAIR
00042   TOKENID next;                 
00043 #endif
00044 } TOKEN2;
00045 
00046 #define FILLWIDTH 70            ///< Word-wrap character length for progressive output
00047 
00048 #endif /* __J_BEAM_H__ */