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"
|
2015-08-07 21:17:37 +03:00
|
|
|
#include "OptionsBaseClass.h"
|
2015-08-05 04:15:34 +03:00
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
|
|
|
struct
|
2015-08-07 21:17:37 +03:00
|
|
|
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);
|
2015-12-08 15:28:35 +03:00
|
|
|
ReorderingOptions();
|
2015-08-05 04:15:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|