mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
41 lines
965 B
C++
41 lines
965 B
C++
#pragma once
|
|
|
|
#include "moses/PP/PhraseProperty.h"
|
|
#include "moses/Factor.h"
|
|
#include "util/exception.hh"
|
|
#include <map>
|
|
#include <string>
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
typedef std::map<const Factor*, float> TargetConstituentBoundariesRightAdjacentCollection;
|
|
|
|
|
|
class TargetConstituentBoundariesRightAdjacentPhraseProperty : public PhraseProperty
|
|
{
|
|
public:
|
|
TargetConstituentBoundariesRightAdjacentPhraseProperty()
|
|
{};
|
|
|
|
virtual void ProcessValue(const std::string &value);
|
|
|
|
const TargetConstituentBoundariesRightAdjacentCollection &GetCollection() const {
|
|
return m_constituentsCollection;
|
|
};
|
|
|
|
virtual const std::string *GetValueString() const {
|
|
UTIL_THROW2("TargetConstituentBoundariesRightAdjacentPhraseProperty: value string not available in this phrase property");
|
|
return NULL;
|
|
};
|
|
|
|
protected:
|
|
|
|
virtual void Print(std::ostream& out) const;
|
|
|
|
TargetConstituentBoundariesRightAdjacentCollection m_constituentsCollection;
|
|
};
|
|
|
|
} // namespace Moses
|
|
|