mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-09 16:04:41 +03:00
17 lines
212 B
C++
17 lines
212 B
C++
#pragma once
|
|
|
|
#include "moses/TargetPhraseCollection.h"
|
|
|
|
namespace Moses
|
|
{
|
|
namespace Syntax
|
|
{
|
|
|
|
struct PLabel {
|
|
float inputWeight;
|
|
TargetPhraseCollection::shared_ptr translations;
|
|
};
|
|
|
|
} // Syntax
|
|
} // Moses
|