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

HypothesisColl.h « moses2 - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c17fc9e712eb5946879aea8dfd6c4956668f6de (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * HypothesisColl.h
 *
 *  Created on: 26 Feb 2016
 *      Author: hieu
 */
#pragma once
#include <boost/unordered_set.hpp>
#include "HypothesisBase.h"
#include "MemPoolAllocator.h"
#include "Recycler.h"
#include "Array.h"
#include "legacy/Util2.h"

namespace Moses2
{

class ManagerBase;
class ArcLists;

typedef Array<const HypothesisBase*> Hypotheses;

////////////////////////////////////////////////////
class HypothesisColl
{
public:
  HypothesisColl(const ManagerBase &mgr);

  void Add(const ManagerBase &mgr,
           HypothesisBase *hypo,
           Recycler<HypothesisBase*> &hypoRecycle,
           ArcLists &arcLists);

  size_t GetSize() const {
    return m_coll.size();
  }

  void Clear();

  const Hypotheses &GetSortedAndPrunedHypos(
    const ManagerBase &mgr,
    ArcLists &arcLists) const;

  const HypothesisBase *GetBestHypo() const;

  template<typename T>
  const T *GetBestHypo() const {
    const HypothesisBase *hypo = GetBestHypo();
    return hypo ? &hypo->Cast<T>() : NULL;
  }

  void Delete(const HypothesisBase *hypo);

  std::string Debug(const System &system) const;

protected:
  typedef boost::unordered_set<const HypothesisBase*,
		  UnorderedComparer<HypothesisBase>, UnorderedComparer<HypothesisBase>,
          MemPoolAllocator<const HypothesisBase*> > _HCType;

  _HCType m_coll;
  mutable Hypotheses *m_sortedHypos;

  SCORE m_bestScore;
  SCORE m_worstScore;

  StackAdd Add(const HypothesisBase *hypo);

  void PruneHypos(const ManagerBase &mgr, ArcLists &arcLists);
  void SortHypos(const ManagerBase &mgr, const HypothesisBase **sortedHypos) const;

};

} /* namespace Moses2 */