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