File size: 1,324 Bytes
158b61b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
/*
* TargetPhrases.cpp
*
* Created on: 15 Apr 2016
* Author: hieu
*/
#include <boost/foreach.hpp>
#include <sstream>
#include <algorithm>
#include "TargetPhrases.h"
#include "TargetPhraseImpl.h"
#include "../TargetPhrase.h"
#include "../TranslationModel/PhraseTable.h"
namespace Moses2
{
namespace SCFG
{
TargetPhrases::TargetPhrases(MemPool &pool)
:m_coll(pool)
{
}
TargetPhrases::TargetPhrases(MemPool &pool, size_t size)
:m_coll(pool)
{
m_coll.reserve(size);
}
TargetPhrases::~TargetPhrases()
{
// TODO Auto-generated destructor stub
}
void TargetPhrases::SortAndPrune(size_t tableLimit)
{
iterator iterMiddle;
iterMiddle =
(tableLimit == 0 || m_coll.size() < tableLimit) ?
m_coll.end() : m_coll.begin() + tableLimit;
std::partial_sort(m_coll.begin(), iterMiddle, m_coll.end(),
CompareScoreForPruning<SCFG::TargetPhraseImpl>());
if (tableLimit && m_coll.size() > tableLimit) {
m_coll.resize(tableLimit);
}
//cerr << "TargetPhrases=" << GetSize() << endl;
}
std::string TargetPhrases::Debug(const System &system) const
{
std::stringstream out;
out << m_coll.size() << std::endl;
BOOST_FOREACH(const SCFG::TargetPhraseImpl *tp, m_coll) {
out << tp->Debug(system);
out << std::endl;
}
return out.str();
}
}
} /* namespace Moses2 */
|