⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trandom.c

📁 a very popular packet of cryptography tools,it encloses the most common used algorithm and protocols
💻 C
字号:
/* Test file for the various mpfr_random fonctions.Copyright 1999, 2000, 2001, 2002 Free Software Foundation.This file is part of the MPFR Library.The MPFR Library is free software; you can redistribute it and/or modifyit under the terms of the GNU Lesser General Public License as published bythe Free Software Foundation; either version 2.1 of the License, or (at youroption) any later version.The MPFR Library is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITYor FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General PublicLicense for more details.You should have received a copy of the GNU Lesser General Public Licensealong with the MPFR Library; see the file COPYING.LIB.  If not, write tothe Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, USA. */#include <stdio.h>#include <stdlib.h>#include <math.h>#include <time.h>#include "gmp.h"#include "mpfr.h"#include "mpfr-impl.h"void test_random _PROTO ((unsigned long, unsigned long, int));void test_random2 _PROTO ((unsigned long, unsigned long, int));void test_urandomb _PROTO ((unsigned long, unsigned long, int));voidtest_random (unsigned long nbtests, unsigned long prec, int verbose){  mpfr_t x;   int *tab, size_tab, k;   double d, av = 0, var = 0, chi2 = 0, th;   mpfr_init2(x, prec);   size_tab = (nbtests < 1000 ? nbtests / 50 : 20);   tab = (int *) malloc (size_tab * sizeof(int));   for (k = 0; k < size_tab; ++k) tab[k] = 0;   for (k = 0; k < nbtests; k++) {    mpfr_random(x);     d = mpfr_get_d1 (x); av += d; var += d*d;     tab[(int)(size_tab * d)]++;       }  mpfr_clear(x);  if (!verbose) { free(tab); return; }  av /= nbtests;   var = (var /nbtests) - av*av;   th = (double)nbtests / size_tab;     printf("Average = %.5f\nVariance = %.5f\n", av, var);   printf("Repartition for random. Each integer should be close to %d.\n", 	 (int)th);   for (k = 0; k < size_tab; k++) {    chi2 += (tab[k] - th) * (tab[k] - th) / th;     printf("%d ", tab[k]);     if (((k+1) & 7) == 0) printf("\n");   }  printf("\nChi2 statistics value (with %d degrees of freedom) : %.5f\n\n", 	 size_tab - 1, chi2);   printf("\n");  free(tab);  return;}voidtest_random2 (unsigned long nbtests, unsigned long prec, int verbose){  mpfr_t x;   int *tab, size_tab, k;   double d, av = 0, var = 0, chi2 = 0, th;   mpfr_init2(x, prec);   size_tab = (nbtests < 1000 ? nbtests / 50 : 20);   tab = (int *) malloc (size_tab * sizeof(int));   for (k = 0; k < size_tab; ++k) tab[k] = 0;   for (k = 0; k < nbtests; k++) {    mpfr_random2 (x, MPFR_ABSSIZE(x), 0);     d = mpfr_get_d1 (x); av += d; var += d*d;     if (d < 1)      tab[(int)(size_tab * d)]++;       }  mpfr_clear(x);  if (!verbose) { free(tab); return; }    av /= nbtests;   var = (var /nbtests) - av*av;   th = (double)nbtests / size_tab;   printf("Average = %.5f\nVariance = %.5f\n", av, var);   printf("Repartition for random2 (taking only values < 1 into account.\n");   for (k = 0; k < size_tab; k++) {    chi2 += (tab[k] - th) * (tab[k] - th) / th;     printf("%d ", tab[k]);     if (((k+1) & 7) == 0) printf("\n");   }  printf("\nChi2 statistics value (with %d degrees of freedom) : %.5f\n\n", 	 size_tab - 1, chi2);   free(tab);   return;}voidtest_urandomb (unsigned long nbtests, unsigned long prec, int verbose){  mpfr_t x;   int *tab, size_tab, k;   gmp_randstate_t state;   double d, av = 0, var = 0, chi2 = 0, th;   mpfr_init2(x, prec);   size_tab = (nbtests < 1000 ? nbtests / 50 : 20);   tab = (int *) malloc (size_tab * sizeof(int));   for (k = 0; k < size_tab; ++k) tab[k] = 0;   gmp_randinit (state, GMP_RAND_ALG_LC, 128);   gmp_randseed_ui (state, time(NULL));  for (k = 0; k < nbtests; k++) {    mpfr_urandomb(x, state);     d = mpfr_get_d1 (x); av += d; var += d*d;     tab[(int)(size_tab * d)]++;       }  mpfr_clear(x);  gmp_randclear(state);  if (!verbose) { free(tab); return; }  av /= nbtests;   var = (var /nbtests) - av*av;   th = (double)nbtests / size_tab;   printf("Average = %.5f\nVariance = %.5f\n", av, var);   printf("Repartition for urandomb. Each integer should be close to %d.\n", 	 (int)th);   for (k = 0; k < size_tab; k++) {    chi2 += (tab[k] - th) * (tab[k] - th) / th;     printf("%d ", tab[k]);     if (((k+1) & 7) == 0) printf("\n");   }  printf("\nChi2 statistics value (with %d degrees of freedom) : %.5f\n\n", 	 size_tab - 1, chi2);   free(tab);   return;}intmain (int argc, char *argv[]){  unsigned long nbtests, prec; int verbose = 0;     if (argc > 1) verbose = 1;   if (argc == 1) { nbtests = 10000; } else nbtests = atoi(argv[1]);  if (argc <= 2) { prec = 1000; } else prec = atoi(argv[2]);   test_random(nbtests, prec, verbose);  test_random2(nbtests, prec, verbose);   test_urandomb(nbtests, prec, verbose);    return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -