summaryrefslogtreecommitdiff
path: root/decoder/ff_csplit.h
blob: c1cfb64b864df03f5995b14a3fd1906ad67be85d (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
#ifndef _FF_CSPLIT_H_
#define _FF_CSPLIT_H_

#include <boost/shared_ptr.hpp>

#include "ff.h"

class BasicCSplitFeaturesImpl;
class BasicCSplitFeatures : public FeatureFunction {
 public:
  BasicCSplitFeatures(const std::string& param);
 protected:
  virtual void TraversalFeaturesImpl(const SentenceMetadata& smeta,
                                     const Hypergraph::Edge& edge,
                                     const std::vector<const void*>& ant_contexts,
                                     SparseVector<double>* features,
                                     SparseVector<double>* estimated_features,
                                     void* out_context) const;
 private:
  boost::shared_ptr<BasicCSplitFeaturesImpl> pimpl_;
};

class ReverseCharLMCSplitFeatureImpl;
class ReverseCharLMCSplitFeature : public FeatureFunction {
 public:
  ReverseCharLMCSplitFeature(const std::string& param);
 protected:
  virtual void TraversalFeaturesImpl(const SentenceMetadata& smeta,
                                     const Hypergraph::Edge& edge,
                                     const std::vector<const void*>& ant_contexts,
                                     SparseVector<double>* features,
                                     SparseVector<double>* estimated_features,
                                     void* out_context) const;
 private:
  boost::shared_ptr<ReverseCharLMCSplitFeatureImpl> pimpl_;
  const int fid_;
};

#endif