blob: ec816509735f94e3400af8fa89e3b3bbdffc082f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "is_source_target_singleton.h"
#include <cmath>
double IsSourceTargetSingleton::Score(const FeatureContext& context) const {
return context.pair_count == 1;
}
string IsSourceTargetSingleton::GetName() const {
return "IsSingletonEF";
}
|