|
#include "moses/PP/CountsPhraseProperty.h" |
|
#include <sstream> |
|
#include <cassert> |
|
|
|
namespace Moses |
|
{ |
|
|
|
void CountsPhraseProperty::ProcessValue(const std::string &value) |
|
{ |
|
std::istringstream tokenizer(value); |
|
|
|
if (! (tokenizer >> m_targetMarginal)) { |
|
UTIL_THROW2("CountsPhraseProperty: Not able to read target marginal. Flawed property?"); |
|
} |
|
assert( m_targetMarginal > 0 ); |
|
|
|
if (! (tokenizer >> m_sourceMarginal)) { |
|
UTIL_THROW2("CountsPhraseProperty: Not able to read source marginal. Flawed property?"); |
|
} |
|
assert( m_sourceMarginal > 0 ); |
|
|
|
if (! (tokenizer >> m_jointCount)) { |
|
UTIL_THROW2("CountsPhraseProperty: Not able to read joint count. Flawed property?"); |
|
} |
|
assert( m_jointCount > 0 ); |
|
}; |
|
|
|
std::ostream& operator<<(std::ostream &out, const CountsPhraseProperty &obj) |
|
{ |
|
out << "Count property=" |
|
<< obj.GetTargetMarginal() << " " |
|
<< obj.GetSourceMarginal() << " " |
|
<< obj.GetJointCount(); |
|
return out; |
|
} |
|
|
|
} |
|
|
|
|