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

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

#include "util/check.hh"
#include <vector>


namespace Moses
{

class FFState
{
public:
  virtual ~FFState();
  virtual int Compare(const FFState& other) const = 0;
};

class DummyState : public FFState {
public:
  DummyState()  {}
  int Compare(const FFState& other) const {
  	return 0;
  }
};

}
#endif