mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
524109e2ca
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.
16 lines
266 B
C++
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);
|
|
};
|
|
|
|
}
|