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/Manager.cpp
parent176573c0724a65be8c36e5b5c3890d201f936d63 (diff)
Consistent naming: total score -> m_futureScore
Diffstat (limited to 'moses/Manager.cpp')
-rw-r--r--moses/Manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/Manager.cpp b/moses/Manager.cpp
index 35342c844..e9f8899aa 100644
--- a/moses/Manager.cpp
+++ b/moses/Manager.cpp
@@ -1522,7 +1522,7 @@ void Manager::OutputBest(OutputCollector *collector) const
bestHypo = GetBestHypothesis();
if (bestHypo) {
if (options().output.ReportHypoScore) {
- out << bestHypo->GetTotalScore() << ' ';
+ out << bestHypo->GetFutureScore() << ' ';
}
if (options().output.RecoverPath) {
bestHypo->OutputInput(out);
@@ -1691,7 +1691,7 @@ OutputNBest(std::ostream& out,
path.GetScoreBreakdown()->OutputAllFeatureScores(out, with_labels);
// total
- out << " ||| " << path.GetTotalScore();
+ out << " ||| " << path.GetFutureScore();
//phrase-to-phrase segmentation
if (includeSegmentation) {