mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-30 15:34:01 +03:00
616b589da3
Warnings are useful, but only if there are few!
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
#include <vector>
|
|
#include "SyntaxRHS.h"
|
|
#include "moses/ScoreComponentCollection.h"
|
|
#include "moses/TargetPhrase.h"
|
|
#include "moses/StackVec.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace Moses
|
|
{
|
|
SyntaxRHS::SyntaxRHS(const std::string &line)
|
|
:StatelessFeatureFunction(1, line)
|
|
{
|
|
ReadParameters();
|
|
}
|
|
|
|
void SyntaxRHS::EvaluateInIsolation(const Phrase &source
|
|
, const TargetPhrase &targetPhrase
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
, ScoreComponentCollection &estimatedFutureScore) const
|
|
{
|
|
}
|
|
|
|
void SyntaxRHS::EvaluateWithSourceContext(const InputType &input
|
|
, const InputPath &inputPath
|
|
, const TargetPhrase &targetPhrase
|
|
, const StackVec *stackVec
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
, ScoreComponentCollection *estimatedFutureScore) const
|
|
{
|
|
assert(stackVec);
|
|
|
|
if (targetPhrase.GetNumNonTerminals()) {
|
|
vector<float> newScores(m_numScoreComponents);
|
|
newScores[0] = - std::numeric_limits<float>::infinity();
|
|
scoreBreakdown.PlusEquals(this, newScores);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|