mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
7b472960b1
server build probably broken
9 lines
175 B
C
9 lines
175 B
C
#ifndef lmserver_srilm_h
|
|
#define lmserver_srilm_h
|
|
|
|
void srilm_init(const char* fname, int order);
|
|
int srilm_getvoc(const char* word);
|
|
float srilm_wordprob(int, int*);
|
|
|
|
#endif
|