mosesdecoder/contrib/other-builds/moses2/InputPath.cpp
2015-12-17 22:07:19 +00:00

49 lines
819 B
C++

/*
* InputPath.cpp
*
* Created on: 23 Oct 2015
* Author: hieu
*/
#include <boost/foreach.hpp>
#include "InputPath.h"
#include "TranslationModel/PhraseTable.h"
namespace Moses2
{
InputPath::InputPath(const SubPhrase &subPhrase,
const Range &range,
size_t numPt,
const InputPath *prefixPath)
:subPhrase(subPhrase)
,range(range)
,targetPhrases(numPt, NULL)
,prefixPath(prefixPath)
,m_isUsed(false)
{
}
InputPath::~InputPath() {
// TODO Auto-generated destructor stub
}
void InputPath::AddTargetPhrases(const PhraseTable &pt, const TargetPhrases *tps)
{
size_t ptInd = pt.GetPtInd();
targetPhrases[ptInd] = tps;
if (tps && tps->GetSize()) {
m_isUsed = true;
}
}
std::ostream& operator<<(std::ostream &out, const InputPath &obj)
{
out << obj.range << " " << obj.subPhrase;
return out;
}
}