2010-04-12 14:15:49 +04:00
|
|
|
/***********************************************************************
|
|
|
|
Moses - factored phrase-based language decoder
|
|
|
|
Copyright (C) 2010 Hieu Hoang
|
2011-02-24 16:14:42 +03:00
|
|
|
|
2010-04-12 14:15:49 +04:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2011-02-24 16:14:42 +03:00
|
|
|
|
2010-04-12 14:15:49 +04:00
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2011-02-24 16:14:42 +03:00
|
|
|
|
2010-04-12 14:15:49 +04:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
***********************************************************************/
|
2010-04-08 21:16:10 +04:00
|
|
|
|
2010-09-23 21:39:32 +04:00
|
|
|
#include "ChartTranslationOption.h"
|
2011-06-27 19:13:15 +04:00
|
|
|
|
2012-01-25 16:26:28 +04:00
|
|
|
#include "ChartHypothesis.h"
|
2010-04-08 21:16:10 +04:00
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
2012-01-25 16:26:28 +04:00
|
|
|
void ChartTranslationOption::CalcEstimateOfBestScore()
|
2011-04-05 00:43:02 +04:00
|
|
|
{
|
2011-07-19 01:44:27 +04:00
|
|
|
const TargetPhrase &targetPhrase = **(m_targetPhraseCollection.begin());
|
|
|
|
m_estimateOfBestScore = targetPhrase.GetFutureScore();
|
2011-04-05 00:43:02 +04:00
|
|
|
|
2012-01-25 16:26:28 +04:00
|
|
|
for (StackVec::const_iterator p = m_stackVec.begin(); p != m_stackVec.end();
|
|
|
|
++p) {
|
|
|
|
const HypoList *stack = *p;
|
|
|
|
assert(stack);
|
|
|
|
assert(!stack->empty());
|
|
|
|
const ChartHypothesis &bestHypo = **(stack->begin());
|
|
|
|
m_estimateOfBestScore += bestHypo.GetTotalScore();
|
2011-04-05 00:43:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-08 21:16:10 +04:00
|
|
|
}
|