diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-06-20 10:38:01 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-06-20 10:38:01 +0000 |
commit | 265eb77be2ea7991cb155d175740f1978b9aff45 (patch) | |
tree | 50312a038421405d62654d95016e16f1ffc46499 /Build/source/libs/mpfr/mpfr-3.1.3/src/generic | |
parent | cd9d1f5f065d7a8bb787f683ffac1f907356a285 (diff) |
mpfr 3.1.3
git-svn-id: svn://tug.org/texlive/trunk@37627 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/mpfr/mpfr-3.1.3/src/generic')
-rw-r--r-- | Build/source/libs/mpfr/mpfr-3.1.3/src/generic/mparam.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/Build/source/libs/mpfr/mpfr-3.1.3/src/generic/mparam.h b/Build/source/libs/mpfr/mpfr-3.1.3/src/generic/mparam.h new file mode 100644 index 00000000000..b850e6508f5 --- /dev/null +++ b/Build/source/libs/mpfr/mpfr-3.1.3/src/generic/mparam.h @@ -0,0 +1,69 @@ +/* Various Thresholds of MPFR, not exported. -*- mode: C -*- + +Copyright 2005-2015 Free Software Foundation, Inc. + +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 3 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.LESSER. If not, see +http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., +51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ + +#ifndef MPFR_MULHIGH_TAB +# define MPFR_MULHIGH_TAB -1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0 +#endif + +#ifndef MPFR_SQRHIGH_TAB +# define MPFR_SQRHIGH_TAB -1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0 +#endif + +#ifndef MPFR_DIVHIGH_TAB +# define MPFR_DIVHIGH_TAB 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 +#endif + +#ifndef MPFR_MUL_THRESHOLD +# define MPFR_MUL_THRESHOLD 20 /* limbs */ +#endif + +#ifndef MPFR_SQR_THRESHOLD +# define MPFR_SQR_THRESHOLD 20 /* limbs */ +#endif + +#ifndef MPFR_DIV_THRESHOLD +# define MPFR_DIV_THRESHOLD 25 /* limbs */ +#endif + +#ifndef MPFR_EXP_2_THRESHOLD +# define MPFR_EXP_2_THRESHOLD 100 /* bits */ +#endif + +#ifndef MPFR_EXP_THRESHOLD +# define MPFR_EXP_THRESHOLD 25000 /* bits */ +#endif + +#ifndef MPFR_SINCOS_THRESHOLD +# define MPFR_SINCOS_THRESHOLD 30000 /* bits */ +#endif + +#ifndef MPFR_AI_THRESHOLD1 +# define MPFR_AI_THRESHOLD1 -13107 /* threshold for negative input of mpfr_ai */ +#endif + +#ifndef MPFR_AI_THRESHOLD2 +# define MPFR_AI_THRESHOLD2 1311 +#endif + +#ifndef MPFR_AI_THRESHOLD3 +# define MPFR_AI_THRESHOLD3 19661 +#endif + |