mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
20 lines
261 B
C++
20 lines
261 B
C++
#pragma once
|
|
|
|
#include "util/string_piece.hh"
|
|
|
|
namespace MosesTraining
|
|
{
|
|
namespace Syntax
|
|
{
|
|
namespace ScoreStsg
|
|
{
|
|
|
|
struct RuleSymbol {
|
|
StringPiece value;
|
|
bool isNonTerminal;
|
|
};
|
|
|
|
} // namespace ScoreStsg
|
|
} // namespace Syntax
|
|
} // namespace MosesTraining
|