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