| 48 | |
| 49 | #undef FAR // Windows preprecessor definition conflicts with variable name |
| 50 | struct OperatingPoint |
| 51 | { |
| 52 | float score, FAR, TAR; |
| 53 | OperatingPoint() {} |
| 54 | OperatingPoint(float _score, float _FAR, float _TAR) |
| 55 | : score(_score), FAR(_FAR), TAR(_TAR) {} |
| 56 | }; |
| 57 | |
| 58 | static OperatingPoint getOperatingPointGivenFAR(const QList<OperatingPoint> &operatingPoints, float FAR) |
| 59 | { |
no outgoing calls
no test coverage detected