mosesdecoder/moses/parameters/BeamSearchOptions.h
Ulrich Germann 524109e2ca Reorganisation of options.
The purpose of this effort is to have options local to the individual translation task,
so that they can be changed in the running system in a multi-threaded system.
2015-08-06 21:11:43 +01:00

16 lines
266 B
C++

// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*-
#pragma once
#include <string>
#include "moses/Parameter.h"
namespace Moses
{
struct
BeamSearchOptions
{
bool init(Parameter const& param);
BeamSearchOptions(Parameter const& param);
};
}