#ifndef _MAX_LEX_TARGET_GIVEN_SOURCE_H_ #define _MAX_LEX_TARGET_GIVEN_SOURCE_H_ #include #include "feature.h" using namespace std; class TranslationTable; class MaxLexTargetGivenSource : public Feature { public: MaxLexTargetGivenSource(shared_ptr table); double Score(const FeatureContext& context) const; string GetName() const; private: shared_ptr table; }; #endif