mosesdecoder/moses/parameters/ReorderingOptions.h

22 lines
435 B
C
Raw Permalink Normal View History

2015-08-05 04:15:34 +03:00
// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*-
#pragma once
#include <string>
#include "moses/Parameter.h"
#include "OptionsBaseClass.h"
2015-08-05 04:15:34 +03:00
namespace Moses
{
struct
ReorderingOptions : public OptionsBaseClass
2015-08-05 04:15:34 +03:00
{
int max_distortion;
bool monotone_at_punct;
bool use_early_distortion_cost;
bool init(Parameter const& param);
ReorderingOptions(Parameter const& param);
ReorderingOptions();
2015-08-05 04:15:34 +03:00
};
}