mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
24 lines
403 B
C++
24 lines
403 B
C++
/*
|
|
* InputPath.cpp
|
|
*
|
|
* Created on: 23 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
#include <boost/foreach.hpp>
|
|
#include "InputPathBase.h"
|
|
#include "TranslationModel/PhraseTable.h"
|
|
|
|
namespace Moses2
|
|
{
|
|
InputPathBase::InputPathBase(MemPool &pool, const SubPhrase &subPhrase, const Range &range, size_t numPt, const InputPathBase *prefixPath)
|
|
:subPhrase(subPhrase)
|
|
,range(range)
|
|
,prefixPath(prefixPath)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|