suricodes's picture
Upload folder using huggingface_hub
fd49381 verified
/*
* TargetPhrases.h
*
* Created on: 15 Apr 2016
* Author: hieu
*/
#pragma once
#include <vector>
#include <stddef.h>
#include "../Vector.h"
namespace Moses2
{
class MemPool;
class System;
namespace SCFG
{
class TargetPhraseImpl;
class TargetPhrases
{
typedef Moses2::Vector<const SCFG::TargetPhraseImpl*> Coll;
public:
typedef Coll::iterator iterator;
typedef Coll::const_iterator const_iterator;
//! iterators
const_iterator begin() const {
return m_coll.begin();
}
const_iterator end() const {
return m_coll.end();
}
const SCFG::TargetPhraseImpl& operator[](size_t ind) const {
return *m_coll[ind];
}
TargetPhrases(MemPool &pool);
TargetPhrases(MemPool &pool, size_t size);
virtual ~TargetPhrases();
size_t GetSize() const {
return m_coll.size();
}
void AddTargetPhrase(const SCFG::TargetPhraseImpl &targetPhrase) {
m_coll.push_back(&targetPhrase);
}
void SortAndPrune(size_t tableLimit);
std::string Debug(const System &system) const;
protected:
Coll m_coll;
};
}
} /* namespace Moses2 */