Home | History | Annotate | Download | only in text

Lines Matching defs:choiceLimits

251         choiceLimits = new double[count];
252 System.arraycopy(newChoiceLimits, 0, choiceLimits, 0, count);
264 for (int i = 0; i < choiceLimits.length; ++i) {
271 double less = previousDouble(choiceLimits[i]);
272 double tryLessOrEqual = Math.abs(Math.IEEEremainder(choiceLimits[i], 1.0d));
276 result.append(""+choiceLimits[i]);
279 if (choiceLimits[i] == Double.POSITIVE_INFINITY) {
281 } else if (choiceLimits[i] == Double.NEGATIVE_INFINITY) {
349 choiceLimits = Arrays.copyOf(limits, limits.length);
359 double[] newLimits = Arrays.copyOf(choiceLimits, choiceLimits.length);
397 for (i = 0; i < choiceLimits.length; ++i) {
398 if (!(number >= choiceLimits[i])) {
399 // same as number < choiceLimits, except catchs NaN
431 tempNumber = choiceLimits[i];
478 other.choiceLimits = choiceLimits.clone();
487 int result = choiceLimits.length;
505 return (Arrays.equals(choiceLimits, other.choiceLimits)
516 if (choiceLimits.length != choiceFormats.length) {
527 * <code>choiceLimits[i]</code> and less than <code>choiceLimits[i+1]</code>.
530 private double[] choiceLimits;
535 * <code>choiceLimits[i]</code> and less than <code>choiceLimits[i+1]</code>.