Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/1.6.3/LibSVM-1.6.3/SVMExtensions.cs @ 8380

Last change on this file since 8380 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 218 bytes
Line 
1
2namespace SVM {
3  internal static class SVMExtensions {
4    public static void SwapIndex<T>(this T[] list, int i, int j) {
5      T tmp = list[i];
6      list[i] = list[j];
7      list[j] = tmp;
8    }
9  }
10}
Note: See TracBrowser for help on using the repository browser.