mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-05 02:22:21 +03:00
65 lines
1.0 KiB
C++
65 lines
1.0 KiB
C++
/*
|
|
* InputPaths.h
|
|
*
|
|
* Created on: 23 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#ifndef INPUTPATHS_H_
|
|
#define INPUTPATHS_H_
|
|
|
|
#include <vector>
|
|
#include "InputPath.h"
|
|
#include "MemPool.h"
|
|
#include "legacy/Matrix.h"
|
|
|
|
namespace Moses2
|
|
{
|
|
|
|
class PhraseImpl;
|
|
class System;
|
|
|
|
class InputPaths {
|
|
typedef std::vector<InputPath*> Coll;
|
|
public:
|
|
InputPaths() {}
|
|
void Init(const PhraseImpl &input, const Manager &mgr);
|
|
virtual ~InputPaths();
|
|
|
|
//! iterators
|
|
typedef Coll::iterator iterator;
|
|
typedef Coll::const_iterator const_iterator;
|
|
|
|
const_iterator begin() const {
|
|
return m_inputPaths.begin();
|
|
}
|
|
const_iterator end() const {
|
|
return m_inputPaths.end();
|
|
}
|
|
|
|
iterator begin() {
|
|
return m_inputPaths.begin();
|
|
}
|
|
iterator end() {
|
|
return m_inputPaths.end();
|
|
}
|
|
|
|
void DeleteUnusedPaths();
|
|
|
|
const InputPath &GetBlank() const
|
|
{ return *m_blank; }
|
|
|
|
const Matrix<InputPath*> &GetMatrix() const
|
|
{ return *m_matrix; }
|
|
|
|
protected:
|
|
Coll m_inputPaths;
|
|
InputPath *m_blank;
|
|
Matrix<InputPath*> *m_matrix;
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif /* INPUTPATHS_H_ */
|