/*============================================================================= This file is part of ARB. ARB is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. ARB is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ARB; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA =============================================================================*/ /****************************************************************************** Copyright (C) 2012 Fredrik Johansson ******************************************************************************/ #include "fmpr.h" int main() { long iter; flint_rand_t state; printf("sub...."); fflush(stdout); flint_randinit(state); /* test exact subtraction: (x - y) - z == (x - z) - y */ for (iter = 0; iter < 100000; iter++) { long bits, res1, res2, res3, res4; fmpr_t x, y, z, t, u; bits = 2 + n_randint(state, 200); fmpr_init(x); fmpr_init(y); fmpr_init(z); fmpr_init(t); fmpr_init(u); fmpr_randtest_special(x, state, bits, 10); fmpr_randtest_special(y, state, bits, 10); fmpr_randtest_special(z, state, bits, 10); fmpr_randtest_special(t, state, bits, 10); fmpr_randtest_special(u, state, bits, 10); res1 = fmpr_sub(t, x, y, FMPR_PREC_EXACT, FMPR_RND_DOWN); res2 = fmpr_sub(t, t, z, FMPR_PREC_EXACT, FMPR_RND_DOWN); res3 = fmpr_sub(u, x, z, FMPR_PREC_EXACT, FMPR_RND_DOWN); res4 = fmpr_sub(u, u, y, FMPR_PREC_EXACT, FMPR_RND_DOWN); if (!fmpr_equal(t, u) || res1 != FMPR_RESULT_EXACT || res2 != FMPR_RESULT_EXACT || res3 != FMPR_RESULT_EXACT || res4 != FMPR_RESULT_EXACT) { printf("FAIL\n\n"); printf("bits = %ld\n", bits); printf("x = "); fmpr_print(x); printf("\n\n"); printf("y = "); fmpr_print(y); printf("\n\n"); printf("z = "); fmpr_print(z); printf("\n\n"); printf("t = "); fmpr_print(t); printf("\n\n"); printf("u = "); fmpr_print(u); printf("\n\n"); abort(); } fmpr_clear(x); fmpr_clear(y); fmpr_clear(z); fmpr_clear(t); fmpr_clear(u); } /* compare rounding with mpfr */ for (iter = 0; iter < 100000; iter++) { long bits, res; int mpfr_res; fmpr_t x, y, z, w; mpfr_t X, Y, Z; bits = 2 + n_randint(state, 200); fmpr_init(x); fmpr_init(y); fmpr_init(z); fmpr_init(w); mpfr_init2(X, bits + 100); mpfr_init2(Y, bits + 100); mpfr_init2(Z, bits); fmpr_randtest_special(x, state, bits + n_randint(state, 100), 10); fmpr_randtest_special(y, state, bits + n_randint(state, 100), 10); fmpr_randtest_special(z, state, bits, 10); fmpr_get_mpfr(X, x, MPFR_RNDN); fmpr_get_mpfr(Y, y, MPFR_RNDN); switch (n_randint(state, 4)) { case 0: mpfr_res = mpfr_sub(Z, X, Y, MPFR_RNDZ); res = fmpr_sub(z, x, y, bits, FMPR_RND_DOWN); break; case 1: mpfr_res = mpfr_sub(Z, X, Y, MPFR_RNDA); res = fmpr_sub(z, x, y, bits, FMPR_RND_UP); break; case 2: mpfr_res = mpfr_sub(Z, X, Y, MPFR_RNDD); res = fmpr_sub(z, x, y, bits, FMPR_RND_FLOOR); break; default: mpfr_res = mpfr_sub(Z, X, Y, MPFR_RNDU); res = fmpr_sub(z, x, y, bits, FMPR_RND_CEIL); break; } fmpr_set_mpfr(w, Z); if (!fmpr_equal(z, w) || (res == FMPR_RESULT_EXACT) != (mpfr_res == 0)) { printf("FAIL\n\n"); printf("bits = %ld\n", bits); printf("x = "); fmpr_print(x); printf("\n\n"); printf("y = "); fmpr_print(y); printf("\n\n"); printf("z = "); fmpr_print(z); printf("\n\n"); printf("w = "); fmpr_print(w); printf("\n\n"); printf("returned: %ld, %d\n", res, mpfr_res); abort(); } /* check error bound */ if (!fmpr_is_nan(z) && !fmpr_is_inf(z)) { fmpr_t z_exact, error_bound, true_error; fmpr_init(z_exact); fmpr_init(error_bound); fmpr_init(true_error); fmpr_set_error_result(error_bound, z, res); fmpr_sub(z_exact, x, y, FMPR_PREC_EXACT, FMPR_RND_DOWN); fmpr_sub(true_error, z, z_exact, FMPR_PREC_EXACT, FMPR_RND_DOWN); fmpr_abs(true_error, true_error); if (fmpr_is_zero(error_bound) != fmpr_is_zero(true_error) || fmpr_cmp(true_error, error_bound) > 0) { printf("FAIL: error bound\n\n"); printf("bits = %ld\n", bits); printf("x = "); fmpr_print(x); printf("\n\n"); printf("y = "); fmpr_print(y); printf("\n\n"); printf("z = "); fmpr_print(z); printf("\n\n"); printf("z_exact = "); fmpr_print(z_exact); printf("\n\n"); printf("true_error = "); fmpr_print(true_error); printf("\n\n"); printf("error_bound = "); fmpr_print(error_bound); printf("\n\n"); abort(); } fmpr_clear(z_exact); fmpr_clear(error_bound); fmpr_clear(true_error); } fmpr_clear(x); fmpr_clear(y); fmpr_clear(z); fmpr_clear(w); mpfr_clear(X); mpfr_clear(Y); mpfr_clear(Z); } flint_randclear(state); _fmpz_cleanup(); printf("PASS\n"); return EXIT_SUCCESS; }