mosesdecoder/phrase-extract/HoleCollection.cpp
2013-05-29 18:16:15 +01:00

78 lines
2.5 KiB
C++

/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2010 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
***********************************************************************/
#include "HoleCollection.h"
#include <algorithm>
namespace MosesTraining
{
void HoleCollection::SortSourceHoles()
{
assert(m_sortedSourceHoles.size() == 0);
// add
HoleList::iterator iter;
for (iter = m_holes.begin(); iter != m_holes.end(); ++iter) {
Hole &currHole = *iter;
m_sortedSourceHoles.push_back(&currHole);
}
// sort
std::sort(m_sortedSourceHoles.begin(), m_sortedSourceHoles.end(), HoleSourceOrderer());
}
void HoleCollection::Add(int startT, int endT, int startS, int endS)
{
Hole hole(startS, endS, startT, endT);
m_scope.push_back(Scope(hole));
m_sourceHoleStartPoints.push_back(startS);
m_sourceHoleEndPoints.push_back(endS);
m_holes.push_back(hole);
m_sortedSourceHoles.clear();
}
void HoleCollection::RemoveLast()
{
m_scope.pop_back();
m_sourceHoleStartPoints.pop_back();
m_sourceHoleEndPoints.pop_back();
m_holes.pop_back();
m_sortedSourceHoles.clear();
}
int HoleCollection::Scope(const Hole &proposedHole) const
{
const int holeStart = proposedHole.GetStart(0);
const int holeEnd = proposedHole.GetEnd(0);
int scope = m_scope.back();
if (holeStart == m_sourcePhraseStart.back() ||
find(m_sourceHoleEndPoints.begin(), m_sourceHoleEndPoints.end(), holeStart-1) != m_sourceHoleEndPoints.end()) {
++scope; // Adding hole would introduce choice point at start of hole.
}
if (holeEnd == m_sourcePhraseEnd.back() ||
find(m_sourceHoleStartPoints.begin(), m_sourceHoleStartPoints.end(), holeEnd-1) != m_sourceHoleStartPoints.end()) {
++scope; // Adding hole would introduce choice point at end of hole.
}
return scope;
}
}