mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 05:14:36 +03:00
21 lines
252 B
C++
21 lines
252 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
class Alignments
|
|
{
|
|
public:
|
|
std::vector< std::map<int, int> > m_alignS2T, m_alignT2S;
|
|
|
|
Alignments(const std::string &align, size_t sourceSize, size_t targetSize);
|
|
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|