mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 21:42:19 +03:00
8 lines
250 B
C++
8 lines
250 B
C++
#include<limits>
|
|
#include "LVoc.h"
|
|
|
|
//rather pointless file because LVoc is template all wee need here is the definitions of consts
|
|
|
|
const LabelId InvalidLabelId = std::numeric_limits<LabelId>::max();
|
|
const LabelId Epsilon = InvalidLabelId-1;
|