mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
23 lines
336 B
C++
23 lines
336 B
C++
/*
|
|
* WordPenalty.cpp
|
|
*
|
|
* Created on: 28 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#include "WordPenalty.h"
|
|
|
|
WordPenalty::WordPenalty(size_t startInd, const std::string &line)
|
|
:StatelessFeatureFunction(startInd, line)
|
|
{
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
WordPenalty::~WordPenalty() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
|
|
|