#ifndef _COMB_SCORER_ #define _COMB_SCORER_ #include "scorer.h" class BLEUTERCombinationScorer : public SentenceScorer { public: BLEUTERCombinationScorer(const std::vector >& refs); ~BLEUTERCombinationScorer(); Score* ScoreCandidate(const std::vector& hyp) const; Score* ScoreCCandidate(const std::vector& hyp) const; static Score* ScoreFromString(const std::string& in); private: SentenceScorer* bleu_; SentenceScorer* ter_; }; #endif