14a238c70SJohn Marino /* Various Thresholds of MPFR, not exported. -*- mode: C -*- 24a238c70SJohn Marino 3*ab6d115fSJohn Marino Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. 44a238c70SJohn Marino 54a238c70SJohn Marino This file is part of the GNU MPFR Library. 64a238c70SJohn Marino 74a238c70SJohn Marino The GNU MPFR Library is free software; you can redistribute it and/or modify 84a238c70SJohn Marino it under the terms of the GNU Lesser General Public License as published by 94a238c70SJohn Marino the Free Software Foundation; either version 3 of the License, or (at your 104a238c70SJohn Marino option) any later version. 114a238c70SJohn Marino 124a238c70SJohn Marino The GNU MPFR Library is distributed in the hope that it will be useful, but 134a238c70SJohn Marino WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 144a238c70SJohn Marino or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 154a238c70SJohn Marino License for more details. 164a238c70SJohn Marino 174a238c70SJohn Marino You should have received a copy of the GNU Lesser General Public License 184a238c70SJohn Marino along with the GNU MPFR Library; see the file COPYING.LESSER. If not, see 194a238c70SJohn Marino http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., 204a238c70SJohn Marino 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ 214a238c70SJohn Marino 224a238c70SJohn Marino #ifndef MPFR_MULHIGH_TAB 234a238c70SJohn Marino # define MPFR_MULHIGH_TAB -1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0 244a238c70SJohn Marino #endif 254a238c70SJohn Marino 264a238c70SJohn Marino #ifndef MPFR_SQRHIGH_TAB 274a238c70SJohn Marino # define MPFR_SQRHIGH_TAB -1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0 284a238c70SJohn Marino #endif 294a238c70SJohn Marino 304a238c70SJohn Marino #ifndef MPFR_DIVHIGH_TAB 314a238c70SJohn Marino # define MPFR_DIVHIGH_TAB 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 324a238c70SJohn Marino #endif 334a238c70SJohn Marino 344a238c70SJohn Marino #ifndef MPFR_MUL_THRESHOLD 354a238c70SJohn Marino # define MPFR_MUL_THRESHOLD 20 /* limbs */ 364a238c70SJohn Marino #endif 374a238c70SJohn Marino 384a238c70SJohn Marino #ifndef MPFR_SQR_THRESHOLD 394a238c70SJohn Marino # define MPFR_SQR_THRESHOLD 20 /* limbs */ 404a238c70SJohn Marino #endif 414a238c70SJohn Marino 424a238c70SJohn Marino #ifndef MPFR_DIV_THRESHOLD 434a238c70SJohn Marino # define MPFR_DIV_THRESHOLD 25 /* limbs */ 444a238c70SJohn Marino #endif 454a238c70SJohn Marino 464a238c70SJohn Marino #ifndef MPFR_EXP_2_THRESHOLD 474a238c70SJohn Marino # define MPFR_EXP_2_THRESHOLD 100 /* bits */ 484a238c70SJohn Marino #endif 494a238c70SJohn Marino 504a238c70SJohn Marino #ifndef MPFR_EXP_THRESHOLD 514a238c70SJohn Marino # define MPFR_EXP_THRESHOLD 25000 /* bits */ 524a238c70SJohn Marino #endif 534a238c70SJohn Marino 544a238c70SJohn Marino #ifndef MPFR_SINCOS_THRESHOLD 554a238c70SJohn Marino # define MPFR_SINCOS_THRESHOLD 30000 /* bits */ 564a238c70SJohn Marino #endif 574a238c70SJohn Marino 584a238c70SJohn Marino #ifndef MPFR_AI_THRESHOLD1 594a238c70SJohn Marino # define MPFR_AI_THRESHOLD1 -13107 /* threshold for negative input of mpfr_ai */ 604a238c70SJohn Marino #endif 614a238c70SJohn Marino 624a238c70SJohn Marino #ifndef MPFR_AI_THRESHOLD2 634a238c70SJohn Marino # define MPFR_AI_THRESHOLD2 1311 644a238c70SJohn Marino #endif 654a238c70SJohn Marino 664a238c70SJohn Marino #ifndef MPFR_AI_THRESHOLD3 674a238c70SJohn Marino # define MPFR_AI_THRESHOLD3 19661 684a238c70SJohn Marino #endif 694a238c70SJohn Marino 70