mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
71 lines
1.2 KiB
C++
71 lines
1.2 KiB
C++
/*
|
|
* TargetPhraseImpl.h
|
|
*
|
|
* Created on: 23 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
#include "../Phrase.h"
|
|
#include "../PhraseImplTemplate.h"
|
|
#include "../MemPool.h"
|
|
#include "Word.h"
|
|
#include "../SubPhrase.h"
|
|
|
|
namespace Moses2
|
|
{
|
|
class Scores;
|
|
class Manager;
|
|
class System;
|
|
class PhraseTable;
|
|
|
|
namespace SCFG
|
|
{
|
|
|
|
class TargetPhraseImpl: public Moses2::TargetPhrase, public PhraseImplTemplate<SCFG::Word>
|
|
{
|
|
friend std::ostream& operator<<(std::ostream &, const TargetPhraseImpl &);
|
|
public:
|
|
SCFG::Word lhs;
|
|
|
|
static TargetPhraseImpl *CreateFromString(MemPool &pool,
|
|
const PhraseTable &pt, const System &system, const std::string &str);
|
|
TargetPhraseImpl(MemPool &pool, const PhraseTable &pt, const System &system,
|
|
size_t size);
|
|
//TargetPhraseImpl(MemPool &pool, const System &system, const TargetPhraseImpl ©);
|
|
|
|
virtual ~TargetPhraseImpl();
|
|
|
|
const Word& operator[](size_t pos) const
|
|
{
|
|
return m_words[pos];
|
|
}
|
|
|
|
Word& operator[](size_t pos)
|
|
{
|
|
return m_words[pos];
|
|
}
|
|
|
|
size_t GetSize() const
|
|
{
|
|
return m_size;
|
|
}
|
|
|
|
SubPhrase GetSubPhrase(size_t start, size_t size) const
|
|
{
|
|
SubPhrase ret(*this, start, size);
|
|
return ret;
|
|
}
|
|
|
|
//mutable void *chartState;
|
|
|
|
protected:
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|