193 lines
5.3 KiB
C
193 lines
5.3 KiB
C
|
/*=============================================================================
|
||
|
|
||
|
This file is part of FLINT.
|
||
|
|
||
|
FLINT 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.
|
||
|
|
||
|
FLINT 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 FLINT; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
|
||
|
=============================================================================*/
|
||
|
/******************************************************************************
|
||
|
|
||
|
Copyright (C) 2010-2012 Fredrik Johansson
|
||
|
|
||
|
******************************************************************************/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <gmp.h>
|
||
|
#include "flint.h"
|
||
|
#include "fmpz.h"
|
||
|
#include "fmpz_vec.h"
|
||
|
#include "fmpz_mat.h"
|
||
|
#include "perm.h"
|
||
|
#include "ulong_extras.h"
|
||
|
|
||
|
/* checks that the rref has the right form */
|
||
|
int check_rref(const fmpz_mat_t A, const fmpz_t den, slong rank)
|
||
|
{
|
||
|
slong i, j, k, prev_pivot;
|
||
|
|
||
|
/* bottom should be zero */
|
||
|
for (i = rank; i < A->r; i++)
|
||
|
for (j = 0; j < A->c; j++)
|
||
|
if (!fmpz_is_zero(fmpz_mat_entry(A, i, j)))
|
||
|
return 0;
|
||
|
|
||
|
prev_pivot = -1;
|
||
|
|
||
|
for (i = 0; i < rank; i++)
|
||
|
{
|
||
|
for (j = 0; j < A->c; j++)
|
||
|
{
|
||
|
if (!fmpz_is_zero(fmpz_mat_entry(A, i, j)))
|
||
|
{
|
||
|
/* pivot should have a higher column index than previous */
|
||
|
if (j <= prev_pivot)
|
||
|
return 0;
|
||
|
|
||
|
/* column should be 0 ... 0 1 0 ... 0 */
|
||
|
for (k = 0; k < rank; k++)
|
||
|
{
|
||
|
if (i == k && !fmpz_equal(fmpz_mat_entry(A, k, j), den))
|
||
|
return 0;
|
||
|
if (i != k && !fmpz_is_zero(fmpz_mat_entry(A, k, j)))
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
prev_pivot = j;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
slong iter;
|
||
|
FLINT_TEST_INIT(state);
|
||
|
|
||
|
flint_printf("rref....");
|
||
|
fflush(stdout);
|
||
|
|
||
|
|
||
|
|
||
|
for (iter = 0; iter < 10000 * flint_test_multiplier(); iter++)
|
||
|
{
|
||
|
fmpz_mat_t A, R, B, R2;
|
||
|
fmpz_t den, c, den2;
|
||
|
slong j, k, m, n, b, d, r, rank1, rank2;
|
||
|
slong *perm;
|
||
|
int equal;
|
||
|
|
||
|
m = n_randint(state, 10);
|
||
|
n = n_randint(state, 10);
|
||
|
r = n_randint(state, FLINT_MIN(m, n) + 1);
|
||
|
|
||
|
fmpz_mat_init(A, m, n);
|
||
|
fmpz_mat_init(R, m, n);
|
||
|
fmpz_mat_init(B, 2 * m, n);
|
||
|
fmpz_mat_init(R2, 2 * m, n);
|
||
|
|
||
|
fmpz_init(c);
|
||
|
fmpz_init(den);
|
||
|
fmpz_init(den2);
|
||
|
|
||
|
perm = _perm_init(2 * m);
|
||
|
|
||
|
/* sparse */
|
||
|
b = 1 + n_randint(state, 10) * n_randint(state, 10);
|
||
|
d = n_randint(state, 2*m*n + 1);
|
||
|
fmpz_mat_randrank(A, state, r, b);
|
||
|
|
||
|
/* dense */
|
||
|
if (n_randint(state, 2))
|
||
|
fmpz_mat_randops(A, state, d);
|
||
|
|
||
|
rank1 = fmpz_mat_rref(R, den, A);
|
||
|
|
||
|
if (r != rank1)
|
||
|
{
|
||
|
flint_printf("FAIL:\n");
|
||
|
flint_printf("wrong rank!\n");
|
||
|
abort();
|
||
|
}
|
||
|
|
||
|
check_rref(R, den, rank1);
|
||
|
|
||
|
/* Concatenate the original matrix with the rref, scramble the rows,
|
||
|
and check that the rref is the same */
|
||
|
_perm_randtest(perm, 2 * m, state);
|
||
|
|
||
|
for (j = 0; j < m; j++)
|
||
|
{
|
||
|
fmpz_randtest_not_zero(c, state, 5);
|
||
|
for (k = 0; k < n; k++)
|
||
|
fmpz_mul(fmpz_mat_entry(B, perm[j], k), fmpz_mat_entry(A, j, k), c);
|
||
|
}
|
||
|
|
||
|
for (j = 0; j < m; j++)
|
||
|
{
|
||
|
fmpz_randtest_not_zero(c, state, 5);
|
||
|
for (k = 0; k < n; k++)
|
||
|
fmpz_mul(fmpz_mat_entry(B, perm[m + j], k), fmpz_mat_entry(R, j, k), c);
|
||
|
}
|
||
|
|
||
|
rank2 = fmpz_mat_rref(R2, den2, B);
|
||
|
equal = (rank1 == rank2);
|
||
|
|
||
|
if (equal)
|
||
|
{
|
||
|
fmpz_mat_scalar_mul_fmpz(R, R, den2);
|
||
|
fmpz_mat_scalar_mul_fmpz(R2, R2, den);
|
||
|
|
||
|
for (j = 0; j < rank2; j++)
|
||
|
for (k = 0; k < n; k++)
|
||
|
equal = equal &&
|
||
|
fmpz_equal(fmpz_mat_entry(R, j, k), fmpz_mat_entry(R2, j, k));
|
||
|
for (j = rank2; j < 2 * rank2; j++)
|
||
|
for (k = 0; k < n; k++)
|
||
|
equal = equal && fmpz_is_zero(fmpz_mat_entry(R2, j, k));
|
||
|
}
|
||
|
|
||
|
if (!equal)
|
||
|
{
|
||
|
flint_printf("FAIL (rank1 = %wd, rank2 = %wd)!\n", rank1, rank2);
|
||
|
fmpz_mat_print_pretty(A); flint_printf("\n\n");
|
||
|
fmpz_mat_print_pretty(R); flint_printf("\n\n");
|
||
|
fmpz_mat_print_pretty(R2); flint_printf("\n\n");
|
||
|
abort();
|
||
|
}
|
||
|
|
||
|
fmpz_clear(c);
|
||
|
fmpz_clear(den);
|
||
|
fmpz_clear(den2);
|
||
|
|
||
|
_perm_clear(perm);
|
||
|
|
||
|
fmpz_mat_clear(A);
|
||
|
fmpz_mat_clear(R);
|
||
|
fmpz_mat_clear(B);
|
||
|
fmpz_mat_clear(R2);
|
||
|
}
|
||
|
|
||
|
FLINT_TEST_CLEANUP(state);
|
||
|
|
||
|
flint_printf("PASS\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|