| 133 | void retestSetup(size_t idx); |
| 134 | |
| 135 | inline void updateMaxDiff(float maxDiff, size_t idxDiff) |
| 136 | { |
| 137 | if (maxDiff > m_maxDiff) |
| 138 | { |
| 139 | m_maxDiff = maxDiff; |
| 140 | m_idxDiff = idxDiff; |
| 141 | } |
| 142 | } |
| 143 | inline float getMaxDiff() const |
| 144 | { |
| 145 | return m_maxDiff; |
no outgoing calls
no test coverage detected