2010-07-18 03:23:09 +04:00
|
|
|
// $Id$
|
2010-04-08 21:16:10 +04:00
|
|
|
// vim:tabstop=2
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
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
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#ifndef moses_DecodeGraph_h
|
|
|
|
#define moses_DecodeGraph_h
|
|
|
|
|
2013-11-19 17:19:23 +04:00
|
|
|
#include "util/exception.hh"
|
2010-04-08 21:16:10 +04:00
|
|
|
#include <list>
|
|
|
|
#include <iterator>
|
|
|
|
#include "TypeDef.h"
|
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
|
|
|
class DecodeStep;
|
|
|
|
|
2012-06-27 03:45:02 +04:00
|
|
|
//! list of DecodeSteps which factorizes the translation
|
2010-04-08 21:16:10 +04:00
|
|
|
class DecodeGraph
|
|
|
|
{
|
|
|
|
protected:
|
2011-02-24 16:14:42 +03:00
|
|
|
std::list<const DecodeStep*> m_steps;
|
2014-08-02 20:15:01 +04:00
|
|
|
size_t m_id; // contiguous unique id, starting from 0
|
2011-02-24 16:14:42 +03:00
|
|
|
size_t m_maxChartSpan;
|
2013-12-05 16:19:55 +04:00
|
|
|
size_t m_backoff;
|
2010-04-08 21:16:10 +04:00
|
|
|
|
|
|
|
public:
|
2011-02-24 16:14:42 +03:00
|
|
|
/**
|
|
|
|
* position: The position of this graph within the decode sequence.
|
|
|
|
**/
|
2014-08-02 20:15:01 +04:00
|
|
|
DecodeGraph(size_t id)
|
|
|
|
: m_id(id)
|
2013-12-05 16:19:55 +04:00
|
|
|
, m_maxChartSpan(NOT_FOUND)
|
|
|
|
, m_backoff(0)
|
|
|
|
{}
|
2011-02-24 16:14:42 +03:00
|
|
|
|
|
|
|
// for chart decoding
|
2014-08-02 20:15:01 +04:00
|
|
|
DecodeGraph(size_t id, size_t maxChartSpan)
|
|
|
|
: m_id(id)
|
2013-06-10 21:11:55 +04:00
|
|
|
, m_maxChartSpan(maxChartSpan) {
|
|
|
|
}
|
2011-02-24 16:14:42 +03:00
|
|
|
|
|
|
|
//! iterators
|
|
|
|
typedef std::list<const DecodeStep*>::iterator iterator;
|
|
|
|
typedef std::list<const DecodeStep*>::const_iterator const_iterator;
|
|
|
|
const_iterator begin() const {
|
|
|
|
return m_steps.begin();
|
|
|
|
}
|
|
|
|
const_iterator end() const {
|
|
|
|
return m_steps.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~DecodeGraph();
|
|
|
|
|
|
|
|
//! Add another decode step to the graph
|
2013-12-05 17:06:35 +04:00
|
|
|
void Add(DecodeStep *decodeStep);
|
2011-02-24 16:14:42 +03:00
|
|
|
|
|
|
|
size_t GetSize() const {
|
|
|
|
return m_steps.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t GetMaxChartSpan() const {
|
2013-11-23 00:27:46 +04:00
|
|
|
UTIL_THROW_IF2(m_maxChartSpan == NOT_FOUND, "Max chart span not specified");
|
2011-02-24 16:14:42 +03:00
|
|
|
return m_maxChartSpan;
|
|
|
|
}
|
|
|
|
|
2013-12-05 16:19:55 +04:00
|
|
|
size_t GetBackoff() const {
|
|
|
|
return m_backoff;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetBackoff(size_t backoff){
|
|
|
|
m_backoff = backoff;
|
|
|
|
}
|
|
|
|
|
2014-08-02 20:15:01 +04:00
|
|
|
size_t GetId() const {
|
|
|
|
return m_id;
|
2011-02-24 16:14:42 +03:00
|
|
|
}
|
2010-04-08 21:16:10 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|