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

ChartTranslationOptionList.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7272a01cfe4046642b735856e9dca02666cabc90 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// $Id$

/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2006 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
***********************************************************************/

#pragma once

#include <queue>
#include <vector>
#include <list>
#include <set>
#include "ChartTranslationOption.h"
#include "TargetPhrase.h"
#include "Util.h"
#include "TargetPhraseCollection.h"
#include "ObjectPool.h"

namespace Moses
{
//! a list of target phrases that is trsnalated from the same source phrase
class ChartTranslationOptionList
{
  friend std::ostream& operator<<(std::ostream&, const ChartTranslationOptionList&);

protected:
#ifdef USE_HYPO_POOL
  static ObjectPool<ChartTranslationOptionList> s_objectPool;
#endif
  typedef std::vector<ChartTranslationOption*> CollType;
  CollType m_collection;
  float m_scoreThreshold;
  WordsRange m_range;

public:
  // iters
  typedef CollType::iterator iterator;
  typedef CollType::const_iterator const_iterator;

  iterator begin() {
    return m_collection.begin();
  }
  iterator end() {
    return m_collection.end();
  }
  const_iterator begin() const {
    return m_collection.begin();
  }
  const_iterator end() const {
    return m_collection.end();
  }

#ifdef USE_HYPO_POOL
  void *operator new(size_t /* num_bytes */) {
    void *ptr = s_objectPool.getPtr();
    return ptr;
  }

  static void Delete(ChartTranslationOptionList *obj) {
    s_objectPool.freeObject(obj);
  }
#else
  static void Delete(ChartTranslationOptionList *obj) {
    delete obj;
  }
#endif

  ChartTranslationOptionList(const WordsRange &range);
  ~ChartTranslationOptionList();

  const ChartTranslationOption &Get(size_t ind) const {
    return *m_collection[ind];
  }

  //! divide collection into 2 buckets using std::nth_element, the top & bottom according to table limit
//	void Sort(size_t tableLimit);

  //! number of target phrases in this collection
  size_t GetSize() const {
    return m_collection.size();
  }
  //! wether collection has any phrases
  bool IsEmpty() const {
    return m_collection.empty();
  }

  void Add(const TargetPhraseCollection &targetPhraseCollection
           , const DottedRule &dottedRule
           , const ChartCellCollection &
           , bool ruleLimit
           , size_t tableLimit);
  void Add(ChartTranslationOption *transOpt);

  void CreateChartRules(size_t ruleLimit);

  const WordsRange &GetSourceRange() const {
    return m_range;
  }

  void Sort();


};

}