mosesdecoder/moses/Syntax/SHyperedgeBundleScorer.h
Phil Williams d317fdc373 Store SHyperedge feature scores as deltas instead of totals
This mirrors the change made for the chart decoder in commit 465b4756...
2015-11-16 19:23:27 +00:00

28 lines
624 B
C++

#pragma once
#include "SHyperedgeBundle.h"
namespace Moses
{
namespace Syntax
{
struct SHyperedgeBundleScorer {
public:
static float Score(const SHyperedgeBundle &bundle) {
const TargetPhrase &targetPhrase = **(bundle.translations->begin());
float score = targetPhrase.GetFutureScore();
for (std::vector<const SVertexStack*>::const_iterator p =
bundle.stacks.begin(); p != bundle.stacks.end(); ++p) {
const SVertexStack *stack = *p;
if (stack->front()->best) {
score += stack->front()->best->label.futureScore;
}
}
return score;
}
};
} // Syntax
} // Moses