File size: 342 Bytes
158b61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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