mosesdecoder/moses/ReorderingStack.h
2012-11-12 19:56:18 +00:00

41 lines
578 B
C++

/*
* ReorderingStack.h
** Author: Ankit K. Srivastava
** Date: Jan 26, 2010
*/
#pragma once
//#include <string>
#include <vector>
//#include "Factor.h"
//#include "Phrase.h"
//#include "TypeDef.h"
//#include "Util.h"
#include "WordsRange.h"
//#include "ScoreProducer.h"
//#include "FeatureFunction.h"
namespace Moses
{
/** @todo what is this?
*/
class ReorderingStack
{
private:
std::vector<WordsRange> m_stack;
public:
int Compare(const ReorderingStack& o) const;
int ShiftReduce(WordsRange input_span);
private:
void Reduce(WordsRange input_span);
};
}