| 43 | |
| 44 | |
| 45 | void SortDescending(GeneralMatrix& GM) |
| 46 | { |
| 47 | REPORT |
| 48 | Tracer et("QuickSortDescending"); |
| 49 | |
| 50 | Real* data = GM.Store(); int maxi = GM.Storage(); |
| 51 | |
| 52 | if (maxi > DoSimpleSort) MyQuickSortDescending(data, data + maxi - 1, 0); |
| 53 | InsertionSortDescending(data, maxi, DoSimpleSort); |
| 54 | |
| 55 | } |
| 56 | |
| 57 | static Real SortThreeDescending(Real* a, Real* b, Real* c) |
| 58 | { |
no test coverage detected