Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2014-07-10 01:35:59 +0400
committerHieu Hoang <hieuhoang@gmail.com>2014-07-10 01:35:59 +0400
commitc9bd98fb0f7f794a6d352620da854e2d42b48328 (patch)
tree0439ca5b9ff1b702f2b7cefd80c77b84b4f78503 /moses/TargetPhrase.cpp
parentef33496ea5b82cff3c07da5ed91a26e4776eb52d (diff)
rename Evaluate() to EvaluateInIsolation()
Diffstat (limited to 'moses/TargetPhrase.cpp')
-rw-r--r--moses/TargetPhrase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/TargetPhrase.cpp b/moses/TargetPhrase.cpp
index d356ab2cc..2d9d1a06e 100644
--- a/moses/TargetPhrase.cpp
+++ b/moses/TargetPhrase.cpp
@@ -129,7 +129,7 @@ void TargetPhrase::Evaluate(const Phrase &source, const std::vector<FeatureFunct
for (size_t i = 0; i < ffs.size(); ++i) {
const FeatureFunction &ff = *ffs[i];
if (! staticData.IsFeatureFunctionIgnored( ff )) {
- ff.Evaluate(source, *this, m_scoreBreakdown, futureScoreBreakdown);
+ ff.EvaluateInIsolation(source, *this, m_scoreBreakdown, futureScoreBreakdown);
}
}