mosesdecoder/contrib/other-builds/moses2/parameters/BookkeepingOptions.cpp
2016-04-07 16:01:58 +04:00

27 lines
509 B
C++

#include "BookkeepingOptions.h"
#include "../legacy/Parameter.h"
namespace Moses2
{
bool
BookkeepingOptions::
init(Parameter const& P)
{
bool& x = need_alignment_info;
P.SetParameter(x, "print-alignment-info", false);
if (!x) P.SetParameter(x, "print-alignment-info-in-n-best", false);
if (!x) {
PARAM_VEC const* params = P.GetParam("alignment-output-file");
x = params && params->size();
}
return true;
}
BookkeepingOptions::
BookkeepingOptions()
: need_alignment_info(false)
{ }
}