Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Alignments.h « fuzzy-match « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f54372d27b020f6e36db0ebe6921d30f827fc575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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:

};