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
|
/* spect.c -- the spectral test */
/*
Copyright 1999 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
The GNU MP Library 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 3 of the License, or (at your
option) any later version.
The GNU MP 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 the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
/* T is upper dimension. Z_A is the LC multiplier, which is
relatively prime to Z_M, the LC modulus. The result is put in
rop[] with v[t] in rop[t-2]. */
/* BUGS: Due to lazy allocation scheme, maximum T is hard coded to MAXT. */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#include "gmp.h"
#include "gmpstat.h"
int g_debug = 0;
int
main (int argc, char *argv[])
{
const char usage[] = "usage: spect [-d] a m n\n";
int c;
unsigned int n;
mpz_t a, m;
mpf_t res[GMP_SPECT_MAXT], res_min[GMP_SPECT_MAXT], f_tmp;
register int f;
mpz_init (a);
mpz_init (m);
for (f = 0; f < GMP_SPECT_MAXT; f++)
{
mpf_init (res[f]);
mpf_init (res_min[f]);
}
mpf_init (f_tmp);
mpf_set_ui (res_min[0], 32768); /* 2^15 */
mpf_set_ui (res_min[1], 1024); /* 2^10 */
mpf_set_ui (res_min[2], 256); /* 2^8 */
mpf_set_ui (res_min[3], 64); /* 2^6 */
mpf_set_ui (res_min[4], 32); /* 2^5 */
while ((c = getopt (argc, argv, "dh")) != -1)
switch (c)
{
case 'd': /* debug */
g_debug++;
break;
case 'h':
default:
fputs (usage, stderr);
exit (1);
}
argc -= optind;
argv += optind;
if (argc < 3)
{
fputs (usage, stderr);
exit (1);
}
mpz_set_str (a, argv[0], 0);
mpz_set_str (m, argv[1], 0);
n = (unsigned int) atoi (argv[2]);
if (n + 1 > GMP_SPECT_MAXT)
n = GMP_SPECT_MAXT + 1;
spectral_test (res, n, a, m);
for (f = 0; f < n - 1; f++)
{
/* print v */
printf ("%d: v = ", f + 2);
mpf_out_str (stdout, 10, 4, res[f]);
#ifdef PRINT_RAISED_BY_TWO_AS_WELL
printf (" (^2 = ");
mpf_mul (f_tmp, res[f], res[f]);
mpf_out_str (stdout, 10, 4, f_tmp);
printf (")");
#endif /* PRINT_RAISED_BY_TWO_AS_WELL */
/* print merit */
printf (" m = ");
merit (f_tmp, f + 2, res[f], m);
mpf_out_str (stdout, 10, 4, f_tmp);
if (mpf_cmp (res[f], res_min[f]) < 0)
printf ("\t*** v too low ***");
if (mpf_get_d (f_tmp) < .1)
printf ("\t*** merit too low ***");
puts ("");
}
mpz_clear (a);
mpz_clear (m);
for (f = 0; f < GMP_SPECT_MAXT; f++)
{
mpf_clear (res[f]);
mpf_clear (res_min[f]);
}
mpf_clear (f_tmp);
return 0;
}
void
debug_foo()
{
if (0)
{
mpz_dump (0);
mpf_dump (0);
}
}
|