summaryrefslogtreecommitdiff
path: root/extractor/rule.h
blob: b4d45fc1ffb9b64292fd62aa85115f41fb04422d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _RULE_H_
#define _RULE_H_

#include <vector>

#include "phrase.h"

using namespace std;

namespace extractor {

struct Rule {
  Rule(const Phrase& source_phrase, const Phrase& target_phrase,
       const vector<double>& scores, const vector<pair<int, int> >& alignment);

  Phrase source_phrase;
  Phrase target_phrase;
  vector<double> scores;
  vector<pair<int, int> > alignment;
};

} // namespace extractor

#endif