00001 00002 /****************************************************************************** 00003 * MODULE : analytic.cpp 00004 * DESCRIPTION: Analytic functions 00005 * COPYRIGHT : (C) 2008 Joris van der Hoeven 00006 ******************************************************************************* 00007 * This software falls under the GNU general public license and comes WITHOUT 00008 * ANY WARRANTY WHATSOEVER. See the file $TEXMACS_PATH/LICENSE for more details. 00009 * If you don't have this file, write to the Free Software Foundation, Inc., 00010 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00011 ******************************************************************************/ 00012 00013 #include <continewz/analytic.hpp> 00014 00015 namespace mmx { 00016 00017 double mmx_radius_ratio= 0.4; 00018 // if the convergence radius is r, then evaluation of f 00019 // is done by summing the local series of f on the disk 00020 // of radius mmx_radius_ratio * r and by analytic continuation 00021 // outside this disk. 00022 double mmx_order_ratio= 1.0; 00023 // by default, we evaluate local series up to mmx_order_ratio * p terms, 00024 // where p is the working precision in bits 00025 00026 int mmx_ode_order= 0; 00027 // order of method for integrating odes, or zero for automatic 00028 int mmx_ode_precision= 0; 00029 // bit precision of method for integrating odes, or zero for automatic 00030 00031 } // namespace mmx
1.6.1