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

Search.h « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d961d17cdd7e0570442c232d423471bf1ba4ee3b (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
#ifndef moses_Search_h
#define moses_Search_h

#include <vector>
#include "TypeDef.h"
#include "Phrase.h"

namespace Moses
{

class HypothesisStack;
class Hypothesis;
class InputType;
class TranslationOptionCollection;
class Manager;

/** Abstract class used in the phrase-based decoder. 
 *  Cube pruning and normal searches are the classes that inherits from this class
 */
class Search
{
public:
  virtual const std::vector < HypothesisStack* >& GetHypothesisStacks() const = 0;
  virtual const Hypothesis *GetBestHypothesis() const = 0;
  virtual void ProcessSentence() = 0;
  Search(Manager& manager) : m_manager(manager) {}
  virtual ~Search()
  {}

  // Factory
  static Search *CreateSearch(Manager& manager, const InputType &source, SearchAlgorithm searchAlgorithm,
                              const TranslationOptionCollection &transOptColl);

protected:

  const Phrase *m_constraint;
  Manager& m_manager;

};


}
#endif