| 32 | numTotal(numCurrent) { } |
| 33 | |
| 34 | virtual ~NormalCore() { |
| 35 | delete[] index; |
| 36 | } |
| 37 | |
| 38 | static float ComputeScore(float a, float s, float t) { |
| 39 | return s == 0 || t - 1 == 0 ? 0 : pow((a - s / t) * t, 2) / (s * (t - 1)); |
nothing calls this directly
no outgoing calls
no test coverage detected