Adjusts this index table to contain the reverse sorted index order for the given array @param array the input to get sorted order of
(double[] array)
| 150 | * @param array the input to get sorted order of |
| 151 | */ |
| 152 | public void sortR(double[] array) |
| 153 | { |
| 154 | sortR(DoubleList.unmodifiableView(array, array.length)); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Adjust this index table to contain the sorted index order for the given |
no test coverage detected