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 <fishandfrolick@gmail.com>2013-06-11 19:08:59 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2013-06-11 19:08:59 +0400
commit13299ab2a810d3cd870db2557e16242bcfd3d38b (patch)
tree6826718b905cda7cd59c4511fb562e2d38f51564 /moses/RuleCubeItem.cpp
parentf01ee737b08fb524fb346111c6db574f333f9fc0 (diff)
delete pre-calculated scoring in ChartHypothesis. Should be subsumed by new scoring framework. Rename CalcScore() to Evaluate()
Diffstat (limited to 'moses/RuleCubeItem.cpp')
-rw-r--r--moses/RuleCubeItem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/RuleCubeItem.cpp b/moses/RuleCubeItem.cpp
index a25c841c6..5b3b0c246 100644
--- a/moses/RuleCubeItem.cpp
+++ b/moses/RuleCubeItem.cpp
@@ -78,7 +78,7 @@ void RuleCubeItem::CreateHypothesis(const ChartTranslationOptions &transOpt,
ChartManager &manager)
{
m_hypothesis = new ChartHypothesis(transOpt, *this, manager);
- m_hypothesis->CalcScore();
+ m_hypothesis->Evaluate();
m_score = m_hypothesis->GetTotalScore();
}