1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
/* Copyright (C) 2009 LinBox
* Written by Brice Boyer (briceboyer) <boyer.brice@gmail.com>
* Inspired and adapted from test-ffpack.C
*
* ========LICENCE========
* This file is part of the library LinBox.
*
* LinBox is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* ========LICENCE========
*
* Function definitions for block Lanczos iteration
*/
/** \file tests/test-nullspace.C
* \brief Tests the dense nullspace functions for Zp
* @ingroup tests
* @test dense nullspace
* @todo test non dense nullspace
* @todo test for submatrices
* @todo make sure this is faster than FFPACK ?
*/
#include "linbox/linbox-config.h"
#include <iostream>
#include "linbox/integer.h"
#include "linbox/matrix/matrix-domain.h"
//#include "linbox/field/givaro-zpz.h"
#include "linbox/ring/modular.h"
//#include "fflas-ffpack/ffpack/ffpack.h"
#include "linbox/algorithms/dense-nullspace.h"
#include "./test-common.h"
#include "fflas-ffpack/utils/Matio.h"
#include "linbox/linbox-tags.h"
#include "test-matrix-utils.h"
using namespace LinBox;
/*!
* @brief Tests the NullSpace routines.
* @param F field
* @param m row
* @param n col
* @param rank \p n-rank is the size of the NullSpace
* @param iterations number of its
* @param a_droite \p true if.. \p false if on the left
* @return \p true hopefully if test's passed!
*/
template <class Field >
static bool testNullSpaceBasis (const Field& F, size_t m, size_t n, size_t rank, int iterations, bool a_droite)
{
//Commentator commentator;
//commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDepth (3);
//commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDetailLevel (Commentator::LEVEL_NORMAL);
commentator().start ("Testing NullSpace Decomposition","testNullSpace",(unsigned int)iterations);
bool ret = true;
{
size_t min = std::min(m,n);
if (rank > min ) {
rank = min; // rank <= min(m,n)...
}
}
for (int k=0; k<iterations; ++k) {
commentator().progress(k);
BlasMatrix<Field> A(F,m,n+5);
BlasMatrix<Field> Aref(A,0,0,m,n);
RandomMatrixWithRank(F,A.getPointer(),m,n,n+5,rank);
//tests on a submatrix (more general/prone to errors)
BlasSubmatrix<BlasMatrix<Field> > Abis(A,0,0,m,n);
BlasMatrix<Field> Kern(F);
size_t ker_dim;
if (a_droite) {
NullSpaceBasis (Tag::Side::Right,Abis,Kern,ker_dim);
if (ker_dim != (Abis.coldim() - rank)) {
ret = false;
cout << "wrong: (1) bad dim : " << ker_dim << " != " << (Abis.coldim() - rank) << endl;
break ;
}
}
else {
NullSpaceBasis ( Tag::Side::Left,Abis,Kern,ker_dim);
if (ker_dim != (Abis.rowdim() - rank) ) {
ret = false;
cout << "wrong : (1) bad dim " << ker_dim << " != " << (Abis.rowdim() - rank) << endl;
break ;
}
}
assert(CheckRank(F,Kern,ker_dim));
BlasMatrix<Field> NullMat(F,(a_droite)?m:ker_dim,(a_droite)?ker_dim:n);
BlasMatrixDomain<Field> BMD(F);
if ( a_droite){
BMD.mul(NullMat,Aref,Kern);
}
else{
BMD.mul(NullMat,Kern,Aref);
}
if (!BMD.isZero(NullMat)) {
std::cout << "wrong (3) NullMat non zero :" << NullMat << std::endl;
ret = false;
break;
}
}
commentator().stop(MSG_STATUS (ret), (const char *) 0, "testNullSpace");
return ret;
}
int main(int argc, char** argv)
{
//-----------------------------------------------------------------------
// Choice of the finite field representation
//typedef Givaro::Modular<int32_t> Field;
typedef Givaro::Modular<double> Field;
//typedef Givaro::Modular<float> Field;
//typedef Givaro::Modular<uint32_t> Field;
//------------------------------------------------------------------------
bool pass = true;
static size_t n = 15;
static size_t m = 8;
static size_t r = 3;
static integer q = 101;
static int iterations =4;
static Argument args[] = {
{ 'n', "-n N", "Set width of test matrices.", TYPE_INT, &n },
{ 'm', "-m M", "Set hight of test matrices.", TYPE_INT, &m },
{ 'r', "-r R", "Set rank of test matrices.", TYPE_INT, &r },
{ 'q', "-q Q", "Operate over the \"field\" GF(Q) [1].", TYPE_INTEGER, &q },
{ 'i', "-i I", "Perform each test for I iterations.", TYPE_INT, &iterations },
END_OF_ARGUMENTS
};
parseArguments (argc, argv, args);
Field F (q);
//srand(time (NULL));
//commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDepth (3);
//commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDetailLevel (Commentator::LEVEL_NORMAL);
commentator().start("NullSpace test suite", "nullspace");
std::ostream& report = commentator().report();
TESTE("left kernel");
if (!testNullSpaceBasis (F, m,n,r, iterations, false))
pass=false;
RAPPORT("left kernel");
TESTE("left kernel");
if (!testNullSpaceBasis (F, n,m,r, iterations, false))
pass=false;
RAPPORT("left kernel");
TESTE("left kernel");
if (!testNullSpaceBasis (F, m,n,0, iterations, false))
pass=false;
RAPPORT("left kernel");
TESTE("left kernel");
if (!testNullSpaceBasis (F, n,m,0, iterations, false))
pass=false;
RAPPORT("left kernel");
TESTE("left kernel");
if (!testNullSpaceBasis (F, m,n,std::min(m,n), iterations, false))
pass=false;
RAPPORT("left kernel");
TESTE("right kernel");
if (!testNullSpaceBasis (F, m,n,r, iterations, true))
pass=false;
RAPPORT("right kernel");
TESTE("right kernel");
if (!testNullSpaceBasis (F, n,m,r, iterations, true))
pass=false;
RAPPORT("right kernel");
TESTE("right kernel");
if (!testNullSpaceBasis (F, m,n,0, iterations, true))
pass=false;
RAPPORT("right kernel");
TESTE("right kernel");
if (!testNullSpaceBasis (F, n,m,0, iterations, true))
pass=false;
RAPPORT("right kernel");
TESTE("right kernel");
if (!testNullSpaceBasis (F, n,m,std::min(m,n), iterations, true))
pass=false;
RAPPORT("right kernel");
// if we are here, no RAPPORT exited
report << "\033[1;32m +++ ALL MY TESTS PASSED +++\033[0;m" << endl;
commentator().stop(MSG_STATUS (pass),"NullSpace test suite");
return (pass ? 0 : -1);
}
// Local Variables:
// mode: C++
// tab-width: 4
// indent-tabs-mode: nil
// c-basic-offset: 4
// End:
// vim:sts=4:sw=4:ts=4:et:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
|