data.h.svn-base

来自「解码器是基于短语的统计机器翻译系统的核心模块」· SVN-BASE 代码 · 共 18 行

SVN-BASE
18
字号
#ifndef DATA_H#define DATA_Htypedef struct {  float *features;  int *comps;  float m, b; // slope and intercept, used as scratch space} candidate_t;typedef struct {  candidate_t **sents;  int sents_n, sents_max, *cands_n;} data_t;data_t *read_data(void);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?