summaryrefslogtreecommitdiff
path: root/extractor/rule.cc
diff options
context:
space:
mode:
Diffstat (limited to 'extractor/rule.cc')
-rw-r--r--extractor/rule.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/extractor/rule.cc b/extractor/rule.cc
new file mode 100644
index 00000000..9c7ac9b5
--- /dev/null
+++ b/extractor/rule.cc
@@ -0,0 +1,10 @@
+#include "rule.h"
+
+Rule::Rule(const Phrase& source_phrase,
+ const Phrase& target_phrase,
+ const vector<double>& scores,
+ const vector<pair<int, int> >& alignment) :
+ source_phrase(source_phrase),
+ target_phrase(target_phrase),
+ scores(scores),
+ alignment(alignment) {}