Merge ../mosesdecoder into perf_moses2

This commit is contained in:
Hieu Hoang 2015-11-04 10:55:19 +00:00
commit 20edd477b4
2 changed files with 2 additions and 2 deletions

View File

@ -585,7 +585,7 @@ size_t Hypothesis::hash() const
bool Hypothesis::operator==(const Hypothesis& other) const
{
// coverage
if (m_sourceCompleted != other.m_sourceCompleted) {
if (&m_sourceCompleted != &other.m_sourceCompleted) {
return false;
}

View File

@ -281,7 +281,7 @@ public:
#endif
bool beats(Hypothesis const& b) const;
};