Parallel Colt 0.9.4

Uses of Interface
cern.colt.function.tdouble.DoubleComparator

Packages that use DoubleComparator
cern.colt Core base classes; Operations on primitive arrays such as sorting, partitioning and permuting. 
cern.colt.list.tdouble Resizable list holding elements of double data type. 
cern.colt.matrix.tdouble.algo Linear Algebraic matrix computations operating on DoubleMatrix2D and DoubleMatrix1D
 

Uses of DoubleComparator in cern.colt
 

Methods in cern.colt with parameters of type DoubleComparator
static void Sorting.mergeSort(double[] a, int fromIndex, int toIndex, DoubleComparator c)
          Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
static void Sorting.parallelQuickSort(double[] a, int fromIndex, int toIndex, DoubleComparator c)
          Multithreaded quicksort
static void Sorting.quickSort(double[] a, int fromIndex, int toIndex, DoubleComparator c)
          Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
static void ParallelQuickSort.quickSort(double[] x, int off, int len, DoubleComparator comp, int nThreads)
          Multithreaded quicksort.
 

Uses of DoubleComparator in cern.colt.list.tdouble
 

Methods in cern.colt.list.tdouble with parameters of type DoubleComparator
 void AbstractDoubleList.mergeSortFromTo(int from, int to, DoubleComparator c)
          Sorts the receiver according to the order induced by the specified comparator.
 void AbstractDoubleList.quickSortFromTo(int from, int to, DoubleComparator c)
          Sorts the receiver according to the order induced by the specified comparator.
 

Uses of DoubleComparator in cern.colt.matrix.tdouble.algo
 

Methods in cern.colt.matrix.tdouble.algo with parameters of type DoubleComparator
 DoubleMatrix1D DoubleSorting.sort(DoubleMatrix1D vector, DoubleComparator c)
          Sorts the vector into ascending order, according to the order induced by the specified comparator.
 int[] DoubleSorting.sortIndex(DoubleMatrix1D vector, DoubleComparator c)
          Sorts indexes of the vector according to the comparator c.
 


Parallel Colt 0.9.4

Jump to the Parallel Colt Homepage