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
|
/* tests/test-modular.C
* Copyright (C) 2001, 2002 Bradford Hovinen,
* Copyright (C) 2002 Dave Saunders
*
* Written by Bradford Hovinen <hovinen@cis.udel.edu>,
* Dave Saunders <saunders@cis.udel.edu>
*
* ------------------------------------
* 2002-04-10 Bradford Hovinen <hovinen@cis.udel.edu>
*
* Rename from test-large-modular.C to test-modular.C; made other updates in
* accordance with changes to Givaro::Modular interace.
* ------------------------------------
*
*
* ========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-modular.C
* @ingroup tests
*
* @brief runFieldTests on various <code>Givaro::Modular<XXX></code> fields.
* @test runFieldTests on various <code>Givaro::Modular<XXX></code> fields.
*/
#include "linbox/linbox-config.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <queue>
#include "linbox/ring/modular.h"
#include "test-common.h"
#include "test-field.h"
using namespace LinBox;
using namespace std;
int main (int argc, char **argv)
{
static integer q1("18446744073709551557");
static integer q2 = 65521U;
static integer q3 = 65521U;
static int q4 = 101;
static size_t n = 500;
static unsigned int iterations = 1;
static unsigned int trials = 10000;
static unsigned int categories = 1000;
static unsigned int hist_level = 10;
static Argument args[] = {
{ 'K', "-K Q", "Operate over the \"field\" GF(Q) [1] for integer modulus.", TYPE_INTEGER, &q1 },
{ 'Q', "-Q Q", "Operate over the \"field\" GF(Q) [1] for uint32_t modulus.", TYPE_INTEGER, &q2 },
{ 'q', "-q Q", "Operate over the \"field\" GF(Q) [1] for uint16_t modulus.", TYPE_INTEGER, &q3 },
{ 'p', "-p P", "Operate over the \"field\" GF(Q) [1] for uint8_t modulus.", TYPE_INT, &q4 },
{ 'n', "-n N", "Set dimension of test vectors to NxN.", TYPE_INT, &n },
{ 'i', "-i I", "Perform each test for I iterations.", TYPE_INT, &iterations },
{ 't', "-t T", "Number of trials for the random iterator test.", TYPE_INT, &trials },
{ 'c', "-c C", "Number of categories for the random iterator test.", TYPE_INT, &categories },
{ 'H', "-H H", "History level for random iterator test.", TYPE_INT, &hist_level },
END_OF_ARGUMENTS
};
parseArguments (argc, argv, args);
commentator().start("Givaro::Modular test suite", "Givaro::Modular ");
bool pass = true;
Givaro::Modular<integer> F_integer (q1);
Givaro::Modular<uint32_t> F_uint32_t ((uint32_t) q2);
Givaro::Modular<uint16_t> F_uint16_t ((uint16_t) q3);
Givaro::Modular<uint8_t> F_uint8_t ((uint8_t) q4);
Givaro::Modular<float> F_float ((float) q4);
// Make sure some more detailed messages get printed
commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDepth (4);
commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDetailLevel (Commentator::LEVEL_UNIMPORTANT);
if (!runFieldTests (F_integer,"Givaro::Modular<integer>", iterations, n, false)) pass = false;
if (!runFieldTests (F_uint32_t, "Givaro::Modular<uint32_t>", iterations, n, false)) pass = false;
if (!runFieldTests (F_uint16_t, "Givaro::Modular<uint16_t>", iterations, n, false)) pass = false;
if (!runFieldTests (F_uint8_t, "Givaro::Modular<uint8_t>", iterations, n, false)) pass = false;
if (!runFieldTests (F_float, "Givaro::Modular<float>", iterations, n, false)) pass = false;
if (!testRandomIterator (F_integer, "Givaro::Modular<integer>", trials, categories, hist_level)) pass = false;
if (!testRandomIterator (F_uint32_t, "Givaro::Modular<uint32_t>", trials, categories, hist_level)) pass = false;
if (!testRandomIterator (F_uint16_t, "Givaro::Modular<uint16_t>", trials, categories, hist_level)) pass = false;
if (!testRandomIterator (F_uint8_t, "Givaro::Modular<uint8_t>", trials, categories, hist_level)) pass = false;
commentator().stop(MSG_STATUS (pass), "Givaro::Modular 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
|