mirror of
https://github.com/vale981/arb
synced 2025-03-06 01:41:39 -05:00
149 lines
5.2 KiB
C
149 lines
5.2 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) 2012 Fredrik Johansson
|
|
|
|
******************************************************************************/
|
|
|
|
#include "acb_mat.h"
|
|
|
|
int main()
|
|
{
|
|
slong iter;
|
|
flint_rand_t state;
|
|
|
|
flint_printf("solve....");
|
|
fflush(stdout);
|
|
|
|
flint_randinit(state);
|
|
|
|
for (iter = 0; iter < 10000; iter++)
|
|
{
|
|
fmpq_mat_t Q, QX, QB;
|
|
acb_mat_t A, X, B;
|
|
slong n, m, qbits, prec;
|
|
int q_invertible, r_invertible, r_invertible2;
|
|
|
|
n = n_randint(state, 8);
|
|
m = n_randint(state, 8);
|
|
qbits = 1 + n_randint(state, 30);
|
|
prec = 2 + n_randint(state, 200);
|
|
|
|
fmpq_mat_init(Q, n, n);
|
|
fmpq_mat_init(QX, n, m);
|
|
fmpq_mat_init(QB, n, m);
|
|
|
|
acb_mat_init(A, n, n);
|
|
acb_mat_init(X, n, m);
|
|
acb_mat_init(B, n, m);
|
|
|
|
fmpq_mat_randtest(Q, state, qbits);
|
|
fmpq_mat_randtest(QB, state, qbits);
|
|
|
|
q_invertible = fmpq_mat_solve_fraction_free(QX, Q, QB);
|
|
|
|
if (!q_invertible)
|
|
{
|
|
acb_mat_set_fmpq_mat(A, Q, prec);
|
|
r_invertible = acb_mat_solve(X, A, B, prec);
|
|
if (r_invertible)
|
|
{
|
|
flint_printf("FAIL: matrix is singular over Q but not over R\n");
|
|
flint_printf("n = %wd, prec = %wd\n", n, prec);
|
|
flint_printf("\n");
|
|
|
|
flint_printf("Q = \n"); fmpq_mat_print(Q); flint_printf("\n\n");
|
|
flint_printf("QX = \n"); fmpq_mat_print(QX); flint_printf("\n\n");
|
|
flint_printf("QB = \n"); fmpq_mat_print(QB); flint_printf("\n\n");
|
|
flint_printf("A = \n"); acb_mat_printd(A, 15); flint_printf("\n\n");
|
|
abort();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* now this must converge */
|
|
while (1)
|
|
{
|
|
acb_mat_set_fmpq_mat(A, Q, prec);
|
|
acb_mat_set_fmpq_mat(B, QB, prec);
|
|
|
|
r_invertible = acb_mat_solve(X, A, B, prec);
|
|
if (r_invertible)
|
|
{
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
if (prec > 10000)
|
|
{
|
|
flint_printf("FAIL: failed to converge at 10000 bits\n");
|
|
flint_printf("Q = \n"); fmpq_mat_print(Q); flint_printf("\n\n");
|
|
flint_printf("QX = \n"); fmpq_mat_print(QX); flint_printf("\n\n");
|
|
flint_printf("QB = \n"); fmpq_mat_print(QB); flint_printf("\n\n");
|
|
flint_printf("A = \n"); acb_mat_printd(A, 15); flint_printf("\n\n");
|
|
abort();
|
|
}
|
|
prec *= 2;
|
|
}
|
|
}
|
|
|
|
if (!acb_mat_contains_fmpq_mat(X, QX))
|
|
{
|
|
flint_printf("FAIL (containment, iter = %wd)\n", iter);
|
|
flint_printf("n = %wd, prec = %wd\n", n, prec);
|
|
flint_printf("\n");
|
|
|
|
flint_printf("Q = \n"); fmpq_mat_print(Q); flint_printf("\n\n");
|
|
flint_printf("QB = \n"); fmpq_mat_print(QB); flint_printf("\n\n");
|
|
flint_printf("QX = \n"); fmpq_mat_print(QX); flint_printf("\n\n");
|
|
|
|
flint_printf("A = \n"); acb_mat_printd(A, 15); flint_printf("\n\n");
|
|
flint_printf("B = \n"); acb_mat_printd(B, 15); flint_printf("\n\n");
|
|
flint_printf("X = \n"); acb_mat_printd(X, 15); flint_printf("\n\n");
|
|
|
|
abort();
|
|
}
|
|
|
|
/* test aliasing */
|
|
r_invertible2 = acb_mat_solve(B, A, B, prec);
|
|
if (!acb_mat_equal(X, B) || r_invertible != r_invertible2)
|
|
{
|
|
flint_printf("FAIL (aliasing)\n");
|
|
flint_printf("A = \n"); acb_mat_printd(A, 15); flint_printf("\n\n");
|
|
flint_printf("B = \n"); acb_mat_printd(B, 15); flint_printf("\n\n");
|
|
flint_printf("X = \n"); acb_mat_printd(X, 15); flint_printf("\n\n");
|
|
abort();
|
|
}
|
|
}
|
|
|
|
fmpq_mat_clear(Q);
|
|
fmpq_mat_clear(QB);
|
|
fmpq_mat_clear(QX);
|
|
acb_mat_clear(A);
|
|
acb_mat_clear(B);
|
|
acb_mat_clear(X);
|
|
}
|
|
|
|
flint_randclear(state);
|
|
flint_cleanup();
|
|
flint_printf("PASS\n");
|
|
return EXIT_SUCCESS;
|
|
}
|