2011-01-24 22:14:19 +03:00
|
|
|
/***********************************************************************
|
|
|
|
Moses - factored phrase-based language decoder
|
|
|
|
Copyright (C) 2011 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
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifndef moses_ChartRuleLookupManager_h
|
|
|
|
#define moses_ChartRuleLookupManager_h
|
|
|
|
|
2011-04-05 00:43:02 +04:00
|
|
|
#include "ChartCellCollection.h"
|
2011-01-24 22:14:19 +03:00
|
|
|
#include "InputType.h"
|
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
2013-07-31 15:25:34 +04:00
|
|
|
class ChartParser;
|
2012-10-03 16:27:47 +04:00
|
|
|
class ChartParserCallback;
|
2011-01-24 22:14:19 +03:00
|
|
|
class WordsRange;
|
2013-07-31 15:25:34 +04:00
|
|
|
class Sentence;
|
2011-01-24 22:14:19 +03:00
|
|
|
|
2012-06-27 03:45:02 +04:00
|
|
|
/** Defines an interface for looking up rules in a rule table. Concrete
|
|
|
|
* implementation classes should correspond to specific PhraseDictionary
|
|
|
|
* subclasses (memory or on-disk). Since a ChartRuleLookupManager object
|
|
|
|
* maintains sentence-specific state, exactly one should be created for
|
|
|
|
* each sentence that is to be decoded.
|
|
|
|
*/
|
2011-01-24 22:14:19 +03:00
|
|
|
class ChartRuleLookupManager
|
|
|
|
{
|
2011-02-24 16:14:42 +03:00
|
|
|
public:
|
2013-07-31 15:25:34 +04:00
|
|
|
ChartRuleLookupManager(const ChartParser &parser,
|
2012-10-02 19:47:50 +04:00
|
|
|
const ChartCellCollectionBase &cellColl)
|
2013-07-31 15:25:34 +04:00
|
|
|
: m_parser(parser)
|
2011-01-24 22:14:19 +03:00
|
|
|
, m_cellCollection(cellColl) {}
|
|
|
|
|
2013-09-28 12:42:17 +04:00
|
|
|
virtual ~ChartRuleLookupManager();
|
2011-01-24 22:14:19 +03:00
|
|
|
|
2012-10-02 16:27:02 +04:00
|
|
|
const ChartCellLabelSet &GetTargetLabelSet(size_t begin, size_t end) const {
|
2012-10-02 19:47:50 +04:00
|
|
|
return m_cellCollection.GetBase(WordsRange(begin, end)).GetTargetLabelSet();
|
2012-10-02 16:27:02 +04:00
|
|
|
}
|
|
|
|
|
2013-08-07 17:18:12 +04:00
|
|
|
const ChartParser &GetParser() const {
|
|
|
|
return m_parser;
|
|
|
|
}
|
2013-08-02 21:09:47 +04:00
|
|
|
//const Sentence &GetSentence() const;
|
2013-07-31 15:25:34 +04:00
|
|
|
|
2012-10-02 16:27:02 +04:00
|
|
|
const ChartCellLabel &GetSourceAt(size_t at) const {
|
2012-10-02 19:34:25 +04:00
|
|
|
return m_cellCollection.GetSourceWordLabel(at);
|
2011-02-24 16:14:42 +03:00
|
|
|
}
|
2011-01-24 22:14:19 +03:00
|
|
|
|
2012-07-03 21:11:53 +04:00
|
|
|
/** abstract function. Return a vector of translation options for given a range in the input sentence
|
|
|
|
* \param range source range for which you want the translation options
|
|
|
|
* \param outColl return argument
|
|
|
|
*/
|
2011-01-24 22:14:19 +03:00
|
|
|
virtual void GetChartRuleCollection(
|
2011-02-24 16:14:42 +03:00
|
|
|
const WordsRange &range,
|
2014-03-21 14:53:15 +04:00
|
|
|
size_t lastPos, // last position to consider if using lookahead
|
2012-10-03 16:27:47 +04:00
|
|
|
ChartParserCallback &outColl) = 0;
|
2011-01-24 22:14:19 +03:00
|
|
|
|
2011-02-24 16:14:42 +03:00
|
|
|
private:
|
2012-07-03 21:11:53 +04:00
|
|
|
//! Non-copyable: copy constructor and assignment operator not implemented.
|
2011-01-24 22:14:19 +03:00
|
|
|
ChartRuleLookupManager(const ChartRuleLookupManager &);
|
2012-07-03 21:11:53 +04:00
|
|
|
//! Non-copyable: copy constructor and assignment operator not implemented.
|
2011-01-24 22:14:19 +03:00
|
|
|
ChartRuleLookupManager &operator=(const ChartRuleLookupManager &);
|
|
|
|
|
2013-07-31 15:25:34 +04:00
|
|
|
const ChartParser &m_parser;
|
2012-10-02 19:47:50 +04:00
|
|
|
const ChartCellCollectionBase &m_cellCollection;
|
2011-01-24 22:14:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Moses
|
|
|
|
|
|
|
|
#endif
|