summaryrefslogtreecommitdiff
path: root/extractor/features/target_given_source_coherent.h
blob: 80d9f6172bdecf3ec471770ae761101ff5ed9bf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _TARGET_GIVEN_SOURCE_COHERENT_H_
#define _TARGET_GIVEN_SOURCE_COHERENT_H_

#include "feature.h"

namespace extractor {
namespace features {

class TargetGivenSourceCoherent : public Feature {
 public:
  double Score(const FeatureContext& context) const;

  string GetName() const;
};

} // namespace features
} // namespace extractor

#endif