mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
22 lines
340 B
C++
22 lines
340 B
C++
/*
|
|
* WordPenalty.h
|
|
*
|
|
* Created on: 28 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#ifndef WORDPENALTY_H_
|
|
#define WORDPENALTY_H_
|
|
|
|
#include "StatelessFeatureFunction.h"
|
|
|
|
class WordPenalty : public StatelessFeatureFunction
|
|
{
|
|
public:
|
|
WordPenalty(size_t startInd, const std::string &line);
|
|
virtual ~WordPenalty();
|
|
};
|
|
|
|
#endif /* WORDPENALTY_H_ */
|
|
|