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

Bitmaps.cpp « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8302cb17aacee82ebf747f791b80fe1810da501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <boost/foreach.hpp>
#include "Bitmaps.h"
#include "Util.h"

using namespace std;

namespace Moses
{
Bitmaps::Bitmaps(size_t inputSize, const std::vector<bool> &initSourceCompleted)
{
  m_initBitmap = new Bitmap(inputSize, initSourceCompleted);
  m_coll[m_initBitmap];
}

Bitmaps::~Bitmaps()
{
  BOOST_FOREACH (const Coll::value_type& myPair, m_coll) {
    const Bitmap *bm = myPair.first;
    delete bm;
  }
}

const Bitmap &Bitmaps::GetNextBitmap(const Bitmap &bm, const Range &range)
{
  Bitmap *newBM = new Bitmap(bm, range);

  Coll::const_iterator iter = m_coll.find(newBM);
  if (iter == m_coll.end()) {
    m_coll[newBM] = NextBitmaps();
    return *newBM;
  } else {
    delete newBM;
    return *iter->first;
  }
}

const Bitmap &Bitmaps::GetBitmap(const Bitmap &bm, const Range &range)
{
  Coll::iterator iter = m_coll.find(&bm);
  assert(iter != m_coll.end());

  const Bitmap *newBM;
  NextBitmaps &next = iter->second;
  NextBitmaps::const_iterator iterNext = next.find(range);
  if (iterNext == next.end()) {
    // not seen the link yet.
    newBM = &GetNextBitmap(bm, range);
    next[range] = newBM;
  } else {
    // link exist
    //std::cerr << "link exists" << endl;
    newBM = iterNext->second;
  }
  return *newBM;
}

}