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 16:40:31 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-11-09 16:40:31 +0300
commit32e29d6b8ad7134e514f849213be9d817033bb73 (patch)
tree3131bb045e9167fb3ad0370c9a4bd8e024fd9c10 /moses/Hypothesis.cpp
parentd0be56f8abcb6842a37daaf696ef4e84d25db9ea (diff)
Consistent naming: m_futureScore --> m_estimatedScore
Diffstat (limited to 'moses/Hypothesis.cpp')
-rw-r--r--moses/Hypothesis.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/Hypothesis.cpp b/moses/Hypothesis.cpp
index cb77a0811..6fa85af65 100644
--- a/moses/Hypothesis.cpp
+++ b/moses/Hypothesis.cpp
@@ -170,7 +170,7 @@ EvaluateWhenApplied(const StatelessFeatureFunction& slff)
*/
void
Hypothesis::
-EvaluateWhenApplied(float futureScore)
+EvaluateWhenApplied(float estimatedScore)
{
IFVERBOSE(2) {
m_manager.GetSentenceStats().StartTimeOtherScore();
@@ -206,7 +206,7 @@ EvaluateWhenApplied(float futureScore)
}
// FUTURE COST
- m_estimatedScore = futureScore;
+ m_estimatedScore = estimatedScore;
// TOTAL
m_futureScore = m_currScoreBreakdown.GetWeightedScore() + m_estimatedScore;