File size: 487 Bytes
158b61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

#include <vector>

#include <boost/unordered_map.hpp>

#include "moses/Syntax/SymbolEqualityPred.h"
#include "moses/Syntax/SymbolHasher.h"
#include "moses/Word.h"

namespace Moses
{
namespace Syntax
{

struct PVertex;

namespace S2T
{

// FIXME Check SymbolHasher does the right thing here
typedef boost::unordered_map<Word, std::vector<const PVertex *>, SymbolHasher,
        SymbolEqualityPred> SentenceMap;

} // namespace S2T
} // namespace Syntax
} // namespace Moses