blob: 09c8edb1d8f31f1120595537a3472182b028b26e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _TARGET_GIVEN_SOURCE_COHERENT_H_
#define _TARGET_GIVEN_SOURCE_COHERENT_H_
#include "feature.h"
class TargetGivenSourceCoherent : public Feature {
public:
double Score(const FeatureContext& context) const;
string GetName() const;
};
#endif
|