public class DoubleArrayComparator
extends java.lang.Object
implements java.util.Comparator<double[]>
Comparator which compares two
double arrays by comparing their i-th element,
where i is given in the constructor.
Method compare(d1, d2) returns -1, 0, or 1 depending on
whether d1[i] is less than, equal to, or greater than
d2[i].| Constructor and Description |
|---|
DoubleArrayComparator(int i)
Constructs a comparator, where i is the index
used for the comparisons.
|
| Modifier and Type | Method and Description |
|---|---|
int |
compare(double[] d1,
double[] d2)
Returns -1, 0, or 1 depending on
whether d1[i] is less than, equal
to, or greater than d2[i].
|
To submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.