Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BeamSearchOptions.h « parameters « moses2 « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d67c43438a7f32e5c725d3d8d07b17a09d970035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*-
#pragma once
#include <string>
#include "OptionsBaseClass.h"
namespace Moses2
{

  struct 
  BeamSearchOptions : public OptionsBaseClass
  {
    bool init(Parameter const& param);
    BeamSearchOptions(Parameter const& param);
  };

}