commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/DD.java [1174:1184]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (n == 0) {
            f.set(0.5, 0);
            return 1;
        }
        // IEEE result for non-finite or zero
        if (!Double.isFinite(x) || x == 0) {
            f.set(Math.pow(x, n), 0);
            return 0;
        }
        // Here the number is non-zero finite
        assert x == x + xx : NOT_NOMALIZED;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/DD.java [1338:1348]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (n == 0) {
            f.set(0.5, 0);
            return 1;
        }
        // IEEE result for non-finite or zero
        if (!Double.isFinite(x) || x == 0) {
            f.set(Math.pow(x, n), 0);
            return 0;
        }
        // Here the number is non-zero finite
        assert x == x + xx : NOT_NOMALIZED;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



