File size: 435 Bytes
158b61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// -*- 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();
  };

}