From a46eae089f2e0e365d070fc10e02579ffe5622e6 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Mon, 2 Jun 2014 14:47:20 +0200 Subject: [PATCH] Revert "debug" This reverts commit 0216189b81036fd93ed3a34fc3abae5233462211. --- moses/TranslationOptionCollection.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/moses/TranslationOptionCollection.cpp b/moses/TranslationOptionCollection.cpp index c7a2cb4b4..aed0fb62a 100644 --- a/moses/TranslationOptionCollection.cpp +++ b/moses/TranslationOptionCollection.cpp @@ -323,11 +323,10 @@ void TranslationOptionCollection::CalcFutureScore() for(size_t joinAt = startPos; joinAt < endPos ; joinAt++) { float joinedScore = m_futureScore.GetScore(startPos, joinAt) + m_futureScore.GetScore(joinAt+1, endPos); - // uncomment to see the cell filling scheme + /* // uncomment to see the cell filling scheme TRACE_ERR( "[" < " << m_futureScore.GetScore(startPos, endPos) << " ? " << endl); - + */ if (joinedScore > m_futureScore.GetScore(startPos, endPos)) m_futureScore.SetScore(startPos, endPos, joinedScore); }