arb/arb_mat/test/t-transpose.c

72 lines
1.7 KiB
C
Raw Normal View History

/*
2015-10-02 09:46:02 +02:00
Copyright (C) 2015 Fredrik Johansson
This file is part of Arb.
Arb is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See <http://www.gnu.org/licenses/>.
*/
2015-10-02 09:46:02 +02:00
#include "arb_mat.h"
int main()
{
slong iter;
2015-10-02 09:46:02 +02:00
flint_rand_t state;
flint_printf("transpose....");
2015-10-02 09:46:02 +02:00
fflush(stdout);
flint_randinit(state);
for (iter = 0; iter < 10000 * arb_test_multiplier(); iter++)
2015-10-02 09:46:02 +02:00
{
slong m, n;
2015-10-02 09:46:02 +02:00
arb_mat_t a, b, c;
m = n_randint(state, 10);
n = n_randint(state, 10);
arb_mat_init(a, m, n);
arb_mat_init(b, n, m);
arb_mat_init(c, m, n);
arb_mat_randtest(a, state, 2 + n_randint(state, 100), 10);
arb_mat_randtest(b, state, 2 + n_randint(state, 100), 10);
arb_mat_randtest(c, state, 2 + n_randint(state, 100), 10);
arb_mat_transpose(b, a);
arb_mat_transpose(c, b);
if (!arb_mat_equal(c, a))
{
flint_printf("FAIL\n\n");
flint_printf("m = %wd, n = %wd\n", m, n);
flint_abort();
2015-10-02 09:46:02 +02:00
}
if (arb_mat_nrows(a) == arb_mat_ncols(a))
{
arb_mat_transpose(c, a);
arb_mat_transpose(a, a);
if (!arb_mat_equal(a, c))
{
flint_printf("FAIL (aliasing)\n\n");
flint_abort();
2015-10-02 09:46:02 +02:00
}
}
arb_mat_clear(a);
arb_mat_clear(b);
arb_mat_clear(c);
}
flint_randclear(state);
flint_cleanup();
flint_printf("PASS\n");
2015-10-02 09:46:02 +02:00
return EXIT_SUCCESS;
}