sakharamg's picture
Uploading all files
158b61b
raw
history blame contribute delete
342 Bytes
#pragma once
namespace Moses
{
namespace Syntax
{
namespace S2T
{
// Describes the range of possible start and end positions for a symbol
// belonging to a node in a PatternApplicationTrie.
struct SymbolRange {
int minStart;
int maxStart;
int minEnd;
int maxEnd;
};
} // namespace S2T
} // namespace Syntax
} // namespace Moses