mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-07 12:10:36 +03:00
23 lines
307 B
C
23 lines
307 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace MosesTraining
|
||
|
{
|
||
|
namespace Syntax
|
||
|
{
|
||
|
namespace PostprocessEgretForests
|
||
|
{
|
||
|
|
||
|
struct Options {
|
||
|
public:
|
||
|
Options() : escape(false) {}
|
||
|
|
||
|
bool escape;
|
||
|
std::string splitPointsFile;
|
||
|
};
|
||
|
|
||
|
} // namespace PostprocessEgretForests
|
||
|
} // namespace Syntax
|
||
|
} // namespace Moses
|