summaryrefslogtreecommitdiff
path: root/extractor/rule_extractor_helper.h
blob: 7bf80c4b8349e7167258bc127f88c1f1b7995318 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef _RULE_EXTRACTOR_HELPER_H_
#define _RULE_EXTRACTOR_HELPER_H_

#include <memory>
#include <unordered_map>
#include <vector>

using namespace std;

namespace extractor {

class Alignment;
class DataArray;

class RuleExtractorHelper {
 public:
  RuleExtractorHelper(shared_ptr<DataArray> source_data_array,
                      shared_ptr<DataArray> target_data_array,
                      shared_ptr<Alignment> alignment,
                      int max_rule_span,
                      int max_rule_symbols,
                      bool require_aligned_terminal,
                      bool require_aligned_chunks,
                      bool require_tight_phrases);

  virtual ~RuleExtractorHelper();

  virtual void GetLinksSpans(vector<int>& source_low, vector<int>& source_high,
                             vector<int>& target_low, vector<int>& target_high,
                             int sentence_id) const;

  virtual bool CheckAlignedTerminals(const vector<int>& matching,
                                     const vector<int>& chunklen,
                                     const vector<int>& source_low) const;

  virtual bool CheckTightPhrases(const vector<int>& matching,
                                 const vector<int>& chunklen,
                                 const vector<int>& source_low) const;

  virtual bool FindFixPoint(
      int source_phrase_low, int source_phrase_high,
      const vector<int>& source_low, const vector<int>& source_high,
      int& target_phrase_low, int& target_phrase_high,
      const vector<int>& target_low, const vector<int>& target_high,
      int& source_back_low, int& source_back_high, int sentence_id,
      int min_source_gap_size, int min_target_gap_size,
      int max_new_x, bool allow_low_x, bool allow_high_x,
      bool allow_arbitrary_expansion) const;

  virtual bool GetGaps(
      vector<pair<int, int> >& source_gaps, vector<pair<int, int> >& target_gaps,
      const vector<int>& matching, const vector<int>& chunklen,
      const vector<int>& source_low, const vector<int>& source_high,
      const vector<int>& target_low, const vector<int>& target_high,
      int source_phrase_low, int source_phrase_high, int source_back_low,
      int source_back_high, int& num_symbols, bool& met_constraints) const;

  virtual vector<int> GetGapOrder(const vector<pair<int, int> >& gaps) const;

  virtual unordered_map<int, int> GetSourceIndexes(
      const vector<int>& matching, const vector<int>& chunklen,
      int starts_with_x) const;

 protected:
  RuleExtractorHelper();

 private:
  void FindProjection(
      int source_phrase_low, int source_phrase_high,
      const vector<int>& source_low, const vector<int>& source_high,
      int& target_phrase_low, int& target_phrase_high) const;

  shared_ptr<DataArray> source_data_array;
  shared_ptr<DataArray> target_data_array;
  shared_ptr<Alignment> alignment;
  int max_rule_span;
  int max_rule_symbols;
  bool require_aligned_terminal;
  bool require_aligned_chunks;
  bool require_tight_phrases;
};

} // namespace extractor

#endif