mosesdecoder/contrib/other-builds/moses2/SCFG/ActiveChart.cpp

20 lines
257 B
C++
Raw Normal View History

#include "ActiveChart.h"
2016-04-20 18:54:08 +03:00
#include "InputPath.h"
namespace Moses2
{
namespace SCFG
{
ActiveChartEntry::ActiveChartEntry(const SCFG::InputPath *subPhrasePath, bool isNT)
{
if (subPhrasePath) {
symbolBinds.Add(subPhrasePath->range, isNT);
}
}
}
}