673674675676677678679680681682683
final double tmp[] = new double[j-i +1]; System.arraycopy(array, i, tmp, 0, j-i+1); final Array con = new Array(tmp, flags); final int offset = con.begin(); final int pos = con.lowerBound(1); if (pos != 4 - i + offset) { fail(MESSAGE); } } }