t-sqrt.c

来自「a very popular packet of cryptography to」· C语言 代码 · 共 104 行

C
104
字号
/* Test mpf_sqrt, mpf_mul.Copyright 1996, 2001 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 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 GNU MP 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 GNU MP 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 "gmp.h"#include "gmp-impl.h"#include "tests.h"#ifndef SIZE#define SIZE 16#endifintmain (int argc, char **argv){  mp_size_t size;  mp_exp_t exp;  int reps = 100000;  int i;  mpf_t x, y, y2;  mp_size_t bprec = 100;  mpf_t rerr, max_rerr, limit_rerr;  tests_start ();  if (argc > 1)    {      reps = strtol (argv[1], 0, 0);      if (argc > 2)	bprec = strtol (argv[2], 0, 0);    }  mpf_set_default_prec (bprec);  mpf_init_set_ui (limit_rerr, 1);  mpf_div_2exp (limit_rerr, limit_rerr, bprec);#if VERBOSE  mpf_dump (limit_rerr);#endif  mpf_init (rerr);  mpf_init_set_ui (max_rerr, 0);  mpf_init (x);  mpf_init (y);  mpf_init (y2);  for (i = 0; i < reps; i++)    {      size = urandom () % SIZE;      exp = urandom () % SIZE;      mpf_random2 (x, size, exp);      mpf_sqrt (y, x);      mpf_mul (y2, y, y);      mpf_reldiff (rerr, x, y2);      if (mpf_cmp (rerr, max_rerr) > 0)	{	  mpf_set (max_rerr, rerr);#if VERBOSE	  mpf_dump (max_rerr);#endif	  if (mpf_cmp (rerr, limit_rerr) > 0)	    {	      printf ("ERROR after %d tests\n", i);	      printf ("   x = "); mpf_dump (x);	      printf ("   y = "); mpf_dump (y);	      printf ("  y2 = "); mpf_dump (y2);	      abort ();	    }	}    }  mpf_clear (limit_rerr);  mpf_clear (rerr);  mpf_clear (max_rerr);  mpf_clear (x);  mpf_clear (y);  mpf_clear (y2);  tests_end ();  exit (0);}

⌨️ 快捷键说明

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