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

HypothesisQueue.cpp « mira - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67a42dfdd4d6449b03fe43cf1f27e97b0c9b49f2 (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
/***********************************************************************
 Moses - statistical machine translation system
 Copyright (C) 2006-2011 University of Edinburgh
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
***********************************************************************/

#include <iostream>
#include "HypothesisQueue.h"

using namespace std;

namespace Moses {

HypothesisQueue::~HypothesisQueue() {
  m_queue.clear();
}

void HypothesisQueue::Push(BleuIndexPair hypo) {
  pair<set<BleuIndexPair>::iterator,bool> ret;

  if (m_capacity == 0 || m_queue.size() < m_capacity) {
    ret = m_queue.insert(hypo);
  } else if (hypo.first > (*(m_queue.rbegin())).first) {
    // Remove the worst-scoring item from the queue and insert hypo (only erase item if new item was successfully added )
    ret = m_queue.insert(hypo);
    if ((*(ret.first)).second == 1) {
      HypoQueueType::iterator p = m_queue.end();
      --p;
      m_queue.erase(p);
    }
  } else {
    // The hypo is unusable: the queue is full and hypo has a worse (or
    // equal) score than the worst-scoring item already held.
  }
}

BleuIndexPair HypothesisQueue::Pop() {
  HypoQueueType::iterator p = m_queue.begin();
  BleuIndexPair top = *p;
  m_queue.erase(p);
  return top;
}

}  // namespace Moses