#include "rule.h" namespace extractor { Rule::Rule(const Phrase& source_phrase, const Phrase& target_phrase, const vector& scores, const vector>& alignment) : source_phrase(source_phrase), target_phrase(target_phrase), scores(scores), alignment(alignment) {} } // namespace extractor