Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PHyperedge.h « Syntax « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8ad63e732a9fd7e1edb96f0168d4a182aceaba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <vector>

#include "PLabel.h"

namespace Moses
{
namespace Syntax
{

struct PVertex;

struct PHyperedge {
  PVertex *head;
  std::vector<PVertex*> tail;
  PLabel label;
};

}  // Syntax
}  // Moses