2011-06-27 19:13:15 +04:00
|
|
|
/***********************************************************************
|
|
|
|
Moses - statistical machine translation system
|
|
|
|
Copyright (C) 2006-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
|
|
|
|
|
2012-01-25 16:26:28 +04:00
|
|
|
#include "StackVec.h"
|
2013-08-09 21:16:31 +04:00
|
|
|
#include "ChartTranslationOptions.h"
|
2011-06-27 19:13:15 +04:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
|
|
|
class ChartCellCollection;
|
|
|
|
class ChartHypothesis;
|
|
|
|
class ChartManager;
|
|
|
|
class TargetPhrase;
|
|
|
|
|
|
|
|
typedef std::vector<const ChartHypothesis*> HypoList;
|
|
|
|
|
2012-06-29 02:29:46 +04:00
|
|
|
/** wrapper around list of target phrase translation options
|
|
|
|
* @todo How is this used. Split out into separate source file
|
|
|
|
*/
|
2011-06-27 19:13:15 +04:00
|
|
|
class TranslationDimension
|
|
|
|
{
|
2013-05-29 21:16:15 +04:00
|
|
|
public:
|
2011-06-30 08:20:53 +04:00
|
|
|
TranslationDimension(std::size_t pos,
|
2013-08-09 21:16:31 +04:00
|
|
|
const ChartTranslationOptions::CollType &orderedTargetPhrases)
|
2011-06-27 19:13:15 +04:00
|
|
|
: m_pos(pos)
|
2013-08-09 21:16:31 +04:00
|
|
|
, m_orderedTargetPhrases(orderedTargetPhrases) {
|
2013-06-10 21:11:55 +04:00
|
|
|
}
|
2011-06-27 19:13:15 +04:00
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
std::size_t IncrementPos() {
|
|
|
|
return m_pos++;
|
|
|
|
}
|
2011-06-27 19:13:15 +04:00
|
|
|
|
|
|
|
bool HasMoreTranslations() const {
|
2013-08-09 21:16:31 +04:00
|
|
|
return m_pos+1 < m_orderedTargetPhrases.size();
|
2011-06-27 19:13:15 +04:00
|
|
|
}
|
|
|
|
|
2013-12-12 05:13:23 +04:00
|
|
|
const boost::shared_ptr<ChartTranslationOption> GetTranslationOption() const {
|
2013-08-09 21:16:31 +04:00
|
|
|
return m_orderedTargetPhrases[m_pos];
|
2011-06-27 19:13:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const TranslationDimension &compare) const {
|
2013-12-13 21:23:39 +04:00
|
|
|
return GetTranslationOption().get() < compare.GetTranslationOption().get();
|
2011-06-27 19:13:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const TranslationDimension &compare) const {
|
2013-12-13 21:23:39 +04:00
|
|
|
return GetTranslationOption().get() == compare.GetTranslationOption().get();
|
2011-06-27 19:13:15 +04:00
|
|
|
}
|
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
private:
|
2011-06-30 08:20:53 +04:00
|
|
|
std::size_t m_pos;
|
2013-08-12 20:35:22 +04:00
|
|
|
const ChartTranslationOptions::CollType &m_orderedTargetPhrases;
|
2011-06-27 19:13:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-06-29 02:29:46 +04:00
|
|
|
/** wrapper around list of hypotheses for a particular non-term of a trans opt
|
|
|
|
* @todo How is this used. Split out into separate source file
|
|
|
|
*/
|
2011-06-27 19:13:15 +04:00
|
|
|
class HypothesisDimension
|
|
|
|
{
|
|
|
|
public:
|
2011-06-30 08:20:53 +04:00
|
|
|
HypothesisDimension(std::size_t pos, const HypoList &orderedHypos)
|
2011-06-27 19:13:15 +04:00
|
|
|
: m_pos(pos)
|
2013-06-10 21:11:55 +04:00
|
|
|
, m_orderedHypos(&orderedHypos) {
|
|
|
|
}
|
2011-06-27 19:13:15 +04:00
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
std::size_t IncrementPos() {
|
|
|
|
return m_pos++;
|
|
|
|
}
|
2011-06-27 19:13:15 +04:00
|
|
|
|
|
|
|
bool HasMoreHypo() const {
|
|
|
|
return m_pos+1 < m_orderedHypos->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
const ChartHypothesis *GetHypothesis() const {
|
|
|
|
return (*m_orderedHypos)[m_pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const HypothesisDimension &compare) const {
|
|
|
|
return GetHypothesis() < compare.GetHypothesis();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const HypothesisDimension &compare) const {
|
|
|
|
return GetHypothesis() == compare.GetHypothesis();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2011-06-30 08:20:53 +04:00
|
|
|
std::size_t m_pos;
|
2011-06-27 19:13:15 +04:00
|
|
|
const HypoList *m_orderedHypos;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::size_t hash_value(const HypothesisDimension &);
|
|
|
|
|
2012-06-29 02:29:46 +04:00
|
|
|
/** @todo How is this used. Split out into separate source file */
|
2011-06-27 19:13:15 +04:00
|
|
|
class RuleCubeItem
|
|
|
|
{
|
2013-05-29 21:16:15 +04:00
|
|
|
public:
|
2012-09-25 20:34:43 +04:00
|
|
|
RuleCubeItem(const ChartTranslationOptions &, const ChartCellCollection &);
|
2011-06-27 19:13:15 +04:00
|
|
|
RuleCubeItem(const RuleCubeItem &, int);
|
|
|
|
~RuleCubeItem();
|
|
|
|
|
|
|
|
const TranslationDimension &GetTranslationDimension() const {
|
|
|
|
return m_translationDimension;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<HypothesisDimension> &GetHypothesisDimensions() const {
|
|
|
|
return m_hypothesisDimensions;
|
|
|
|
}
|
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
float GetScore() const {
|
|
|
|
return m_score;
|
|
|
|
}
|
2011-06-27 19:13:15 +04:00
|
|
|
|
|
|
|
void EstimateScore();
|
|
|
|
|
2012-09-25 20:34:43 +04:00
|
|
|
void CreateHypothesis(const ChartTranslationOptions &, ChartManager &);
|
2011-06-27 19:13:15 +04:00
|
|
|
|
|
|
|
ChartHypothesis *ReleaseHypothesis();
|
|
|
|
|
|
|
|
bool operator<(const RuleCubeItem &) const;
|
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
private:
|
2011-06-27 19:13:15 +04:00
|
|
|
RuleCubeItem(const RuleCubeItem &); // Not implemented
|
|
|
|
RuleCubeItem &operator=(const RuleCubeItem &); // Not implemented
|
|
|
|
|
2012-01-25 16:26:28 +04:00
|
|
|
void CreateHypothesisDimensions(const StackVec &);
|
2011-06-27 19:13:15 +04:00
|
|
|
|
|
|
|
TranslationDimension m_translationDimension;
|
|
|
|
std::vector<HypothesisDimension> m_hypothesisDimensions;
|
|
|
|
ChartHypothesis *m_hypothesis;
|
|
|
|
float m_score;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|