// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*- | |
namespace Moses2 | |
{ | |
struct | |
ReorderingOptions : public OptionsBaseClass { | |
int max_distortion; | |
bool monotone_at_punct; | |
bool use_early_distortion_cost; | |
bool init(Parameter const& param); | |
ReorderingOptions(Parameter const& param); | |
ReorderingOptions(); | |
}; | |
} | |