mirror of
https://github.com/vale981/arb
synced 2025-03-06 09:51:39 -05:00
91 lines
2.5 KiB
C
91 lines
2.5 KiB
C
/*=============================================================================
|
|
|
|
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) 2013 Fredrik Johansson
|
|
|
|
******************************************************************************/
|
|
|
|
#include "arb_poly.h"
|
|
|
|
int main()
|
|
{
|
|
long iter;
|
|
flint_rand_t state;
|
|
|
|
printf("borel_transform....");
|
|
fflush(stdout);
|
|
|
|
flint_randinit(state);
|
|
|
|
for (iter = 0; iter < 10000; iter++)
|
|
{
|
|
arb_poly_t a, b, c, d;
|
|
long n, prec;
|
|
|
|
arb_poly_init(a);
|
|
arb_poly_init(b);
|
|
arb_poly_init(c);
|
|
arb_poly_init(d);
|
|
|
|
n = n_randint(state, 30);
|
|
prec = n_randint(state, 200);
|
|
|
|
arb_poly_randtest(a, state, n, prec, 10);
|
|
arb_poly_randtest(b, state, n, prec, 10);
|
|
arb_poly_randtest(c, state, n, prec, 10);
|
|
|
|
arb_poly_borel_transform(b, a, prec);
|
|
arb_poly_inv_borel_transform(c, b, prec);
|
|
|
|
if (!arb_poly_contains(c, a))
|
|
{
|
|
printf("FAIL (containment)\n\n");
|
|
abort();
|
|
}
|
|
|
|
arb_poly_set(d, a);
|
|
arb_poly_borel_transform(d, d, prec);
|
|
if (!arb_poly_equal(d, b))
|
|
{
|
|
printf("FAIL (aliasing 1)\n\n");
|
|
abort();
|
|
}
|
|
|
|
arb_poly_set(d, b);
|
|
arb_poly_inv_borel_transform(d, d, prec);
|
|
if (!arb_poly_equal(d, c))
|
|
{
|
|
printf("FAIL (aliasing 2)\n\n");
|
|
abort();
|
|
}
|
|
|
|
arb_poly_clear(a);
|
|
arb_poly_clear(b);
|
|
arb_poly_clear(c);
|
|
arb_poly_clear(d);
|
|
}
|
|
|
|
flint_randclear(state);
|
|
flint_cleanup();
|
|
printf("PASS\n");
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|