2010-04-12 14:15:49 +04:00
|
|
|
/***********************************************************************
|
2011-11-08 15:28:02 +04:00
|
|
|
Moses - statistical machine translation system
|
|
|
|
Copyright (C) 2006-2011 University of Edinburgh
|
2013-05-29 21:16:15 +04: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.
|
2013-05-29 21:16:15 +04: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.
|
2013-05-29 21:16:15 +04: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
|
2011-11-08 15:28:02 +04:00
|
|
|
***********************************************************************/
|
2010-04-08 21:16:10 +04:00
|
|
|
|
2011-11-08 15:28:02 +04:00
|
|
|
#include "ChartTrellisDetour.h"
|
2010-04-08 21:16:10 +04:00
|
|
|
|
2011-11-08 15:28:02 +04:00
|
|
|
#include "ChartHypothesis.h"
|
|
|
|
#include "ChartTrellisNode.h"
|
|
|
|
#include "ChartTrellisPath.h"
|
2010-04-08 21:16:10 +04:00
|
|
|
|
2011-03-11 16:08:43 +03:00
|
|
|
namespace Moses
|
2010-04-08 21:16:10 +04:00
|
|
|
{
|
2011-11-08 15:28:02 +04:00
|
|
|
|
|
|
|
ChartTrellisDetour::ChartTrellisDetour(
|
2013-05-29 21:16:15 +04:00
|
|
|
boost::shared_ptr<const ChartTrellisPath> basePath,
|
|
|
|
const ChartTrellisNode &substitutedNode,
|
|
|
|
const ChartHypothesis &replacementHypo)
|
2011-11-08 15:28:02 +04:00
|
|
|
: m_basePath(basePath)
|
|
|
|
, m_substitutedNode(substitutedNode)
|
|
|
|
, m_replacementHypo(replacementHypo)
|
2010-04-08 21:16:10 +04:00
|
|
|
{
|
2011-11-08 15:28:02 +04:00
|
|
|
float diff = replacementHypo.GetTotalScore()
|
2013-05-29 21:16:15 +04:00
|
|
|
- substitutedNode.GetHypothesis().GetTotalScore();
|
2011-11-08 15:28:02 +04:00
|
|
|
m_totalScore = basePath->GetTotalScore() + diff;
|
2010-04-08 21:16:10 +04:00
|
|
|
}
|
|
|
|
|
2011-11-08 15:28:02 +04:00
|
|
|
} // namespace Moses
|