2008-06-11 14:52:57 +04:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
Moses - factored phrase-based language decoder
|
|
|
|
Copyright (C) 2006 University of Edinburgh
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
***********************************************************************/
|
|
|
|
|
2010-02-24 14:15:44 +03:00
|
|
|
#ifndef moses_DecodeStepGeneration_h
|
|
|
|
#define moses_DecodeStepGeneration_h
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
#include "DecodeStep.h"
|
|
|
|
|
2008-10-09 03:51:26 +04:00
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
2008-06-11 14:52:57 +04:00
|
|
|
class GenerationDictionary;
|
|
|
|
class Phrase;
|
|
|
|
class ScoreComponentCollection;
|
|
|
|
|
|
|
|
//! subclass of DecodeStep for generation step
|
|
|
|
class DecodeStepGeneration : public DecodeStep
|
|
|
|
{
|
|
|
|
public:
|
2013-05-30 14:25:57 +04:00
|
|
|
DecodeStepGeneration(const GenerationDictionary* dict,
|
2013-05-30 15:51:40 +04:00
|
|
|
const DecodeStep* prev,
|
|
|
|
const std::vector<FeatureFunction*> &features);
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
|
2013-08-07 15:11:39 +04:00
|
|
|
void Process(const TranslationOption &inputPartialTranslOpt
|
2013-08-07 17:18:12 +04:00
|
|
|
, const DecodeStep &decodeStep
|
|
|
|
, PartialTranslOptColl &outputPartialTranslOptColl
|
|
|
|
, TranslationOptionCollection *toc
|
2013-08-08 20:10:56 +04:00
|
|
|
, bool adhereTableLimit) const;
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2008-10-09 03:51:26 +04:00
|
|
|
|
|
|
|
}
|
2010-02-24 14:15:44 +03:00
|
|
|
#endif
|