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
|
/* Copyright (C) LinBox
*
* Copyright (C) 2007 b d saunders
*
*
* ========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========
*/
/*! @file tests/test-block-ring.C
* @ingroup tests
* @brief no doc
* @test NO DOC
*/
#include "linbox/linbox-config.h"
#include <iostream>
#include <fstream>
#include "linbox/ring/modular.h"
#include "linbox/field/block-ring.h"
#include "test-common.h"
#include "test-field.h"
using namespace LinBox;
int main (int argc, char **argv)
{
static size_t n = 10;
static integer q = 10733;
static int iterations = 2;
static Argument args[] = {
{ 'n', "-n N", "Set dimension of blocks to N.", TYPE_INT, &n },
{ '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);
commentator().start("block-ring test suite", "block-ring");
bool pass = true;
typedef Givaro::Modular<int> Field1;
typedef Givaro::Modular<double> Field2;
Field1 F1(q, 1);
BlockRing<Field1> R1(F1, n);
Field2 F2(q, 1);
BlockRing<Field2> R2(F2, n);
// Make sure some more detailed messages get printed
//commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDepth (3);
commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDepth (4);
commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDetailLevel (Commentator::LEVEL_UNIMPORTANT);
if (!runBasicRingTests(R1, "BlockRing of Givaro::Modular<int>", (unsigned int)iterations)) pass = false;
if (!runBasicRingTests(R2, "BlockRing of Givaro::Modular<double>", (unsigned int)iterations)) pass = false;
commentator().stop("block-ring 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
|