sakharamg's picture
Uploading all files
158b61b
raw
history blame contribute delete
326 Bytes
// $Id$
#pragma once
#include <vector>
#include "SingleFactor.h"
namespace Moses
{
class ExampleLM : public LanguageModelSingleFactor
{
protected:
public:
ExampleLM(const std::string &line);
~ExampleLM();
virtual LMResult GetValue(const std::vector<const Word*> &contextFactor, State* finalState = 0) const;
};
}