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>2015-11-09 15:44:39 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-11-09 15:44:39 +0300
commitd0be56f8abcb6842a37daaf696ef4e84d25db9ea (patch)
treec46d4027f2eab57b2c196662d1b3950cc19456d2 /moses/SentenceStats.h
parent176573c0724a65be8c36e5b5c3890d201f936d63 (diff)
Consistent naming: total score -> m_futureScore
Diffstat (limited to 'moses/SentenceStats.h')
-rw-r--r--moses/SentenceStats.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/SentenceStats.h b/moses/SentenceStats.h
index 998adc74f..e879fb3ba 100644
--- a/moses/SentenceStats.h
+++ b/moses/SentenceStats.h
@@ -143,7 +143,7 @@ public:
void AddRecombination(const Hypothesis& worseHypo, const Hypothesis& betterHypo) {
m_recombinationInfos.push_back(RecombinationInfo(worseHypo.GetWordsBitmap().GetNumWordsCovered(),
- betterHypo.GetTotalScore(), worseHypo.GetTotalScore()));
+ betterHypo.GetFutureScore(), worseHypo.GetFutureScore()));
}
void AddCreated() {
m_numHyposCreated++;