File size: 332 Bytes
158b61b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#include "HyperPath.h"
#include <limits>
namespace Moses
{
namespace Syntax
{
namespace F2S
{
const std::size_t HyperPath::kEpsilon =
std::numeric_limits<std::size_t>::max()-1;
const std::size_t HyperPath::kComma =
std::numeric_limits<std::size_t>::max()-2;
} // namespace F2S
} // namespace Syntax
} // namespace Moses
|