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
|
/* Random kit 1.6 */
/*
* Generate a list of binary primitive polynomials.
*/
/*
* Copyright (c) 2005-2006, Jean-Sebastien Roy (js@jeannot.org)
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
static char const rcsid[] =
"@(#) $Jeannot: list_primitive.c,v 1.7 2006/02/19 13:48:34 js Exp $";
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#ifdef WIN32
/* On Windows, you must compile and link with getopt.c */
#include "getopt.h"
#else
#include <unistd.h>
#endif
#include "randomkit.h"
static void usage()
{
fprintf(stderr,
"Usage: list_primitive [-c] [-o] [-d D] N\n"
"Generate a list of binary primitive polynomials.\n"
" -c: output a zero terminated list as a C source\n"
" -o: generates polynonials out of order (~2x faster)\n"
" WARNING: if used with sobol_init, will not match the direction\n"
" numbers provided by sobol_*directions.\n"
" -d: set the maximum degree of the polynomials to D.\n"
" N: maximum number of polynomials to find.\n");
exit(EXIT_FAILURE);
}
int main(int argc, char *argv[])
{
unsigned long polynomial = 0, ooorder = 0, count;
int csource = 0, ch, line = -1, maxdegree = -1;
while ((ch = getopt(argc, argv, "cod:")) != -1)
{
switch (ch)
{
case 'c':
csource = 1;
break;
case 'o':
ooorder = 1;
break;
case 'd':
maxdegree = strtoul(optarg, NULL, 10);
break;
default:
usage();
}
}
argc -= optind;
argv += optind;
if (argc != 1)
usage();
count = strtoul(argv[0], NULL, 10);
if (csource)
{
if (maxdegree >=0)
printf("const unsigned long primitive_polynomials_%lu_%d[] = {\n", count,
maxdegree);
else
printf("const unsigned long primitive_polynomials_%lu[] = {\n", count);
}
for (polynomial = 1UL; count && polynomial < ULONG_MAX; polynomial += 2)
{
unsigned long rev = 0;
if (maxdegree >=0)
{
unsigned long temp = polynomial >> 1;
int degree = 0;
/* Compute the degree */
for (; temp; degree++, temp >>= 1);
if (degree > maxdegree)
break;
}
if (ooorder)
{
/* Reversing the bits of a primitive polynomial give another p.p. */
unsigned long copy = polynomial;
for (; copy; copy >>= 1)
rev = (rev << 1) | (copy & 1);
if (rev < polynomial)
continue;
}
if (rk_isprimitive(polynomial))
{
count--;
if (csource)
{
if (line > -1)
{
printf(",");
if (line == 0)
printf("\n ");
}
else
line = 0;
line += printf(" 0x%lXUL", polynomial);
if (line >= (78-21))
line = 0;
}
else
printf("%lu\n", polynomial);
if (count && ooorder && rev != polynomial)
{
count--;
if (csource)
{
if (line > -1)
{
printf(",");
if (line == 0)
printf("\n ");
}
else
line = 0;
line += printf(" 0x%lXUL", rev);
if (line >= (78-21))
line = 0;
}
else
printf("%lu\n", rev);
}
}
}
if (csource)
{
if (line > -1)
printf(",");
printf("\n 0UL\n};\n");
}
return 0;
}
|