mosesdecoder/lm/word_index.hh

15 lines
268 B
C++
Raw Normal View History

2012-10-15 16:58:33 +04:00
// Separate header because this is used often.
#ifndef LM_WORD_INDEX_H
#define LM_WORD_INDEX_H
2012-10-15 16:58:33 +04:00
#include <limits.h>
namespace lm {
typedef unsigned int WordIndex;
const WordIndex kMaxWordIndex = UINT_MAX;
} // namespace lm
typedef lm::WordIndex LMWordIndex;
#endif