| 88 | } |
| 89 | else { |
| 90 | struct SortDecreasing { |
| 91 | bool operator()(const std::pair<int, double>& a, const std::pair<int, double>& b) { |
| 92 | return a.first > b.first; |
| 93 | } |
| 94 | }; |
| 95 | std::sort(coeffs.begin(), coeffs.end(), SortDecreasing()); |
| 96 | } |
| 97 |
no outgoing calls
no test coverage detected