mosesdecoder/moses/Syntax/SymbolHasher.h

26 lines
480 B
C
Raw Normal View History

#pragma once
#include <boost/functional/hash.hpp>
#include "moses/Factor.h"
#include "moses/Word.h"
namespace Moses
{
namespace Syntax
{
// Assumes that only the first factor is relevant. i.e. factored decoding will
// *not* work in moses_chart unless this is changed (among other things).
class SymbolHasher
{
2015-01-14 14:07:42 +03:00
public:
std::size_t operator()(const Word &s) const {
const Factor *f = s[0];
return hash_value(*f);
}
};
} // namespace Syntax
} // namespace Moses