mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
30 lines
617 B
C++
30 lines
617 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "StatelessFeatureFunction.h"
|
|
#include "util/check.hh"
|
|
|
|
namespace Moses
|
|
{
|
|
class TargetPhrase;
|
|
class ScoreComponentCollection;
|
|
|
|
class WordPenaltyProducer : public StatelessFeatureFunction
|
|
{
|
|
public:
|
|
WordPenaltyProducer(const std::string &line);
|
|
|
|
bool IsUseable(const FactorMask &mask) const {
|
|
return true;
|
|
}
|
|
|
|
virtual void Evaluate(const Phrase &source
|
|
, const TargetPhrase &targetPhrase
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
, ScoreComponentCollection &estimatedFutureScore) const;
|
|
|
|
};
|
|
|
|
}
|
|
|