资源简介
代码片段和文件信息
/* Test of the double rounding effect.
*
* This example was presented at the CNC‘2 summer school on MPFR and MPC
* at LORIA Nancy France.
*
* Arguments: max difference of exponents dmax significand size n.
* Optional argument: extended precision p (with double rounding).
*
* Return all the couples of positive machine numbers (xy) such that
* 1/2 <= y < 1 0 <= Ex - Ey <= dmax x - y is exactly representable
* in precision n and the results of floor(x/y) in the rounding modes
* toward 0 and to nearest are different.
*/
/*
Copyright 2009 Free Software Foundation Inc.
Contributed by the Arenaire and Cacao projects INRIA.
This file is part of the GNU MPFR Library.
The GNU MPFR 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 2.1 of the License or (at your
option) any later version.
The GNU MPFR 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 MPFR Library; see the file COPYING.LIB. If not write to
the Free Software Foundation Inc. 51 Franklin St Fifth Floor Boston
MA 02110-1301 USA.
*/
#include
#include
#include
#define PRECN x y z
#define VARS PRECN t
static unsigned long
eval (mpfr_t x mpfr_t y mpfr_t z mpfr_t t mpfr_rnd_t rnd)
{
mpfr_div (t x y rnd); /* the division x/y in precision p */
mpfr_set (z t rnd); /* the rounding to the precision n */
mpfr_rint_floor (z z rnd);
return mpfr_get_ui (z rnd);
}
int main (int argc char *argv[])
{
int dmax n p;
mpfr_t VARS;
if (argc != 3 && argc != 4)
{
fprintf (stderr “Usage: divworst [ ]\n“);
exit (EXIT_FAILURE);
}
dmax = atoi (argv[1]);
n = atoi (argv[2]);
p = argc == 3 ? n : atoi (argv[3]);
if (p < n)
{
fprintf (stderr “divworst: p must be greater or equal to n\n“);
exit (EXIT_FAILURE);
}
mpfr_inits2 (n PRECN (mpfr_ptr) 0);
mpfr_init2 (t p);
for (mpfr_set_ui_2exp (x 1 -1 GMP_RNDN);
mpfr_get_exp (x) <= dmax;
mpfr_nextabove (x))
for (mpfr_set_ui_2exp (y 1 -1 GMP_RNDN);
mpfr_get_exp (y) == 0;
mpfr_nextabove (y))
{
unsigned long rz rn;
if (mpfr_sub (z x y GMP_RNDZ) != 0)
continue; /* x - y is not representable in precision n */
rz = eval (x y z t GMP_RNDZ);
rn = eval (x y z t GMP_RNDN);
if (rz == rn)
continue;
mpfr_printf (“x = %.*Rb ; y = %.*Rb ; Z: %lu ; N: %lu\n“
n - 1 x n - 1 y rz rn);
}
mpfr_clears (VARS (mpfr_ptr) 0);
return 0;
}
相关资源
- 用4.3.2交叉编译好的opencv2.4.9所需依赖
- genymotion-arm-translation-Marshmallow 6.0 官方
- ARM嵌入式系统软件开发(一)
- ARM Cortex-A8硬件设计DIY.pdf
- gcc-arm-none-eabi-5_4-2016q3-20160926-linux.ta
- 基于LabVIEW的ARM Cortex-M3嵌入式开发宝典
- elasticsearch-7.2.0-1.aarch64.rpm 银河麒麟
- 英文原版-Pharmacology For Health Professio
- ARM ® Architecture Reference Manual ARMv7-A a
- ARMv7-A ARMv7-R 体系结构参考手册 ARM官
- arm-elf-tools-20030314.sh
- ARM体系结构与编程高清带书签 杜春雷
- Genymotion-ARM-Translation 7.0可用
- 《最全Pycharm教程 - 精编版》转自山在
- tiny6410 uboot代码145866
- EasyARM2200 光盘资料
- ARM CORTEX A9 开发手册打包
- pycharm2016.2 专业版破解软件(亲测可用
- 《嵌入式系统原理与实践--ARM Cortex-
- gdb-9.1.tar.xz
- arm-linux-gcc 4.4.3
- ARM处理器开发详解:基于ARM Cortex-A8处理
- ARM LINUX入门与实践
- arm嵌入式系统应用技术笔记基于lpc2
- The Definitive Guide to ARM Cortex-M3 and Cort
- SWD协议的研究及ARM程序器的设计
- arm-linux-gcc-4.4.3.tar.gz
-
Jli
nk工具软件 - 基于ARM和Linux的嵌入式远程视频监控系
- Time Harmonic Electromagnetic Fields Solution
评论
共有 条评论