mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
22 lines
437 B
C++
22 lines
437 B
C++
// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*-
|
|
#pragma once
|
|
#include <string>
|
|
#include "moses/Parameter.h"
|
|
#include "OptionsBaseClass.h"
|
|
namespace Moses
|
|
{
|
|
|
|
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() {}
|
|
};
|
|
|
|
}
|
|
|