]> www.ginac.de Git - ginac.git/blob - ginac/numeric.cpp
7894c7fbe1294ae50f81374a1f67828cab572a8e
[ginac.git] / ginac / numeric.cpp
1 /** @file numeric.cpp
2  *
3  *  This file contains the interface to the underlying bignum package.
4  *  Its most important design principle is to completely hide the inner
5  *  working of that other package from the user of GiNaC.  It must either 
6  *  provide implementation of arithmetic operators and numerical evaluation
7  *  of special functions or implement the interface to the bignum package. */
8
9 /*
10  *  GiNaC Copyright (C) 1999-2006 Johannes Gutenberg University Mainz, Germany
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2 of the License, or
15  *  (at your option) any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software
24  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
25  */
26
27 #include "config.h"
28
29 #include <vector>
30 #include <stdexcept>
31 #include <string>
32 #include <sstream>
33 #include <limits>
34
35 #include "numeric.h"
36 #include "ex.h"
37 #include "operators.h"
38 #include "archive.h"
39 #include "tostring.h"
40 #include "utils.h"
41
42 // CLN should pollute the global namespace as little as possible.  Hence, we
43 // include most of it here and include only the part needed for properly
44 // declaring cln::cl_number in numeric.h.  This can only be safely done in
45 // namespaced versions of CLN, i.e. version > 1.1.0.  Also, we only need a
46 // subset of CLN, so we don't include the complete <cln/cln.h> but only the
47 // essential stuff:
48 #include <cln/output.h>
49 #include <cln/integer_io.h>
50 #include <cln/integer_ring.h>
51 #include <cln/rational_io.h>
52 #include <cln/rational_ring.h>
53 #include <cln/lfloat_class.h>
54 #include <cln/lfloat_io.h>
55 #include <cln/real_io.h>
56 #include <cln/real_ring.h>
57 #include <cln/complex_io.h>
58 #include <cln/complex_ring.h>
59 #include <cln/numtheory.h>
60
61 namespace GiNaC {
62
63 GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(numeric, basic,
64   print_func<print_context>(&numeric::do_print).
65   print_func<print_latex>(&numeric::do_print_latex).
66   print_func<print_csrc>(&numeric::do_print_csrc).
67   print_func<print_csrc_cl_N>(&numeric::do_print_csrc_cl_N).
68   print_func<print_tree>(&numeric::do_print_tree).
69   print_func<print_python_repr>(&numeric::do_print_python_repr))
70
71 //////////
72 // default constructor
73 //////////
74
75 /** default ctor. Numerically it initializes to an integer zero. */
76 numeric::numeric() : basic(&numeric::tinfo_static)
77 {
78         value = cln::cl_I(0);
79         setflag(status_flags::evaluated | status_flags::expanded);
80 }
81
82 //////////
83 // other constructors
84 //////////
85
86 // public
87
88 numeric::numeric(int i) : basic(&numeric::tinfo_static)
89 {
90         // Not the whole int-range is available if we don't cast to long
91         // first.  This is due to the behaviour of the cl_I-ctor, which
92         // emphasizes efficiency.  However, if the integer is small enough
93         // we save space and dereferences by using an immediate type.
94         // (C.f. <cln/object.h>)
95         // The #if clause prevents compiler warnings on 64bit machines where the
96         // comparision is always true.
97 #if cl_value_len >= 32
98         value = cln::cl_I(i);
99 #else
100         if (i < (1L << (cl_value_len-1)) && i >= -(1L << (cl_value_len-1)))
101                 value = cln::cl_I(i);
102         else
103                 value = cln::cl_I(static_cast<long>(i));
104 #endif
105         setflag(status_flags::evaluated | status_flags::expanded);
106 }
107
108
109 numeric::numeric(unsigned int i) : basic(&numeric::tinfo_static)
110 {
111         // Not the whole uint-range is available if we don't cast to ulong
112         // first.  This is due to the behaviour of the cl_I-ctor, which
113         // emphasizes efficiency.  However, if the integer is small enough
114         // we save space and dereferences by using an immediate type.
115         // (C.f. <cln/object.h>)
116         // The #if clause prevents compiler warnings on 64bit machines where the
117         // comparision is always true.
118 #if cl_value_len >= 32
119         value = cln::cl_I(i);
120 #else
121         if (i < (1UL << (cl_value_len-1)))
122                 value = cln::cl_I(i);
123         else
124                 value = cln::cl_I(static_cast<unsigned long>(i));
125 #endif
126         setflag(status_flags::evaluated | status_flags::expanded);
127 }
128
129
130 numeric::numeric(long i) : basic(&numeric::tinfo_static)
131 {
132         value = cln::cl_I(i);
133         setflag(status_flags::evaluated | status_flags::expanded);
134 }
135
136
137 numeric::numeric(unsigned long i) : basic(&numeric::tinfo_static)
138 {
139         value = cln::cl_I(i);
140         setflag(status_flags::evaluated | status_flags::expanded);
141 }
142
143
144 /** Constructor for rational numerics a/b.
145  *
146  *  @exception overflow_error (division by zero) */
147 numeric::numeric(long numer, long denom) : basic(&numeric::tinfo_static)
148 {
149         if (!denom)
150                 throw std::overflow_error("division by zero");
151         value = cln::cl_I(numer) / cln::cl_I(denom);
152         setflag(status_flags::evaluated | status_flags::expanded);
153 }
154
155
156 numeric::numeric(double d) : basic(&numeric::tinfo_static)
157 {
158         // We really want to explicitly use the type cl_LF instead of the
159         // more general cl_F, since that would give us a cl_DF only which
160         // will not be promoted to cl_LF if overflow occurs:
161         value = cln::cl_float(d, cln::default_float_format);
162         setflag(status_flags::evaluated | status_flags::expanded);
163 }
164
165
166 /** ctor from C-style string.  It also accepts complex numbers in GiNaC
167  *  notation like "2+5*I". */
168 numeric::numeric(const char *s) : basic(&numeric::tinfo_static)
169 {
170         cln::cl_N ctorval = 0;
171         // parse complex numbers (functional but not completely safe, unfortunately
172         // std::string does not understand regexpese):
173         // ss should represent a simple sum like 2+5*I
174         std::string ss = s;
175         std::string::size_type delim;
176
177         // make this implementation safe by adding explicit sign
178         if (ss.at(0) != '+' && ss.at(0) != '-' && ss.at(0) != '#')
179                 ss = '+' + ss;
180
181         // We use 'E' as exponent marker in the output, but some people insist on
182         // writing 'e' at input, so let's substitute them right at the beginning:
183         while ((delim = ss.find("e"))!=std::string::npos)
184                 ss.replace(delim,1,"E");
185
186         // main parser loop:
187         do {
188                 // chop ss into terms from left to right
189                 std::string term;
190                 bool imaginary = false;
191                 delim = ss.find_first_of(std::string("+-"),1);
192                 // Do we have an exponent marker like "31.415E-1"?  If so, hop on!
193                 if (delim!=std::string::npos && ss.at(delim-1)=='E')
194                         delim = ss.find_first_of(std::string("+-"),delim+1);
195                 term = ss.substr(0,delim);
196                 if (delim!=std::string::npos)
197                         ss = ss.substr(delim);
198                 // is the term imaginary?
199                 if (term.find("I")!=std::string::npos) {
200                         // erase 'I':
201                         term.erase(term.find("I"),1);
202                         // erase '*':
203                         if (term.find("*")!=std::string::npos)
204                                 term.erase(term.find("*"),1);
205                         // correct for trivial +/-I without explicit factor on I:
206                         if (term.size()==1)
207                                 term += '1';
208                         imaginary = true;
209                 }
210                 if (term.find('.')!=std::string::npos || term.find('E')!=std::string::npos) {
211                         // CLN's short type cl_SF is not very useful within the GiNaC
212                         // framework where we are mainly interested in the arbitrary
213                         // precision type cl_LF.  Hence we go straight to the construction
214                         // of generic floats.  In order to create them we have to convert
215                         // our own floating point notation used for output and construction
216                         // from char * to CLN's generic notation:
217                         // 3.14      -->   3.14e0_<Digits>
218                         // 31.4E-1   -->   31.4e-1_<Digits>
219                         // and s on.
220                         // No exponent marker?  Let's add a trivial one.
221                         if (term.find("E")==std::string::npos)
222                                 term += "E0";
223                         // E to lower case
224                         term = term.replace(term.find("E"),1,"e");
225                         // append _<Digits> to term
226                         term += "_" + ToString((unsigned)Digits);
227                         // construct float using cln::cl_F(const char *) ctor.
228                         if (imaginary)
229                                 ctorval = ctorval + cln::complex(cln::cl_I(0),cln::cl_F(term.c_str()));
230                         else
231                                 ctorval = ctorval + cln::cl_F(term.c_str());
232                 } else {
233                         // this is not a floating point number...
234                         if (imaginary)
235                                 ctorval = ctorval + cln::complex(cln::cl_I(0),cln::cl_R(term.c_str()));
236                         else
237                                 ctorval = ctorval + cln::cl_R(term.c_str());
238                 }
239         } while (delim != std::string::npos);
240         value = ctorval;
241         setflag(status_flags::evaluated | status_flags::expanded);
242 }
243
244
245 /** Ctor from CLN types.  This is for the initiated user or internal use
246  *  only. */
247 numeric::numeric(const cln::cl_N &z) : basic(&numeric::tinfo_static)
248 {
249         value = z;
250         setflag(status_flags::evaluated | status_flags::expanded);
251 }
252
253
254 //////////
255 // archiving
256 //////////
257
258 numeric::numeric(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst)
259 {
260         cln::cl_N ctorval = 0;
261
262         // Read number as string
263         std::string str;
264         if (n.find_string("number", str)) {
265                 std::istringstream s(str);
266                 cln::cl_idecoded_float re, im;
267                 char c;
268                 s.get(c);
269                 switch (c) {
270                         case 'R':    // Integer-decoded real number
271                                 s >> re.sign >> re.mantissa >> re.exponent;
272                                 ctorval = re.sign * re.mantissa * cln::expt(cln::cl_float(2.0, cln::default_float_format), re.exponent);
273                                 break;
274                         case 'C':    // Integer-decoded complex number
275                                 s >> re.sign >> re.mantissa >> re.exponent;
276                                 s >> im.sign >> im.mantissa >> im.exponent;
277                                 ctorval = cln::complex(re.sign * re.mantissa * cln::expt(cln::cl_float(2.0, cln::default_float_format), re.exponent),
278                                                        im.sign * im.mantissa * cln::expt(cln::cl_float(2.0, cln::default_float_format), im.exponent));
279                                 break;
280                         default:    // Ordinary number
281                                 s.putback(c);
282                                 s >> ctorval;
283                                 break;
284                 }
285         }
286         value = ctorval;
287         setflag(status_flags::evaluated | status_flags::expanded);
288 }
289
290 void numeric::archive(archive_node &n) const
291 {
292         inherited::archive(n);
293
294         // Write number as string
295         std::ostringstream s;
296         if (this->is_crational())
297                 s << value;
298         else {
299                 // Non-rational numbers are written in an integer-decoded format
300                 // to preserve the precision
301                 if (this->is_real()) {
302                         cln::cl_idecoded_float re = cln::integer_decode_float(cln::the<cln::cl_F>(value));
303                         s << "R";
304                         s << re.sign << " " << re.mantissa << " " << re.exponent;
305                 } else {
306                         cln::cl_idecoded_float re = cln::integer_decode_float(cln::the<cln::cl_F>(cln::realpart(cln::the<cln::cl_N>(value))));
307                         cln::cl_idecoded_float im = cln::integer_decode_float(cln::the<cln::cl_F>(cln::imagpart(cln::the<cln::cl_N>(value))));
308                         s << "C";
309                         s << re.sign << " " << re.mantissa << " " << re.exponent << " ";
310                         s << im.sign << " " << im.mantissa << " " << im.exponent;
311                 }
312         }
313         n.add_string("number", s.str());
314 }
315
316 DEFAULT_UNARCHIVE(numeric)
317
318 //////////
319 // functions overriding virtual functions from base classes
320 //////////
321
322 /** Helper function to print a real number in a nicer way than is CLN's
323  *  default.  Instead of printing 42.0L0 this just prints 42.0 to ostream os
324  *  and instead of 3.99168L7 it prints 3.99168E7.  This is fine in GiNaC as
325  *  long as it only uses cl_LF and no other floating point types that we might
326  *  want to visibly distinguish from cl_LF.
327  *
328  *  @see numeric::print() */
329 static void print_real_number(const print_context & c, const cln::cl_R & x)
330 {
331         cln::cl_print_flags ourflags;
332         if (cln::instanceof(x, cln::cl_RA_ring)) {
333                 // case 1: integer or rational
334                 if (cln::instanceof(x, cln::cl_I_ring) ||
335                     !is_a<print_latex>(c)) {
336                         cln::print_real(c.s, ourflags, x);
337                 } else {  // rational output in LaTeX context
338                         if (x < 0)
339                                 c.s << "-";
340                         c.s << "\\frac{";
341                         cln::print_real(c.s, ourflags, cln::abs(cln::numerator(cln::the<cln::cl_RA>(x))));
342                         c.s << "}{";
343                         cln::print_real(c.s, ourflags, cln::denominator(cln::the<cln::cl_RA>(x)));
344                         c.s << '}';
345                 }
346         } else {
347                 // case 2: float
348                 // make CLN believe this number has default_float_format, so it prints
349                 // 'E' as exponent marker instead of 'L':
350                 ourflags.default_float_format = cln::float_format(cln::the<cln::cl_F>(x));
351                 cln::print_real(c.s, ourflags, x);
352         }
353 }
354
355 /** Helper function to print integer number in C++ source format.
356  *
357  *  @see numeric::print() */
358 static void print_integer_csrc(const print_context & c, const cln::cl_I & x)
359 {
360         // Print small numbers in compact float format, but larger numbers in
361         // scientific format
362         const int max_cln_int = 536870911; // 2^29-1
363         if (x >= cln::cl_I(-max_cln_int) && x <= cln::cl_I(max_cln_int))
364                 c.s << cln::cl_I_to_int(x) << ".0";
365         else
366                 c.s << cln::double_approx(x);
367 }
368
369 /** Helper function to print real number in C++ source format.
370  *
371  *  @see numeric::print() */
372 static void print_real_csrc(const print_context & c, const cln::cl_R & x)
373 {
374         if (cln::instanceof(x, cln::cl_I_ring)) {
375
376                 // Integer number
377                 print_integer_csrc(c, cln::the<cln::cl_I>(x));
378
379         } else if (cln::instanceof(x, cln::cl_RA_ring)) {
380
381                 // Rational number
382                 const cln::cl_I numer = cln::numerator(cln::the<cln::cl_RA>(x));
383                 const cln::cl_I denom = cln::denominator(cln::the<cln::cl_RA>(x));
384                 if (cln::plusp(x) > 0) {
385                         c.s << "(";
386                         print_integer_csrc(c, numer);
387                 } else {
388                         c.s << "-(";
389                         print_integer_csrc(c, -numer);
390                 }
391                 c.s << "/";
392                 print_integer_csrc(c, denom);
393                 c.s << ")";
394
395         } else {
396
397                 // Anything else
398                 c.s << cln::double_approx(x);
399         }
400 }
401
402 /** Helper function to print real number in C++ source format using cl_N types.
403  *
404  *  @see numeric::print() */
405 static void print_real_cl_N(const print_context & c, const cln::cl_R & x)
406 {
407         if (cln::instanceof(x, cln::cl_I_ring)) {
408
409                 // Integer number
410                 c.s << "cln::cl_I(\"";
411                 print_real_number(c, x);
412                 c.s << "\")";
413
414         } else if (cln::instanceof(x, cln::cl_RA_ring)) {
415
416                 // Rational number
417                 cln::cl_print_flags ourflags;
418                 c.s << "cln::cl_RA(\"";
419                 cln::print_rational(c.s, ourflags, cln::the<cln::cl_RA>(x));
420                 c.s << "\")";
421
422         } else {
423
424                 // Anything else
425                 c.s << "cln::cl_F(\"";
426                 print_real_number(c, cln::cl_float(1.0, cln::default_float_format) * x);
427                 c.s << "_" << Digits << "\")";
428         }
429 }
430
431 void numeric::print_numeric(const print_context & c, const char *par_open, const char *par_close, const char *imag_sym, const char *mul_sym, unsigned level) const
432 {
433         const cln::cl_R r = cln::realpart(value);
434         const cln::cl_R i = cln::imagpart(value);
435
436         if (cln::zerop(i)) {
437
438                 // case 1, real:  x  or  -x
439                 if ((precedence() <= level) && (!this->is_nonneg_integer())) {
440                         c.s << par_open;
441                         print_real_number(c, r);
442                         c.s << par_close;
443                 } else {
444                         print_real_number(c, r);
445                 }
446
447         } else {
448                 if (cln::zerop(r)) {
449
450                         // case 2, imaginary:  y*I  or  -y*I
451                         if (i == 1)
452                                 c.s << imag_sym;
453                         else {
454                                 if (precedence()<=level)
455                                         c.s << par_open;
456                                 if (i == -1)
457                                         c.s << "-" << imag_sym;
458                                 else {
459                                         print_real_number(c, i);
460                                         c.s << mul_sym << imag_sym;
461                                 }
462                                 if (precedence()<=level)
463                                         c.s << par_close;
464                         }
465
466                 } else {
467
468                         // case 3, complex:  x+y*I  or  x-y*I  or  -x+y*I  or  -x-y*I
469                         if (precedence() <= level)
470                                 c.s << par_open;
471                         print_real_number(c, r);
472                         if (i < 0) {
473                                 if (i == -1) {
474                                         c.s << "-" << imag_sym;
475                                 } else {
476                                         print_real_number(c, i);
477                                         c.s << mul_sym << imag_sym;
478                                 }
479                         } else {
480                                 if (i == 1) {
481                                         c.s << "+" << imag_sym;
482                                 } else {
483                                         c.s << "+";
484                                         print_real_number(c, i);
485                                         c.s << mul_sym << imag_sym;
486                                 }
487                         }
488                         if (precedence() <= level)
489                                 c.s << par_close;
490                 }
491         }
492 }
493
494 void numeric::do_print(const print_context & c, unsigned level) const
495 {
496         print_numeric(c, "(", ")", "I", "*", level);
497 }
498
499 void numeric::do_print_latex(const print_latex & c, unsigned level) const
500 {
501         print_numeric(c, "{(", ")}", "i", " ", level);
502 }
503
504 void numeric::do_print_csrc(const print_csrc & c, unsigned level) const
505 {
506         std::ios::fmtflags oldflags = c.s.flags();
507         c.s.setf(std::ios::scientific);
508         int oldprec = c.s.precision();
509
510         // Set precision
511         if (is_a<print_csrc_double>(c))
512                 c.s.precision(std::numeric_limits<double>::digits10 + 1);
513         else
514                 c.s.precision(std::numeric_limits<float>::digits10 + 1);
515
516         if (this->is_real()) {
517
518                 // Real number
519                 print_real_csrc(c, cln::the<cln::cl_R>(value));
520
521         } else {
522
523                 // Complex number
524                 c.s << "std::complex<";
525                 if (is_a<print_csrc_double>(c))
526                         c.s << "double>(";
527                 else
528                         c.s << "float>(";
529
530                 print_real_csrc(c, cln::realpart(value));
531                 c.s << ",";
532                 print_real_csrc(c, cln::imagpart(value));
533                 c.s << ")";
534         }
535
536         c.s.flags(oldflags);
537         c.s.precision(oldprec);
538 }
539
540 void numeric::do_print_csrc_cl_N(const print_csrc_cl_N & c, unsigned level) const
541 {
542         if (this->is_real()) {
543
544                 // Real number
545                 print_real_cl_N(c, cln::the<cln::cl_R>(value));
546
547         } else {
548
549                 // Complex number
550                 c.s << "cln::complex(";
551                 print_real_cl_N(c, cln::realpart(value));
552                 c.s << ",";
553                 print_real_cl_N(c, cln::imagpart(value));
554                 c.s << ")";
555         }
556 }
557
558 void numeric::do_print_tree(const print_tree & c, unsigned level) const
559 {
560         c.s << std::string(level, ' ') << value
561             << " (" << class_name() << ")" << " @" << this
562             << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec
563             << std::endl;
564 }
565
566 void numeric::do_print_python_repr(const print_python_repr & c, unsigned level) const
567 {
568         c.s << class_name() << "('";
569         print_numeric(c, "(", ")", "I", "*", level);
570         c.s << "')";
571 }
572
573 bool numeric::info(unsigned inf) const
574 {
575         switch (inf) {
576                 case info_flags::numeric:
577                 case info_flags::polynomial:
578                 case info_flags::rational_function:
579                         return true;
580                 case info_flags::real:
581                         return is_real();
582                 case info_flags::rational:
583                 case info_flags::rational_polynomial:
584                         return is_rational();
585                 case info_flags::crational:
586                 case info_flags::crational_polynomial:
587                         return is_crational();
588                 case info_flags::integer:
589                 case info_flags::integer_polynomial:
590                         return is_integer();
591                 case info_flags::cinteger:
592                 case info_flags::cinteger_polynomial:
593                         return is_cinteger();
594                 case info_flags::positive:
595                         return is_positive();
596                 case info_flags::negative:
597                         return is_negative();
598                 case info_flags::nonnegative:
599                         return !is_negative();
600                 case info_flags::posint:
601                         return is_pos_integer();
602                 case info_flags::negint:
603                         return is_integer() && is_negative();
604                 case info_flags::nonnegint:
605                         return is_nonneg_integer();
606                 case info_flags::even:
607                         return is_even();
608                 case info_flags::odd:
609                         return is_odd();
610                 case info_flags::prime:
611                         return is_prime();
612                 case info_flags::algebraic:
613                         return !is_real();
614         }
615         return false;
616 }
617
618 bool numeric::is_polynomial(const ex & var) const
619 {
620         return true;
621 }
622
623 int numeric::degree(const ex & s) const
624 {
625         return 0;
626 }
627
628 int numeric::ldegree(const ex & s) const
629 {
630         return 0;
631 }
632
633 ex numeric::coeff(const ex & s, int n) const
634 {
635         return n==0 ? *this : _ex0;
636 }
637
638 /** Disassemble real part and imaginary part to scan for the occurrence of a
639  *  single number.  Also handles the imaginary unit.  It ignores the sign on
640  *  both this and the argument, which may lead to what might appear as funny
641  *  results:  (2+I).has(-2) -> true.  But this is consistent, since we also
642  *  would like to have (-2+I).has(2) -> true and we want to think about the
643  *  sign as a multiplicative factor. */
644 bool numeric::has(const ex &other, unsigned options) const
645 {
646         if (!is_exactly_a<numeric>(other))
647                 return false;
648         const numeric &o = ex_to<numeric>(other);
649         if (this->is_equal(o) || this->is_equal(-o))
650                 return true;
651         if (o.imag().is_zero()) {   // e.g. scan for 3 in -3*I
652                 if (!this->real().is_equal(*_num0_p))
653                         if (this->real().is_equal(o) || this->real().is_equal(-o))
654                                 return true;
655                 if (!this->imag().is_equal(*_num0_p))
656                         if (this->imag().is_equal(o) || this->imag().is_equal(-o))
657                                 return true;
658                 return false;
659         }
660         else {
661                 if (o.is_equal(I))  // e.g scan for I in 42*I
662                         return !this->is_real();
663                 if (o.real().is_zero())  // e.g. scan for 2*I in 2*I+1
664                         if (!this->imag().is_equal(*_num0_p))
665                                 if (this->imag().is_equal(o*I) || this->imag().is_equal(-o*I))
666                                         return true;
667         }
668         return false;
669 }
670
671
672 /** Evaluation of numbers doesn't do anything at all. */
673 ex numeric::eval(int level) const
674 {
675         // Warning: if this is ever gonna do something, the ex ctors from all kinds
676         // of numbers should be checking for status_flags::evaluated.
677         return this->hold();
678 }
679
680
681 /** Cast numeric into a floating-point object.  For example exact numeric(1) is
682  *  returned as a 1.0000000000000000000000 and so on according to how Digits is
683  *  currently set.  In case the object already was a floating point number the
684  *  precision is trimmed to match the currently set default.
685  *
686  *  @param level  ignored, only needed for overriding basic::evalf.
687  *  @return  an ex-handle to a numeric. */
688 ex numeric::evalf(int level) const
689 {
690         // level can safely be discarded for numeric objects.
691         return numeric(cln::cl_float(1.0, cln::default_float_format) * value);
692 }
693
694 ex numeric::conjugate() const
695 {
696         if (is_real()) {
697                 return *this;
698         }
699         return numeric(cln::conjugate(this->value));
700 }
701
702 ex numeric::real_part() const
703 {
704         return numeric(cln::realpart(value));
705 }
706
707 ex numeric::imag_part() const
708 {
709         return numeric(cln::imagpart(value));
710 }
711
712 // protected
713
714 int numeric::compare_same_type(const basic &other) const
715 {
716         GINAC_ASSERT(is_exactly_a<numeric>(other));
717         const numeric &o = static_cast<const numeric &>(other);
718         
719         return this->compare(o);
720 }
721
722
723 bool numeric::is_equal_same_type(const basic &other) const
724 {
725         GINAC_ASSERT(is_exactly_a<numeric>(other));
726         const numeric &o = static_cast<const numeric &>(other);
727         
728         return this->is_equal(o);
729 }
730
731
732 unsigned numeric::calchash() const
733 {
734         // Base computation of hashvalue on CLN's hashcode.  Note: That depends
735         // only on the number's value, not its type or precision (i.e. a true
736         // equivalence relation on numbers).  As a consequence, 3 and 3.0 share
737         // the same hashvalue.  That shouldn't really matter, though.
738         setflag(status_flags::hash_calculated);
739         hashvalue = golden_ratio_hash(cln::equal_hashcode(value));
740         return hashvalue;
741 }
742
743
744 //////////
745 // new virtual functions which can be overridden by derived classes
746 //////////
747
748 // none
749
750 //////////
751 // non-virtual functions in this class
752 //////////
753
754 // public
755
756 /** Numerical addition method.  Adds argument to *this and returns result as
757  *  a numeric object. */
758 const numeric numeric::add(const numeric &other) const
759 {
760         return numeric(value + other.value);
761 }
762
763
764 /** Numerical subtraction method.  Subtracts argument from *this and returns
765  *  result as a numeric object. */
766 const numeric numeric::sub(const numeric &other) const
767 {
768         return numeric(value - other.value);
769 }
770
771
772 /** Numerical multiplication method.  Multiplies *this and argument and returns
773  *  result as a numeric object. */
774 const numeric numeric::mul(const numeric &other) const
775 {
776         return numeric(value * other.value);
777 }
778
779
780 /** Numerical division method.  Divides *this by argument and returns result as
781  *  a numeric object.
782  *
783  *  @exception overflow_error (division by zero) */
784 const numeric numeric::div(const numeric &other) const
785 {
786         if (cln::zerop(other.value))
787                 throw std::overflow_error("numeric::div(): division by zero");
788         return numeric(value / other.value);
789 }
790
791
792 /** Numerical exponentiation.  Raises *this to the power given as argument and
793  *  returns result as a numeric object. */
794 const numeric numeric::power(const numeric &other) const
795 {
796         // Shortcut for efficiency and numeric stability (as in 1.0 exponent):
797         // trap the neutral exponent.
798         if (&other==_num1_p || cln::equal(other.value,_num1_p->value))
799                 return *this;
800         
801         if (cln::zerop(value)) {
802                 if (cln::zerop(other.value))
803                         throw std::domain_error("numeric::eval(): pow(0,0) is undefined");
804                 else if (cln::zerop(cln::realpart(other.value)))
805                         throw std::domain_error("numeric::eval(): pow(0,I) is undefined");
806                 else if (cln::minusp(cln::realpart(other.value)))
807                         throw std::overflow_error("numeric::eval(): division by zero");
808                 else
809                         return *_num0_p;
810         }
811         return numeric(cln::expt(value, other.value));
812 }
813
814
815
816 /** Numerical addition method.  Adds argument to *this and returns result as
817  *  a numeric object on the heap.  Use internally only for direct wrapping into
818  *  an ex object, where the result would end up on the heap anyways. */
819 const numeric &numeric::add_dyn(const numeric &other) const
820 {
821         // Efficiency shortcut: trap the neutral element by pointer.  This hack
822         // is supposed to keep the number of distinct numeric objects low.
823         if (this==_num0_p)
824                 return other;
825         else if (&other==_num0_p)
826                 return *this;
827         
828         return static_cast<const numeric &>((new numeric(value + other.value))->
829                                             setflag(status_flags::dynallocated));
830 }
831
832
833 /** Numerical subtraction method.  Subtracts argument from *this and returns
834  *  result as a numeric object on the heap.  Use internally only for direct
835  *  wrapping into an ex object, where the result would end up on the heap
836  *  anyways. */
837 const numeric &numeric::sub_dyn(const numeric &other) const
838 {
839         // Efficiency shortcut: trap the neutral exponent (first by pointer).  This
840         // hack is supposed to keep the number of distinct numeric objects low.
841         if (&other==_num0_p || cln::zerop(other.value))
842                 return *this;
843         
844         return static_cast<const numeric &>((new numeric(value - other.value))->
845                                             setflag(status_flags::dynallocated));
846 }
847
848
849 /** Numerical multiplication method.  Multiplies *this and argument and returns
850  *  result as a numeric object on the heap.  Use internally only for direct
851  *  wrapping into an ex object, where the result would end up on the heap
852  *  anyways. */
853 const numeric &numeric::mul_dyn(const numeric &other) const
854 {
855         // Efficiency shortcut: trap the neutral element by pointer.  This hack
856         // is supposed to keep the number of distinct numeric objects low.
857         if (this==_num1_p)
858                 return other;
859         else if (&other==_num1_p)
860                 return *this;
861         
862         return static_cast<const numeric &>((new numeric(value * other.value))->
863                                             setflag(status_flags::dynallocated));
864 }
865
866
867 /** Numerical division method.  Divides *this by argument and returns result as
868  *  a numeric object on the heap.  Use internally only for direct wrapping
869  *  into an ex object, where the result would end up on the heap
870  *  anyways.
871  *
872  *  @exception overflow_error (division by zero) */
873 const numeric &numeric::div_dyn(const numeric &other) const
874 {
875         // Efficiency shortcut: trap the neutral element by pointer.  This hack
876         // is supposed to keep the number of distinct numeric objects low.
877         if (&other==_num1_p)
878                 return *this;
879         if (cln::zerop(cln::the<cln::cl_N>(other.value)))
880                 throw std::overflow_error("division by zero");
881         return static_cast<const numeric &>((new numeric(value / other.value))->
882                                             setflag(status_flags::dynallocated));
883 }
884
885
886 /** Numerical exponentiation.  Raises *this to the power given as argument and
887  *  returns result as a numeric object on the heap.  Use internally only for
888  *  direct wrapping into an ex object, where the result would end up on the
889  *  heap anyways. */
890 const numeric &numeric::power_dyn(const numeric &other) const
891 {
892         // Efficiency shortcut: trap the neutral exponent (first try by pointer, then
893         // try harder, since calls to cln::expt() below may return amazing results for
894         // floating point exponent 1.0).
895         if (&other==_num1_p || cln::equal(other.value, _num1_p->value))
896                 return *this;
897         
898         if (cln::zerop(value)) {
899                 if (cln::zerop(other.value))
900                         throw std::domain_error("numeric::eval(): pow(0,0) is undefined");
901                 else if (cln::zerop(cln::realpart(other.value)))
902                         throw std::domain_error("numeric::eval(): pow(0,I) is undefined");
903                 else if (cln::minusp(cln::realpart(other.value)))
904                         throw std::overflow_error("numeric::eval(): division by zero");
905                 else
906                         return *_num0_p;
907         }
908         return static_cast<const numeric &>((new numeric(cln::expt(value, other.value)))->
909                                              setflag(status_flags::dynallocated));
910 }
911
912
913 const numeric &numeric::operator=(int i)
914 {
915         return operator=(numeric(i));
916 }
917
918
919 const numeric &numeric::operator=(unsigned int i)
920 {
921         return operator=(numeric(i));
922 }
923
924
925 const numeric &numeric::operator=(long i)
926 {
927         return operator=(numeric(i));
928 }
929
930
931 const numeric &numeric::operator=(unsigned long i)
932 {
933         return operator=(numeric(i));
934 }
935
936
937 const numeric &numeric::operator=(double d)
938 {
939         return operator=(numeric(d));
940 }
941
942
943 const numeric &numeric::operator=(const char * s)
944 {
945         return operator=(numeric(s));
946 }
947
948
949 /** Inverse of a number. */
950 const numeric numeric::inverse() const
951 {
952         if (cln::zerop(value))
953                 throw std::overflow_error("numeric::inverse(): division by zero");
954         return numeric(cln::recip(value));
955 }
956
957 /** Return the step function of a numeric. The imaginary part of it is
958  *  ignored because the step function is generally considered real but
959  *  a numeric may develop a small imaginary part due to rounding errors.
960  */
961 numeric numeric::step() const
962 {       cln::cl_R r = cln::realpart(value);
963         if(cln::zerop(r))
964                 return numeric(1,2);
965         if(cln::plusp(r))
966                 return 1;
967         return 0;
968 }
969
970 /** Return the complex half-plane (left or right) in which the number lies.
971  *  csgn(x)==0 for x==0, csgn(x)==1 for Re(x)>0 or Re(x)=0 and Im(x)>0,
972  *  csgn(x)==-1 for Re(x)<0 or Re(x)=0 and Im(x)<0.
973  *
974  *  @see numeric::compare(const numeric &other) */
975 int numeric::csgn() const
976 {
977         if (cln::zerop(value))
978                 return 0;
979         cln::cl_R r = cln::realpart(value);
980         if (!cln::zerop(r)) {
981                 if (cln::plusp(r))
982                         return 1;
983                 else
984                         return -1;
985         } else {
986                 if (cln::plusp(cln::imagpart(value)))
987                         return 1;
988                 else
989                         return -1;
990         }
991 }
992
993
994 /** This method establishes a canonical order on all numbers.  For complex
995  *  numbers this is not possible in a mathematically consistent way but we need
996  *  to establish some order and it ought to be fast.  So we simply define it
997  *  to be compatible with our method csgn.
998  *
999  *  @return csgn(*this-other)
1000  *  @see numeric::csgn() */
1001 int numeric::compare(const numeric &other) const
1002 {
1003         // Comparing two real numbers?
1004         if (cln::instanceof(value, cln::cl_R_ring) &&
1005                 cln::instanceof(other.value, cln::cl_R_ring))
1006                 // Yes, so just cln::compare them
1007                 return cln::compare(cln::the<cln::cl_R>(value), cln::the<cln::cl_R>(other.value));
1008         else {
1009                 // No, first cln::compare real parts...
1010                 cl_signean real_cmp = cln::compare(cln::realpart(value), cln::realpart(other.value));
1011                 if (real_cmp)
1012                         return real_cmp;
1013                 // ...and then the imaginary parts.
1014                 return cln::compare(cln::imagpart(value), cln::imagpart(other.value));
1015         }
1016 }
1017
1018
1019 bool numeric::is_equal(const numeric &other) const
1020 {
1021         return cln::equal(value, other.value);
1022 }
1023
1024
1025 /** True if object is zero. */
1026 bool numeric::is_zero() const
1027 {
1028         return cln::zerop(value);
1029 }
1030
1031
1032 /** True if object is not complex and greater than zero. */
1033 bool numeric::is_positive() const
1034 {
1035         if (cln::instanceof(value, cln::cl_R_ring))  // real?
1036                 return cln::plusp(cln::the<cln::cl_R>(value));
1037         return false;
1038 }
1039
1040
1041 /** True if object is not complex and less than zero. */
1042 bool numeric::is_negative() const
1043 {
1044         if (cln::instanceof(value, cln::cl_R_ring))  // real?
1045                 return cln::minusp(cln::the<cln::cl_R>(value));
1046         return false;
1047 }
1048
1049
1050 /** True if object is a non-complex integer. */
1051 bool numeric::is_integer() const
1052 {
1053         return cln::instanceof(value, cln::cl_I_ring);
1054 }
1055
1056
1057 /** True if object is an exact integer greater than zero. */
1058 bool numeric::is_pos_integer() const
1059 {
1060         return (cln::instanceof(value, cln::cl_I_ring) && cln::plusp(cln::the<cln::cl_I>(value)));
1061 }
1062
1063
1064 /** True if object is an exact integer greater or equal zero. */
1065 bool numeric::is_nonneg_integer() const
1066 {
1067         return (cln::instanceof(value, cln::cl_I_ring) && !cln::minusp(cln::the<cln::cl_I>(value)));
1068 }
1069
1070
1071 /** True if object is an exact even integer. */
1072 bool numeric::is_even() const
1073 {
1074         return (cln::instanceof(value, cln::cl_I_ring) && cln::evenp(cln::the<cln::cl_I>(value)));
1075 }
1076
1077
1078 /** True if object is an exact odd integer. */
1079 bool numeric::is_odd() const
1080 {
1081         return (cln::instanceof(value, cln::cl_I_ring) && cln::oddp(cln::the<cln::cl_I>(value)));
1082 }
1083
1084
1085 /** Probabilistic primality test.
1086  *
1087  *  @return  true if object is exact integer and prime. */
1088 bool numeric::is_prime() const
1089 {
1090         return (cln::instanceof(value, cln::cl_I_ring)  // integer?
1091              && cln::plusp(cln::the<cln::cl_I>(value))  // positive?
1092              && cln::isprobprime(cln::the<cln::cl_I>(value)));
1093 }
1094
1095
1096 /** True if object is an exact rational number, may even be complex
1097  *  (denominator may be unity). */
1098 bool numeric::is_rational() const
1099 {
1100         return cln::instanceof(value, cln::cl_RA_ring);
1101 }
1102
1103
1104 /** True if object is a real integer, rational or float (but not complex). */
1105 bool numeric::is_real() const
1106 {
1107         return cln::instanceof(value, cln::cl_R_ring);
1108 }
1109
1110
1111 bool numeric::operator==(const numeric &other) const
1112 {
1113         return cln::equal(value, other.value);
1114 }
1115
1116
1117 bool numeric::operator!=(const numeric &other) const
1118 {
1119         return !cln::equal(value, other.value);
1120 }
1121
1122
1123 /** True if object is element of the domain of integers extended by I, i.e. is
1124  *  of the form a+b*I, where a and b are integers. */
1125 bool numeric::is_cinteger() const
1126 {
1127         if (cln::instanceof(value, cln::cl_I_ring))
1128                 return true;
1129         else if (!this->is_real()) {  // complex case, handle n+m*I
1130                 if (cln::instanceof(cln::realpart(value), cln::cl_I_ring) &&
1131                     cln::instanceof(cln::imagpart(value), cln::cl_I_ring))
1132                         return true;
1133         }
1134         return false;
1135 }
1136
1137
1138 /** True if object is an exact rational number, may even be complex
1139  *  (denominator may be unity). */
1140 bool numeric::is_crational() const
1141 {
1142         if (cln::instanceof(value, cln::cl_RA_ring))
1143                 return true;
1144         else if (!this->is_real()) {  // complex case, handle Q(i):
1145                 if (cln::instanceof(cln::realpart(value), cln::cl_RA_ring) &&
1146                     cln::instanceof(cln::imagpart(value), cln::cl_RA_ring))
1147                         return true;
1148         }
1149         return false;
1150 }
1151
1152
1153 /** Numerical comparison: less.
1154  *
1155  *  @exception invalid_argument (complex inequality) */ 
1156 bool numeric::operator<(const numeric &other) const
1157 {
1158         if (this->is_real() && other.is_real())
1159                 return (cln::the<cln::cl_R>(value) < cln::the<cln::cl_R>(other.value));
1160         throw std::invalid_argument("numeric::operator<(): complex inequality");
1161 }
1162
1163
1164 /** Numerical comparison: less or equal.
1165  *
1166  *  @exception invalid_argument (complex inequality) */ 
1167 bool numeric::operator<=(const numeric &other) const
1168 {
1169         if (this->is_real() && other.is_real())
1170                 return (cln::the<cln::cl_R>(value) <= cln::the<cln::cl_R>(other.value));
1171         throw std::invalid_argument("numeric::operator<=(): complex inequality");
1172 }
1173
1174
1175 /** Numerical comparison: greater.
1176  *
1177  *  @exception invalid_argument (complex inequality) */ 
1178 bool numeric::operator>(const numeric &other) const
1179 {
1180         if (this->is_real() && other.is_real())
1181                 return (cln::the<cln::cl_R>(value) > cln::the<cln::cl_R>(other.value));
1182         throw std::invalid_argument("numeric::operator>(): complex inequality");
1183 }
1184
1185
1186 /** Numerical comparison: greater or equal.
1187  *
1188  *  @exception invalid_argument (complex inequality) */  
1189 bool numeric::operator>=(const numeric &other) const
1190 {
1191         if (this->is_real() && other.is_real())
1192                 return (cln::the<cln::cl_R>(value) >= cln::the<cln::cl_R>(other.value));
1193         throw std::invalid_argument("numeric::operator>=(): complex inequality");
1194 }
1195
1196
1197 /** Converts numeric types to machine's int.  You should check with
1198  *  is_integer() if the number is really an integer before calling this method.
1199  *  You may also consider checking the range first. */
1200 int numeric::to_int() const
1201 {
1202         GINAC_ASSERT(this->is_integer());
1203         return cln::cl_I_to_int(cln::the<cln::cl_I>(value));
1204 }
1205
1206
1207 /** Converts numeric types to machine's long.  You should check with
1208  *  is_integer() if the number is really an integer before calling this method.
1209  *  You may also consider checking the range first. */
1210 long numeric::to_long() const
1211 {
1212         GINAC_ASSERT(this->is_integer());
1213         return cln::cl_I_to_long(cln::the<cln::cl_I>(value));
1214 }
1215
1216
1217 /** Converts numeric types to machine's double. You should check with is_real()
1218  *  if the number is really not complex before calling this method. */
1219 double numeric::to_double() const
1220 {
1221         GINAC_ASSERT(this->is_real());
1222         return cln::double_approx(cln::realpart(value));
1223 }
1224
1225
1226 /** Returns a new CLN object of type cl_N, representing the value of *this.
1227  *  This method may be used when mixing GiNaC and CLN in one project.
1228  */
1229 cln::cl_N numeric::to_cl_N() const
1230 {
1231         return value;
1232 }
1233
1234
1235 /** Real part of a number. */
1236 const numeric numeric::real() const
1237 {
1238         return numeric(cln::realpart(value));
1239 }
1240
1241
1242 /** Imaginary part of a number. */
1243 const numeric numeric::imag() const
1244 {
1245         return numeric(cln::imagpart(value));
1246 }
1247
1248
1249 /** Numerator.  Computes the numerator of rational numbers, rationalized
1250  *  numerator of complex if real and imaginary part are both rational numbers
1251  *  (i.e numer(4/3+5/6*I) == 8+5*I), the number carrying the sign in all other
1252  *  cases. */
1253 const numeric numeric::numer() const
1254 {
1255         if (cln::instanceof(value, cln::cl_I_ring))
1256                 return numeric(*this);  // integer case
1257         
1258         else if (cln::instanceof(value, cln::cl_RA_ring))
1259                 return numeric(cln::numerator(cln::the<cln::cl_RA>(value)));
1260         
1261         else if (!this->is_real()) {  // complex case, handle Q(i):
1262                 const cln::cl_RA r = cln::the<cln::cl_RA>(cln::realpart(value));
1263                 const cln::cl_RA i = cln::the<cln::cl_RA>(cln::imagpart(value));
1264                 if (cln::instanceof(r, cln::cl_I_ring) && cln::instanceof(i, cln::cl_I_ring))
1265                         return numeric(*this);
1266                 if (cln::instanceof(r, cln::cl_I_ring) && cln::instanceof(i, cln::cl_RA_ring))
1267                         return numeric(cln::complex(r*cln::denominator(i), cln::numerator(i)));
1268                 if (cln::instanceof(r, cln::cl_RA_ring) && cln::instanceof(i, cln::cl_I_ring))
1269                         return numeric(cln::complex(cln::numerator(r), i*cln::denominator(r)));
1270                 if (cln::instanceof(r, cln::cl_RA_ring) && cln::instanceof(i, cln::cl_RA_ring)) {
1271                         const cln::cl_I s = cln::lcm(cln::denominator(r), cln::denominator(i));
1272                         return numeric(cln::complex(cln::numerator(r)*(cln::exquo(s,cln::denominator(r))),
1273                                                             cln::numerator(i)*(cln::exquo(s,cln::denominator(i)))));
1274                 }
1275         }
1276         // at least one float encountered
1277         return numeric(*this);
1278 }
1279
1280
1281 /** Denominator.  Computes the denominator of rational numbers, common integer
1282  *  denominator of complex if real and imaginary part are both rational numbers
1283  *  (i.e denom(4/3+5/6*I) == 6), one in all other cases. */
1284 const numeric numeric::denom() const
1285 {
1286         if (cln::instanceof(value, cln::cl_I_ring))
1287                 return *_num1_p;  // integer case
1288         
1289         if (cln::instanceof(value, cln::cl_RA_ring))
1290                 return numeric(cln::denominator(cln::the<cln::cl_RA>(value)));
1291         
1292         if (!this->is_real()) {  // complex case, handle Q(i):
1293                 const cln::cl_RA r = cln::the<cln::cl_RA>(cln::realpart(value));
1294                 const cln::cl_RA i = cln::the<cln::cl_RA>(cln::imagpart(value));
1295                 if (cln::instanceof(r, cln::cl_I_ring) && cln::instanceof(i, cln::cl_I_ring))
1296                         return *_num1_p;
1297                 if (cln::instanceof(r, cln::cl_I_ring) && cln::instanceof(i, cln::cl_RA_ring))
1298                         return numeric(cln::denominator(i));
1299                 if (cln::instanceof(r, cln::cl_RA_ring) && cln::instanceof(i, cln::cl_I_ring))
1300                         return numeric(cln::denominator(r));
1301                 if (cln::instanceof(r, cln::cl_RA_ring) && cln::instanceof(i, cln::cl_RA_ring))
1302                         return numeric(cln::lcm(cln::denominator(r), cln::denominator(i)));
1303         }
1304         // at least one float encountered
1305         return *_num1_p;
1306 }
1307
1308
1309 /** Size in binary notation.  For integers, this is the smallest n >= 0 such
1310  *  that -2^n <= x < 2^n. If x > 0, this is the unique n > 0 such that
1311  *  2^(n-1) <= x < 2^n.
1312  *
1313  *  @return  number of bits (excluding sign) needed to represent that number
1314  *  in two's complement if it is an integer, 0 otherwise. */    
1315 int numeric::int_length() const
1316 {
1317         if (cln::instanceof(value, cln::cl_I_ring))
1318                 return cln::integer_length(cln::the<cln::cl_I>(value));
1319         else
1320                 return 0;
1321 }
1322
1323 //////////
1324 // global constants
1325 //////////
1326
1327 /** Imaginary unit.  This is not a constant but a numeric since we are
1328  *  natively handing complex numbers anyways, so in each expression containing
1329  *  an I it is automatically eval'ed away anyhow. */
1330 const numeric I = numeric(cln::complex(cln::cl_I(0),cln::cl_I(1)));
1331
1332
1333 /** Exponential function.
1334  *
1335  *  @return  arbitrary precision numerical exp(x). */
1336 const numeric exp(const numeric &x)
1337 {
1338         return cln::exp(x.to_cl_N());
1339 }
1340
1341
1342 /** Natural logarithm.
1343  *
1344  *  @param x complex number
1345  *  @return  arbitrary precision numerical log(x).
1346  *  @exception pole_error("log(): logarithmic pole",0) */
1347 const numeric log(const numeric &x)
1348 {
1349         if (x.is_zero())
1350                 throw pole_error("log(): logarithmic pole",0);
1351         return cln::log(x.to_cl_N());
1352 }
1353
1354
1355 /** Numeric sine (trigonometric function).
1356  *
1357  *  @return  arbitrary precision numerical sin(x). */
1358 const numeric sin(const numeric &x)
1359 {
1360         return cln::sin(x.to_cl_N());
1361 }
1362
1363
1364 /** Numeric cosine (trigonometric function).
1365  *
1366  *  @return  arbitrary precision numerical cos(x). */
1367 const numeric cos(const numeric &x)
1368 {
1369         return cln::cos(x.to_cl_N());
1370 }
1371
1372
1373 /** Numeric tangent (trigonometric function).
1374  *
1375  *  @return  arbitrary precision numerical tan(x). */
1376 const numeric tan(const numeric &x)
1377 {
1378         return cln::tan(x.to_cl_N());
1379 }
1380         
1381
1382 /** Numeric inverse sine (trigonometric function).
1383  *
1384  *  @return  arbitrary precision numerical asin(x). */
1385 const numeric asin(const numeric &x)
1386 {
1387         return cln::asin(x.to_cl_N());
1388 }
1389
1390
1391 /** Numeric inverse cosine (trigonometric function).
1392  *
1393  *  @return  arbitrary precision numerical acos(x). */
1394 const numeric acos(const numeric &x)
1395 {
1396         return cln::acos(x.to_cl_N());
1397 }
1398         
1399
1400 /** Arcustangent.
1401  *
1402  *  @param x complex number
1403  *  @return atan(x)
1404  *  @exception pole_error("atan(): logarithmic pole",0) */
1405 const numeric atan(const numeric &x)
1406 {
1407         if (!x.is_real() &&
1408             x.real().is_zero() &&
1409             abs(x.imag()).is_equal(*_num1_p))
1410                 throw pole_error("atan(): logarithmic pole",0);
1411         return cln::atan(x.to_cl_N());
1412 }
1413
1414
1415 /** Arcustangent.
1416  *
1417  *  @param x real number
1418  *  @param y real number
1419  *  @return atan(y/x) */
1420 const numeric atan(const numeric &y, const numeric &x)
1421 {
1422         if (x.is_real() && y.is_real())
1423                 return cln::atan(cln::the<cln::cl_R>(x.to_cl_N()),
1424                                  cln::the<cln::cl_R>(y.to_cl_N()));
1425         else
1426                 throw std::invalid_argument("atan(): complex argument");        
1427 }
1428
1429
1430 /** Numeric hyperbolic sine (trigonometric function).
1431  *
1432  *  @return  arbitrary precision numerical sinh(x). */
1433 const numeric sinh(const numeric &x)
1434 {
1435         return cln::sinh(x.to_cl_N());
1436 }
1437
1438
1439 /** Numeric hyperbolic cosine (trigonometric function).
1440  *
1441  *  @return  arbitrary precision numerical cosh(x). */
1442 const numeric cosh(const numeric &x)
1443 {
1444         return cln::cosh(x.to_cl_N());
1445 }
1446
1447
1448 /** Numeric hyperbolic tangent (trigonometric function).
1449  *
1450  *  @return  arbitrary precision numerical tanh(x). */
1451 const numeric tanh(const numeric &x)
1452 {
1453         return cln::tanh(x.to_cl_N());
1454 }
1455         
1456
1457 /** Numeric inverse hyperbolic sine (trigonometric function).
1458  *
1459  *  @return  arbitrary precision numerical asinh(x). */
1460 const numeric asinh(const numeric &x)
1461 {
1462         return cln::asinh(x.to_cl_N());
1463 }
1464
1465
1466 /** Numeric inverse hyperbolic cosine (trigonometric function).
1467  *
1468  *  @return  arbitrary precision numerical acosh(x). */
1469 const numeric acosh(const numeric &x)
1470 {
1471         return cln::acosh(x.to_cl_N());
1472 }
1473
1474
1475 /** Numeric inverse hyperbolic tangent (trigonometric function).
1476  *
1477  *  @return  arbitrary precision numerical atanh(x). */
1478 const numeric atanh(const numeric &x)
1479 {
1480         return cln::atanh(x.to_cl_N());
1481 }
1482
1483
1484 /*static cln::cl_N Li2_series(const ::cl_N &x,
1485                             const ::float_format_t &prec)
1486 {
1487         // Note: argument must be in the unit circle
1488         // This is very inefficient unless we have fast floating point Bernoulli
1489         // numbers implemented!
1490         cln::cl_N c1 = -cln::log(1-x);
1491         cln::cl_N c2 = c1;
1492         // hard-wire the first two Bernoulli numbers
1493         cln::cl_N acc = c1 - cln::square(c1)/4;
1494         cln::cl_N aug;
1495         cln::cl_F pisq = cln::square(cln::cl_pi(prec));  // pi^2
1496         cln::cl_F piac = cln::cl_float(1, prec);  // accumulator: pi^(2*i)
1497         unsigned i = 1;
1498         c1 = cln::square(c1);
1499         do {
1500                 c2 = c1 * c2;
1501                 piac = piac * pisq;
1502                 aug = c2 * (*(bernoulli(numeric(2*i)).clnptr())) / cln::factorial(2*i+1);
1503                 // aug = c2 * cln::cl_I(i%2 ? 1 : -1) / cln::cl_I(2*i+1) * cln::cl_zeta(2*i, prec) / piac / (cln::cl_I(1)<<(2*i-1));
1504                 acc = acc + aug;
1505                 ++i;
1506         } while (acc != acc+aug);
1507         return acc;
1508 }*/
1509
1510 /** Numeric evaluation of Dilogarithm within circle of convergence (unit
1511  *  circle) using a power series. */
1512 static cln::cl_N Li2_series(const cln::cl_N &x,
1513                             const cln::float_format_t &prec)
1514 {
1515         // Note: argument must be in the unit circle
1516         cln::cl_N aug, acc;
1517         cln::cl_N num = cln::complex(cln::cl_float(1, prec), 0);
1518         cln::cl_I den = 0;
1519         unsigned i = 1;
1520         do {
1521                 num = num * x;
1522                 den = den + i;  // 1, 4, 9, 16, ...
1523                 i += 2;
1524                 aug = num / den;
1525                 acc = acc + aug;
1526         } while (acc != acc+aug);
1527         return acc;
1528 }
1529
1530 /** Folds Li2's argument inside a small rectangle to enhance convergence. */
1531 static cln::cl_N Li2_projection(const cln::cl_N &x,
1532                                 const cln::float_format_t &prec)
1533 {
1534         const cln::cl_R re = cln::realpart(x);
1535         const cln::cl_R im = cln::imagpart(x);
1536         if (re > cln::cl_F(".5"))
1537                 // zeta(2) - Li2(1-x) - log(x)*log(1-x)
1538                 return(cln::zeta(2)
1539                        - Li2_series(1-x, prec)
1540                        - cln::log(x)*cln::log(1-x));
1541         if ((re <= 0 && cln::abs(im) > cln::cl_F(".75")) || (re < cln::cl_F("-.5")))
1542                 // -log(1-x)^2 / 2 - Li2(x/(x-1))
1543                 return(- cln::square(cln::log(1-x))/2
1544                        - Li2_series(x/(x-1), prec));
1545         if (re > 0 && cln::abs(im) > cln::cl_LF(".75"))
1546                 // Li2(x^2)/2 - Li2(-x)
1547                 return(Li2_projection(cln::square(x), prec)/2
1548                        - Li2_projection(-x, prec));
1549         return Li2_series(x, prec);
1550 }
1551
1552 /** Numeric evaluation of Dilogarithm.  The domain is the entire complex plane,
1553  *  the branch cut lies along the positive real axis, starting at 1 and
1554  *  continuous with quadrant IV.
1555  *
1556  *  @return  arbitrary precision numerical Li2(x). */
1557 const numeric Li2(const numeric &x)
1558 {
1559         if (x.is_zero())
1560                 return *_num0_p;
1561         
1562         // what is the desired float format?
1563         // first guess: default format
1564         cln::float_format_t prec = cln::default_float_format;
1565         const cln::cl_N value = x.to_cl_N();
1566         // second guess: the argument's format
1567         if (!x.real().is_rational())
1568                 prec = cln::float_format(cln::the<cln::cl_F>(cln::realpart(value)));
1569         else if (!x.imag().is_rational())
1570                 prec = cln::float_format(cln::the<cln::cl_F>(cln::imagpart(value)));
1571         
1572         if (value==1)  // may cause trouble with log(1-x)
1573                 return cln::zeta(2, prec);
1574         
1575         if (cln::abs(value) > 1)
1576                 // -log(-x)^2 / 2 - zeta(2) - Li2(1/x)
1577                 return(- cln::square(cln::log(-value))/2
1578                        - cln::zeta(2, prec)
1579                        - Li2_projection(cln::recip(value), prec));
1580         else
1581                 return Li2_projection(x.to_cl_N(), prec);
1582 }
1583
1584
1585 /** Numeric evaluation of Riemann's Zeta function.  Currently works only for
1586  *  integer arguments. */
1587 const numeric zeta(const numeric &x)
1588 {
1589         // A dirty hack to allow for things like zeta(3.0), since CLN currently
1590         // only knows about integer arguments and zeta(3).evalf() automatically
1591         // cascades down to zeta(3.0).evalf().  The trick is to rely on 3.0-3
1592         // being an exact zero for CLN, which can be tested and then we can just
1593         // pass the number casted to an int:
1594         if (x.is_real()) {
1595                 const int aux = (int)(cln::double_approx(cln::the<cln::cl_R>(x.to_cl_N())));
1596                 if (cln::zerop(x.to_cl_N()-aux))
1597                         return cln::zeta(aux);
1598         }
1599         throw dunno();
1600 }
1601
1602 class lanczos_coeffs
1603 {
1604         public:
1605                 lanczos_coeffs();
1606                 bool sufficiently_accurate(int digits);
1607                 int get_order() const { return current_vector->size(); }
1608                 numeric calc_lanczos_A(const numeric &) const;
1609         private:
1610                 static std::vector<numeric> coeffs_12; // Use in case Digits <= 20
1611                 static std::vector<numeric> coeffs_30; // Use in case Digigs <= 50
1612                 static std::vector<numeric> coeffs_60; // Use in case Digits <= 100
1613                 static std::vector<numeric> coeffs_120; // Use in case Digits <= 200
1614                 std::vector<numeric> *current_vector;
1615 };
1616
1617 std::vector<numeric> lanczos_coeffs::coeffs_12(12);
1618 std::vector<numeric> lanczos_coeffs::coeffs_30(30);
1619 std::vector<numeric> lanczos_coeffs::coeffs_60(60);
1620 std::vector<numeric> lanczos_coeffs::coeffs_120(120);
1621
1622 bool lanczos_coeffs::sufficiently_accurate(int digits)
1623 {       if (digits<=20) {
1624                 current_vector = &coeffs_12;
1625                 return true;
1626         }
1627         if (digits<=50) {
1628                 current_vector = &coeffs_30;
1629                 return true;
1630         }
1631         if (digits<=100) {
1632                 current_vector = &coeffs_60;
1633                 return true;
1634         }
1635         if (digits<=200) {
1636                 current_vector = &coeffs_120;
1637                 return true;
1638         }
1639         return false;
1640 }
1641
1642 numeric lanczos_coeffs::calc_lanczos_A(const numeric &x) const
1643 {
1644         numeric A = (*current_vector)[0];
1645         int size = current_vector->size();
1646         for (int i=1; i<size; ++i)
1647         A = A.add((*current_vector)[i]/(x.add(numeric(-1+i))));
1648         return A;
1649 }
1650
1651 // The values in this function have been calculated using the program
1652 // lanczos.cpp in the directory doc/examples. If you want to add more
1653 // digits, be sure to read the comments in that file.
1654 lanczos_coeffs::lanczos_coeffs()
1655 {       if (coeffs_12[0] != 0)
1656                 return;
1657         int store_digits = Digits;
1658         Digits = 22;
1659         coeffs_12[0] = numeric("1.000000000000000002194974863102775496587");
1660         coeffs_12[1] = numeric("133550.502942477423232096703994753698903");
1661         coeffs_12[2] = numeric("-492930.93529936026920053070245469905582");
1662         coeffs_12[3] = numeric("741287.473697611642492293025524275986598");
1663         coeffs_12[4] = numeric("-585097.37760399665198416642641725036094");
1664         coeffs_12[5] = numeric("260425.270330385275465083772352301818652");
1665         coeffs_12[6] = numeric("-65413.3533961142651069690504470463782994");
1666         coeffs_12[7] = numeric("8801.45963508441793636152568413199291892");
1667         coeffs_12[8] = numeric("-564.805024129362118607692062642312799553");
1668         coeffs_12[9] = numeric("13.80379833961490898061357227729422691903");
1669         coeffs_12[10] = numeric("-0.0807817619724537563116612761921260762075");
1670         coeffs_12[11] = numeric("3.47974801622326717770813986587340515986E-5");
1671         Digits = 56;
1672         coeffs_30[0] = numeric("1.0000000000000000000000000000000000000000000000445658922238202528026977308762");
1673         coeffs_30[1] = numeric("1.40445649204966682962030786915579421135474600150789821268713805046080310901683E13");
1674         coeffs_30[2] = numeric("-1.4473384178280338809560100504713144673757322488310852336205875273000116908753E14");
1675         coeffs_30[3] = numeric("6.9392104219998816400402602197781299548036066538116472480223222192156630720206E14");
1676         coeffs_30[4] = numeric("-2.05552680548452350127164925238339710431333013110755662640014074226849466382297E15");
1677         coeffs_30[5] = numeric("4.21346047774975891986783355395961145235696863271597017695734168781011785582523E15");
1678         coeffs_30[6] = numeric("-6.3439111294220458481092019992445750626799029041090235945435769621790257585491E15");
1679         coeffs_30[7] = numeric("7.2684029986336427327225410026373012514882246322145965580608264703248155838791E15");
1680         coeffs_30[8] = numeric("-6.4784969409198000751978874152931803231807770528527455966624850088042561231024E15");
1681         coeffs_30[9] = numeric("4.5545745239457403086706103662737668418631761744785802123770605916210445083544E15");
1682         coeffs_30[10] = numeric("-2.54592491966737919409139938046543941491145224466411852277136834553178078105403E15");
1683         coeffs_30[11] = numeric("1.1356718195163150156198936885250451780214219874255251444701005988134747787666E15");
1684         coeffs_30[12] = numeric("-4.04275236298036712070700727222520609783336229393218886420197964965371362011123E14");
1685         coeffs_30[13] = numeric("1.14472757259832757229433124273590647229089622322597383276758880048004748372644E14");
1686         coeffs_30[14] = numeric("-2.56166271828342920179612184110684658183432315551120625854181503468327037516717E13");
1687         coeffs_30[15] = numeric("4.4861708254018935131376878973710146069395814469656232761173409397653101421558E12");
1688         coeffs_30[16] = numeric("-6.0657495816705687896607821799338217335976369800808791959096705890743701166037E11");
1689         coeffs_30[17] = numeric("6.21975328147406581536747878587069711930541459818297675578654403265380823122363E10");
1690         coeffs_30[18] = numeric("-4.7255003764027411113501086372508071116675161078057298991208060427341079636661E9");
1691         coeffs_30[19] = numeric("2.5814613908651936680441351265410235295992556406609945442133129515256889464315E8");
1692         coeffs_30[20] = numeric("-9752115.5047412418881417732027953903591189993329461844657371497174389592441887");
1693         coeffs_30[21] = numeric("242056.60372411758318197954509546521913927205056839365620249547101194072057318");
1694         coeffs_30[22] = numeric("-3686.17673045938850138289555088011327333352145765167200561022138925168680049115");
1695         coeffs_30[23] = numeric("31.3494924501834034405048975310989414795238339283146314931357877820190435258517");
1696         coeffs_30[24] = numeric("-0.130254774344853676030752542814176943723937677940441021884132211221409382350105");
1697         coeffs_30[25] = numeric("2.16625679868432886771581352257834967866602495378408740265571976698475288337338E-4");
1698         coeffs_30[26] = numeric("-1.05077239977528252603869373455592388508233760416601143477182890107978206726294E-7");
1699         coeffs_30[27] = numeric("8.5728436055212340846907439451102962820713733082683634385104363203776378266115E-12");
1700         coeffs_30[28] = numeric("-3.9175430218003196379961975369936752665267219444417121562332986822123821080906E-17");
1701         coeffs_30[29] = numeric("1.06841715008998384033789050831892757796251622802680860264598247667384268519263E-24");
1702         Digits = 111;
1703         coeffs_60[0] = numeric("1.000000000000000000000000000000000000000000000000000000000000000000000000000000000000007301368866363013444179014835363181183419450549774");
1704         coeffs_60[1] = numeric("2.13152397525281235754468356918725048606852617746577461250754322057711822075135461598274984226013367948201688447853106595646692682568953E26");
1705         coeffs_60[2] = numeric("-4.548529924829267669336610112411669181387790087825260737133755173032543313325682598833009521765336124891170163525664509845740222794717604E27");
1706         coeffs_60[3] = numeric("4.6879437426294973235875133160595324795437824160731608900005486977197800919261614723948577079551305728583507312310069280623018775850412E28");
1707         coeffs_60[4] = numeric("-3.10861265267020467624457768823845414206135580030123228715133927538323570190367768297139526311161786169387040978744732051184844409191231E29");
1708         coeffs_60[5] = numeric("1.490599577483981276717037178787147902256911799467742317379590487947009001487476793680630580522955117318124168494382267800788736334308E30");
1709         coeffs_60[6] = numeric("-5.50755504045738806940255910881807353185463857314393682608295373644157298562106198431098170107741597645409216199785852260920496247655646E30");
1710         coeffs_60[7] = numeric("1.631668518639067070100242032960081591016027803392225476881353619523143028349554534276268195490790113905102273979193269720381236708853746E31");
1711         coeffs_60[8] = numeric("-3.9823057865511431381368541930378720290638930941334849821428293955264049587073723565727061718251925950255036781219414607001763225298119E31");
1712         coeffs_60[9] = numeric("8.16425963140638737297557821827674142140347732117757126331775708561852858085860735359056658172512163756926693444882201094206795155146202E31");
1713         coeffs_60[10] = numeric("-1.426548236351667330492229413193359354309705120770113917370333660827270957172393778178051742077714657388432785747112574456061555034588373E32");
1714         coeffs_60[11] = numeric("2.14821861694536170414714365485614715949416083667308573285807894910742621740039595483105992136915471547998283891842897000924199509164799E32");
1715         coeffs_60[12] = numeric("-2.81233281290021706519566203146379395136352592819625378308636458418501787286411189089807465993150834399778687427813779950602826375635436E32");
1716         coeffs_60[13] = numeric("3.222783358826786224404373038021509245352188734386849874296356404770508945395436142634892645963851510893216093037595555902121365717716154E32");
1717         coeffs_60[14] = numeric("-3.250409075716999887328836263791911196138647661969351655925350981785153422033954649154242209471752219326556302767677017396179477496948985E32");
1718         coeffs_60[15] = numeric("2.897783210826628399578158893643627107049805015801395657097255344786041806868455726759715576609013221857885740543509045196763816109465777E32");
1719         coeffs_60[16] = numeric("-2.29136919195969647663887561122314618826917230275433296293059354280077561407373070937197721317435316121212106870152659174216557412788874E32");
1720         coeffs_60[17] = numeric("1.611288006928200619663496306945576194382628760891807800193737346171844871295031418730500946186238469256168610033434708290528870722514911E32");
1721         coeffs_60[18] = numeric("-1.009632466053186015034182792930705530447465885425278324598880797572411588461783484686932989855033967294215840157892487264656571258327313E32");
1722         coeffs_60[19] = numeric("5.64520651042784179741815642438421132518008517154942873706221206276337451930555926854271086501686252334516011905237101877044320182980053E31");
1723         coeffs_60[20] = numeric("-2.81912877441595327683492797147781153304080114512116755424671954256427789550109614317215500473322621746416096887803928883800132453510579E31");
1724         coeffs_60[21] = numeric("1.257934257434294354026338893625531254891110662111965279263894740714811495074726866375858553579650295684850594211744093582249745250079168E31");
1725         coeffs_60[22] = numeric("-5.01544407232599962845688086323662774702854661522104499328570796808858930542190600193190967249971520736397504227594619670310759235566195E30");
1726         coeffs_60[23] = numeric("1.786035425040937365122699272239542501767986628253845452136132211710520249195280548478081559036323184490150479070929923213045153333111476E30");
1727         coeffs_60[24] = numeric("-5.67605430104368150038863866362066081946938075036837029856903803768657069745962581310398542442108872722631658677177822712376500859930109E29");
1728         coeffs_60[25] = numeric("1.607878222558573982505999018371559631909289246981490321219650132406126936263403946310818841465409950661433241956831540547593847161412447E29");
1729         coeffs_60[26] = numeric("-4.05332042374309456146169816144083508836132423024788116321074411679252452773181941601763924562378611113519038766273534176937279867894066E28");
1730         coeffs_60[27] = numeric("9.07493596543985672039002802030098143847503854224661484396413496012780904911929710460264147600378604646912175235271954302119768907744722E27");
1731         coeffs_60[28] = numeric("-1.800074018924350353143489874038038169034914082090587278672411654146678304871125651069902339241049552886098125667720181441150399048551683E27");
1732         coeffs_60[29] = numeric("3.154250688078046681602499411296013099183808016176992164829953752437167774310360166977972581670851790753785195101324694758021403186162394E26");
1733         coeffs_60[30] = numeric("-4.86629244083379932983782216256143990390210226006560452979433243294026128577640975980482675864760717747936401374948595060083674140963469E25");
1734         coeffs_60[31] = numeric("6.58428611248406176613133080039790689602908099995907522692286902207707012485115422092589779128693214784991500936878932461139361901566087E24");
1735         coeffs_60[32] = numeric("-7.77846893445970039116628280774361378296946997639645747353868461156972352366479641995295874152354776734003001337605345817120316052066992E23");
1736         coeffs_60[33] = numeric("7.98268735994772082084918485121285571015813651374688487489679943603727447378945977989630573952891101472578977333720105112837324185659362E22");
1737         coeffs_60[34] = numeric("-7.07562692971089746095546542541499489835693326760069291570193808615779224025348460132750549389189539682228913778397783434269420284483726E21");
1738         coeffs_60[35] = numeric("5.381346729881846847476909845563262674288431852755093265786345982700437823098162630059919716651136095720390719236493773958116646152386075E20");
1739         coeffs_60[36] = numeric("-3.4856856542678356876484367392130359114150104987588151214926676834365219571876912071608359944324610844909103855562977795837329347647911E19");
1740         coeffs_60[37] = numeric("1.90665542883474657677037950113781854248329048412482665873254624417996252139138481002200079466749149325431679310476862249520001277129217E18");
1741         coeffs_60[38] = numeric("-8.72254994006151131395107200045641306281165826830744222866994799005490857259177347821280095689079457417603257537321939951004603693393316E16");
1742         coeffs_60[39] = numeric("3.30066663941625244322555483012774856710545517350986120571194216206848716066355962922968824538055042855044917677713272771363157100391997E15");
1743         coeffs_60[40] = numeric("-1.020092089391030771746960980075254826475625668908623135552682999358854102567810002206013823466362488147261886160954607897574298699485318E14");
1744         coeffs_60[41] = numeric("2.537518136375035057088980117582986067754938584307761188810498418760131416720976321039509027979006220650166651208980823946300429957067604E12");
1745         coeffs_60[42] = numeric("-4.99523339577986301543863423322168947825482352498610406809585164155176248614834684219539096936869521198401912030883142734471627752449382E10");
1746         coeffs_60[43] = numeric("7.62961024898383965152735310352890448678585029645218309944823403624458716639413808284778269959424212699922000610764015063766429510499158E8");
1747         coeffs_60[44] = numeric("-8834336.1370238009649936481782352367054397712953420330251745022286767420934395739052638862442455545176778475848478708230456099596423988");
1748         coeffs_60[45] = numeric("75445.9196169409678879362111492280315111800786619928588067631801224813888137547544321383450353324917130013984795690223150786036557545929");
1749         coeffs_60[46] = numeric("-459.8458738886001056822131294892698769439281099450630714273592488999986769567563218319365007529495798105783705491469742412340762305916056");
1750         coeffs_60[47] = numeric("1.922366163948404706136462977961544621491268971185908661903800938507393909575693892375103171073678191394626251633433930639174604982075991");
1751         coeffs_60[48] = numeric("-0.00524987734300376305383172698735851896799115189212445098242699916121836353753886238290792298378658233479210271064792489583846726184351881");
1752         coeffs_60[49] = numeric("8.81521840386771771843311455937479573971716020932982441671173279504850522350287085310420429874536637110755391716691475171030099411021337E-6");
1753         coeffs_60[50] = numeric("-8.42883518072336499031504944519862331274440110738275125460829656821173301216150526266773841539372995424665091651911614576906895281293397E-9");
1754         coeffs_60[51] = numeric("4.1559932977982056953309753711587342647729282359841592558743510304569204546713517319749817560490538963802716194154620384631597656968764E-12");
1755         coeffs_60[52] = numeric("-9.26494376646923216540342478135986593801117330292329759013854851055518195892306285985326338987592590319793280515888731024676428929933443E-16");
1756         coeffs_60[53] = numeric("7.80165274836868312019654872701978288745672229459298320116385383568401529728308916875595120085091565550085090877341856355815270191309086E-20");
1757         coeffs_60[54] = numeric("-1.922049272463411538721456378153955404697617250978865956250065913541261535132290272529565880980548519758359440057376306817458561627984943E-24");
1758         coeffs_60[55] = numeric("9.46189821976955264154519811789356895736753858729897267240554901027053652869864043679401817030067356960879571432881603836052222728024736E-30");
1759         coeffs_60[56] = numeric("-5.06814507370603015985813829025522226614719112357562650414521252967497371724973383019436312018485582224796590023220166954083973156538672E-36");
1760         coeffs_60[57] = numeric("1.022249951013180267209479446016461291488484443236553319305574600271584296178678167457933405768832443689762998392188667506451117069946568E-43");
1761         coeffs_60[58] = numeric("-1.158776990252157075591666544736990249102708476419363164106801472497162421792350234416969073422311477683246469337273059290064112071625785E-47");
1762         coeffs_60[59] = numeric("4.27222387142756413870104074160770434521893587460314314301300261552300727494374933435001642531897059406263033431558827297492879960920275E-49");
1763         Digits = 222;
1764         coeffs_120[0] = numeric("1.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060166025676976656004344991957470171590616719251813003320122316373430327091055571");
1765         coeffs_120[1] = numeric("3.4497260317073952007403696383770947678893302981614719279265682622766639811173298171511730607823612517530376844024218507032522459279662180470113961839690189982241536061314319614353993672315096520499373373015802582693649149063603309572777186560148513524E52");
1766         coeffs_120[2] = numeric("-1.4975581565000729527538170857594663742319328925831469933998274880997450758924704742659571258591716460336677591345828722528085692201176737000527729600671680178988361119859420301844184208079614468449296788394212801103162564922199859549237082372776667464E54");
1767         coeffs_120[3] = numeric("3.1957762163065481328529158845807843312720427291703934903666695190945338610786360201875291048323381336567812569171891600400186742244091402566230953251621720778096033490814848238417212345597975915378369497445590090951446115848410773972658485451963575288E55");
1768         coeffs_120[4] = numeric("-4.4689623509319752841609439083871154399631153121231062689347162975834499076693093642474289117173045421812089871506249999929076992135798925381959196225961791389783472385803138226317976820364502651110639008585046458007356178875618627927171581950486124233E56");
1769         coeffs_120[5] = numeric("4.606068718424276543329442566011849623375399823565351941825685310847310447457609082356012685588953435307896055516214072529445026693975872604267789672469025113562486157850515006504573881812473997762948360804814769118883992998548055557441646946685125118E57");
1770         coeffs_120[6] = numeric("-3.7314461146854666499272326592212099391213696621869706562566612605818861385928266960370453310708465394226398321257508947092784006446784523328681347046673172481746936234783770854350210504707173921547794426833735429199925024679815789545465854297845328325E58");
1771         coeffs_120[7] = numeric("2.474425401670711256989398808079221298913654027234786607507813220440957186918973475366048940039541074278444160674001228864321389049663140487504402096319272526201782217412803784224929141788255724630940381342478088455751340159338461174261577243566175687E59");
1772         coeffs_120[8] = numeric("-1.3811875718622847750042362590249762290599823842851465148429257970104907280458901604054390293828410620002370526629527048636126473391278330353375163563724888073254512227198849135923692811222561965740181944727170495185714496890490479692693474125883791901E60");
1773         coeffs_120[9] = numeric("6.623089858532754482582703479109160446021743439335073883710993620625687271109284320721410901325182604938578905712329203551531862389936804947105415805829404869727743706364603519433193421234231031076682156125442577335383798263985569601899041876776866622E60");
1774         coeffs_120[10] = numeric("-2.7709515004299938864490083840820063124223529009388282231525445615826433364331567602934962481829061542793349831611106716261513624279121506887680318284535361848032886450351898892264386237450622827397559067350672965967202437971930333676917000390477963866E61");
1775         coeffs_120[11] = numeric("1.02386112293172223921263435003659366453292875147351461165091656394534393086780717052422266565203902889367201592668259202439166666819852985689989767402099479793087277263747942659943270101657408462079787397068550734516045511611701546009078868077038808757E62");
1776         coeffs_120[12] = numeric("-3.3740197731917655541744976218513993073761175468772389726802124778433432226803314067431898210976006853342921093194297198044021414900546886804610561082663076825192459864843102368108908666053756409152492134638014803233805912009476407113691438596300794146E62");
1777         coeffs_120[13] = numeric("9.996217786487670355655374796561399578704294298563457268841140703036898520360123177193155340144551120260016445533739357030180277693840431766824113840895797510199955331557143980793267795747200088810293047731873192410526786931879590684673414288653913515E62");
1778         coeffs_120[14] = numeric("-2.6804750990199908441443350402311488850281543531194918304012545530803283220192092419107511475988099394746800512008906823331244710178292896561401750166818497729239682879419868799442954945496319510685448344062610897698253544876306888341881254056091234759E63");
1779         coeffs_120[15] = numeric("6.5422964482833531603879610057815197301035372862466791995455246163778529556707384145891730234453157337303612060344197138180893720879196243783337539071284141345021864817147590781643393947019750353147151780290464319306645652085743359080495090595200531486E63");
1780         coeffs_120[16] = numeric("-1.4604487304348366496825146715570516556564950771546738885215899741781982964860978993963272314092830563320794184042847908967120542212316261920409301852237223308467032419706968676861616456179895880956772385510853673982424825597152850339588189159102980666E64");
1781         coeffs_120[17] = numeric("2.9942297466313630831467808691292548682230644559492580161942357031681185068971393754352871129412787966878287389513657398203481589163498279625760316093736277896138061249076616695157422053188087353540756151586375196486093987258640269607104978950906670704E64");
1782         coeffs_120[18] = numeric("-5.658399283776588293772725313973093187743120982052603944865098913586526167668102733207163739469977271584007101869254711458133873627143366757941713180350370056955237604551850024423889291598422917971467957836705917204903687959901869098540153925178692732E64");
1783         coeffs_120[19] = numeric("9.887368951584101622633538892976576123080629424367489037686110916264512731398396560326756128205833849608930564615629875435100785011872254223744155330328477703592008501954532369042429700051416733748454350165515933757314793533786385104271308839525639768E64");
1784         coeffs_120[20] = numeric("-1.6019504550228766725078575508839635707919311420327486864048705642201106895239857903763208049376932672160478820626774934879424498715258948985194011690204294886396827446040036506699933786721588971678753877371518212675519147446728054067639530675249526082E65");
1785         coeffs_120[21] = numeric("2.4124568469636899540706437405441629738413207418758399778576327598069435452295650039157974716832514441625728576753250737726840109004878753294786785674578138926529507088264657400701828947949531197915861820274684954206665488761473274445827472596875582911E65");
1786         coeffs_120[22] = numeric("-3.3841653726400000079488483558717068873181168418395106876260246491163166726612427450773591871178866824643300679819366574162583413250423974373322308130319007820863363304629451933781204964221002853140392226489420463827400812929748772154909106349410663293E65");
1787         coeffs_120[23] = numeric("4.4305670380812288478773282114598811227924298131011853412998479811262358077680067168455361591598296346480072528806092976336961470360354620203822421524751468329936930212919915114854135818230382164555078957880154875221176513434392525189922941290050575762E65");
1788         coeffs_120[24] = numeric("-5.4228176962574428947233160003094662570284359565811627941401342797491445636152854865132166939274138115146035207618348708829039395974942115203986578386666664945394109693178927438991059414217518334491360514633536224841961444935232548483014691997071543828E65");
1789         coeffs_120[25] = numeric("6.214554789078092267222051275213928685756510105900211846145778269883351640710249139978059486185007208670776100912863866582278800642692097830681092656540813877576256048148229340562594504915197956922387464825593941922429396202734006609196778697870436014E65");
1790         coeffs_120[26] = numeric("-6.6773485088895517986512141063848395783979405189075416643094283756118912554557672721632998501682483143868731647507940026369035991063923616298815637819145806214374157182512600196214559297579802178103007615921637577873304407436850546650711237281572008424E65");
1791         coeffs_120[27] = numeric("6.734925330317694704469314845373778479111077864464012553672292377883525864326847400954413754291163739900219432201437895152976917857427306427115230048061308424221525123820493252697918698598513232640014129066982507718245232516657455821629338155744427538E65");
1792         coeffs_120[28] = numeric("-6.383582878496429871173501676061533991181960023885889537277705274319508246322757005217436814481703326467002683699047193244918123789600842413060331898515872574523803039779899326755393070345055586059441271293717500426377884349137309244757708993087958455E65");
1793         coeffs_120[29] = numeric("5.6913529405959275511022780614007027176288843526260372650173869440228336395668389555081751187360483397341349300975285817498083216487282169140596290796279875175764991375447348355187090404486257481827615256024271536396461908482904537799521891879785332367E65");
1794         coeffs_120[30] = numeric("-4.776996734587211249165031248400648409423153869394988746115380756083311986805300361459383722536698540926452976310737678416019979202990255666249869917768885659350216400547190883549730059461513588008706974008085270389354525600694962352952715682056375518E65");
1795         coeffs_120[31] = numeric("3.7775367524287124255443145064623569295746034916892464094281613465046063954544055573214473155479196552309207209647540614474216985097792266203411723082566949978062697757983354600199199984244302856099811940389910544756210676400851240882142140969864764468E65");
1796         coeffs_120[32] = numeric("-2.8161966171919236962021901287860232075259781334554793534017516884995332700369401674058517414969240048359891934178343992080557338603528540157030635217682829894098359736903943078409166055640608627322968554856315650475005062493399450913753277478547118352E65");
1797         coeffs_120[33] = numeric("1.9804651678733327456903212258413521470612733719543558365536494344764973229749132899499862883369665827727506916597326744330471802598610837032598656197205238983585794266213317465548361566327435762497208877015986690267754534342053368396181078097467171858E65");
1798         coeffs_120[34] = numeric("-1.3144275813663231527166312401997093907605894997476799416306355417933431514642211250592825223377757973148122542735038736133300194844844655961425683877005418926364412294006123974642296395931311307760050290069031276972832755406161248577410950671224318855E65");
1799         coeffs_120[35] = numeric("8.2367260670024829522614096155108151082106397954565823313893008773930966293786646885943761866773022391428854862805955553810619924412431932999726399857050871862122529700098570542876369425991842818202826823540112018849926644955200888291063471724203391548E64");
1800         coeffs_120[36] = numeric("-4.8749964750377069822933994525197085013480654713783888755556109773660249389776804499013517227967180500633060271953473316017147397601291325922904139209860429881054757911243087427393920494271315804033914011087815785282473032714919188637172020633929566123E64");
1801         coeffs_120[37] = numeric("2.7259664773094932979328467102942769029907299417406744864696200699394594868759231280169149208728483197299648608091313447896342349454038879581019820193316159535211365363553004387852005780736869678460092714636910972426808304270369152189989142121207224142E64");
1802         coeffs_120[38] = numeric("-1.440426226855027726783521340050349148103881707415523724377763633849488875095817796257895327883428230885349760692732068174527147156893314818583058727424251827006457849321094911262818557954829248070170426870959233263267490276774734065709978749400927185E64");
1803         coeffs_120[39] = numeric("7.193790858249547212173205531149034887209275529426061411129294234841122474820371873361100215884757249851960370114629943083807936135915003201800204713978377250292881453568756354858194614039311248345228434431020394729104593125888325843724239404594830488E63");
1804         coeffs_120[40] = numeric("-3.3960029336234301755324970935705944032408435186630159101426062821929524761770439420961993430248258136340087498829339209014794230274407979103789924433683527009234592433480445831820377517333956042612961562022604325181492952329031432513768020816986814393E63");
1805         coeffs_120[41] = numeric("1.5154618904112106565112797443687014834429200069480460967081898435635890576815349145926430052596468033907024005478559584915319911380449387176530845634833237204659108290330613043367085829373476690728522550189678729181372902816898536141595215616716630939E63");
1806         coeffs_120[42] = numeric("-6.3927647843464050458917092484911245813170740434503951669888756878206365814594631676413018245438405308353724023007754523096143775098898268650326908751515418318201372985246418468844138298345777180517875695389655616000832495210812684049030674085212697428E62");
1807         coeffs_120[43] = numeric("2.5490394366379355452002449693074954071810215414182359403355645652443600688717811337587901850157210686351097591461582890354662732336749618027675479531031836144519267481752770036252137747675754903974915999567019837855523058289177148692481402871253211324E62");
1808         coeffs_120[44] = numeric("-9.606466879185328464666445215840505657671157752044466089989040292763536710311599947887918708456526669882072519263973105599580140713596301388561639705589314111762600854460059589939760935803484446888352368360433606245369171819922425771642408570388554052E61");
1809         coeffs_120[45] = numeric("3.4212392804723358445152430359637323789304939688937873921904941412927756295848104328630952153624979489607759834359194243032109828811134607612715016533909375981353098879969472700079242226099049323998286020341979178782935852542355220403299144612362244738E61");
1810         coeffs_120[46] = numeric("-1.15119134701605919461057899755821946453925102458815313053351247263978303346790555715641513756644038607667203392289423834966320935498856390723555744530789850290369071103208529608463210398231590077340268751005311531529356083188150256469829678612245577446E61");
1811         coeffs_120[47] = numeric("3.6588622583411432033523084711047679684233731128914152509273818448610176621874654252431411048902598388935105893946323641003087000410095802098177375492833543391040706755511234323104846636415419597151008153829618275459606044459923718022154035121167198784E60");
1812         coeffs_120[48] = numeric("-1.0981148514467449476248066871827754422009180048705085132882492434176164929454140182025449006310206725429473330511884213470600326782740663313311256352613244044500057688932314549669435095761340307817735687643806167483576999980691227831561891265615422486E60");
1813         coeffs_120[49] = numeric("3.110998209448997739767747906196101611409160829345058138064861244336130082424927251851805875584197897229644157110035272012393338413235208343342708685139492629786435072305986349067452739209758702078026647999828517440754895711519542954337931090643534216E59");
1814         coeffs_120[50] = numeric("-8.3162485922574890007748232799240657004521608654422032389269811102140449056333167761296051794842882201869698963586030628312914066893199727852512779320175952962772072653493447297721128265231294406156925752496310087025926300388984242024436858845487466277E58");
1815         coeffs_120[51] = numeric("2.0966904516945699848169820408710416999765756367767199815424586610234585829069218729220161654233351574517459523275756901094737085187558904179251813051891939079067686519817858153690134828671544815635956527611986498479411756457222935682849773436423295467E58");
1816         coeffs_120[52] = numeric("-4.983121305881207125553776640558094509942884568949257704810973508397697839859902664482541160531856121365759763455699578413261749913567077796586919935391984240753355552646184306812426079133011894826183873855851966310877619118554510972675999316631346679E57");
1817         coeffs_120[53] = numeric("1.1158023601951707374356047495258406415892974604387009613173591921419195864040428221070481312383179580486787822935456571355463718115785982888531393271665510645725283439572279946304699780331972095822869500426555507626639723865965516308476400920600382357E57");
1818         coeffs_120[54] = numeric("-2.3524850615012075127499506758220926725372558166170912192116695445007095502575329450463479860779122789467638956004572617263549199692255055063165454868102165975951768676031140009643202074220557325155838768661030361538572755082660730808847591840060467064E56");
1819         coeffs_120[55] = numeric("4.6669318431895615057208826641721251136909284138581355667925884903657855204100373961676117747969449100495897986226609480142908763981931305129946569690612924941456739524153327260627627771254850382983581593260532259539447965597396206625726656509884058042E55");
1820         coeffs_120[56] = numeric("-8.7053773217442419007560462613131691749734845382618514999712446313788486289774350240165530159591402631439776213579542026449818009956904779042347595401565525081115611496250192338958392965746523979241969677734430475813057146574920495171984815351708574336E54");
1821         coeffs_120[57] = numeric("1.5256552489620511464542280446639568546874380361953025589702692266626310669215652044048704882910412155084167930513006634430352568411276836880182348033924636960897794333644980768878022821035659978039286230061734024129667272393315169114199838321062607299E54");
1822         coeffs_120[58] = numeric("-2.5099934505534008439782195609383796207770494575364994376922414269548303512602084430128307108303305643530918354709126474742035537827601791192999467996479881350277448357927640707861695639576629921988481117017137420422963638277868648516492581097660522547E53");
1823         coeffs_120[59] = numeric("3.872963359882179682964169603201046384616694634651871844057456079738892419308420856725974686574980381399016464501318163662938118593626674643538005780375691959391996340141057698193381380484420715733863044826589570328349973407598034428591146829028071358E52");
1824         coeffs_120[60] = numeric("-5.59947633823301408044455223877913062308847941596689956112764416031828413291312481723036534632655608672535030921469531903033364444816678754679807809159478411100820014592865068932440734964265842594875758737421026093110624848762070026616564150314951394E51");
1825         coeffs_120[61] = numeric("7.57762861280525531438216991274899157834431478755285945898172885086150762425529113816148806028462888396660067975773261101497666568988246606837690320098870044112671149076084444095163491848634465373822951831018725769263871497616640732007420499659069842E50");
1826         coeffs_120[62] = numeric("-9.587786106526273406187878833167940811862067040706459726637556599860244751467528905534431960251166924163661188573831350928972391892492380823531476387272791432306808700507685765850397294118719242350333451452137838374120658600691461454898577711260078952E49");
1827         coeffs_120[63] = numeric("1.13288726401696728230264357306938076698155303500407071418573081766541065136778223998897791839613776442037036668986628122296219518360439574147622758002647495909592177914657175019781723803408732148262293125845657503039410078589916085532057725749397276232E49");
1828         coeffs_120[64] = numeric("-1.24849787223197441956280303618704887038709792250544105638342097080498907831514597860418910331910245753340059089147824955071899315894649696314820492532126554883819507650973976145456660786429117569053901704116877128391672511345177517877672824534972448216E48");
1829         coeffs_120[65] = numeric("1.2815463720972693091316233381473056495608681859925407504190742949467232967966271661733907550222983737930524555721493736920130260377888287772008209963158064973076933575966719577456540496444474944074979736374259087350416613616719928507635667369740203319E47");
1830         coeffs_120[66] = numeric("-1.2234887340201843394744986892310393596065877342193196880417674427168862926389642850813687099959036354499094230765541977493433449153438766822382486040215211159359175689369230076522107734270943423777076523650345103234411047700646432924770659676420158487E46");
1831         coeffs_120[67] = numeric("1.0847187881607033339631651118075716564835185723270640503055198532318419482330026641941088359447807553514405522074008969583213861070993661224871455023365601323302778638456843760403418046238489404394483720438784739822580385277055304353975028280477740796E45");
1832         coeffs_120[68] = numeric("-8.9160881476675795743767277986448579964735858351472748620623279571408606135698760493224031735408212513500922230670883171668702983221921543376953865813604783695111225412173880768170509738290662806468458720236121755965944855709552219268353813402612336565E43");
1833         coeffs_120[69] = numeric("6.782864920104031936272293608616215844503387641476821968620772153274069873138756405621471099960069602613619793775294358177761533027360002770186566164041138064221354961783144649476276625776241973967317262115970868665380343599565811072109785000646703404E42");
1834         coeffs_120[70] = numeric("-4.7667808452660756441368384708874451089976319738852731080495062883240643961463680300964077232336439626019128672679703771884184482488932861160134911816225569323838390204451496983578077563176966732010513231048738892639707790407292070646798259086924770995E41");
1835         coeffs_120[71] = numeric("3.0885057140860079424719232591765602418793465632939298397987628606701994268384966881159469651774584648643122830739130127593326652998108850492039117928976417052691273804304806596509726701594300563830431015215234640024338277573401498998072908815285293868E40");
1836         coeffs_120[72] = numeric("-1.8410405906573614531857309495652487774337134256805076777639383854080936219680656594060736479739035202182601529001321266214227848431889644620036213870966329509961114940541333851155401637197303308322414678191211465563854205816313387785764908216851396633E39");
1837         coeffs_120[73] = numeric("1.0073694433024942271325653907485159683302928496826793112696958500366488338508211620934892875328717073528902110227362794694820010124321343709182901273795782541866547318841893692957109947576483162095037812781379193423759617638948859880051822460818418552E38");
1838         coeffs_120[74] = numeric("-5.0475051506252944853315611134428802424958512917967945464108691542854207821486654807141339210375899950551724141366521361887864357385178212628348794663127149312605456165451981719848656127310229221238908657530297751682848475855876378576874607521597136906E36");
1839         coeffs_120[75] = numeric("2.3099766115359817610656986443137072041797751710805647712896098246833051023271876304983288225638204962631413469467959017768113430777226924099787875749611560913177631681394153889301715579572842026181746028117354815826836594637709952294015960031772162547E35");
1840         coeffs_120[76] = numeric("-9.629053850440590569772960665435833408449876392175761493622541259322053209458881628458334353756739601360772251654643632187697620334088992038575944303101187678397564511853344433267011583960451100374611538881978045643233876974513962362084978095067025623E33");
1841         coeffs_120[77] = numeric("3.6452126546120530579393646694066971671091434168707822859890104373691687449831950255953317231572802167174179528347370588567969602221261721708890001616085516755796796282628169745443137768549800602834096924025507345446292715781107949529692160434800323E32");
1842         coeffs_120[78] = numeric("-1.2492564030201607643388368733220662634846470405464496879151879822123866671204541555507638492613046717628358162773937737774832271305618491107140304474323049182605167775847584622690299098207979849043605983558768056117581593008210986863088433891075743152E31");
1843         coeffs_120[79] = numeric("3.8627447638297686357472526935538070834588578920414538227245516723308987020816841052950727259618753144711425856434270832495754300189881199851254605718213699755258867641301730599979474865704144160112269948588154919128986989885090481959424806312935273075E29");
1844         coeffs_120[80] = numeric("-1.0736758703963497284148841547397192249226725101007524773889805877171959717011395181953504058502607435217886087332761920207901621377557079619638699346496468750455986591040017334237734940082333954589067611955107878899677189289648293223359861027746438121E28");
1845         coeffs_120[81] = numeric("2.6722714785740082059347577649909834926335247252399259683264830680945466475595847553753509546415283809619181144796536494882020159787371993099998263815645014317923922311421330376008111312767167437401741178863083976628261471599264811824656877164988491393E26");
1846         coeffs_120[82] = numeric("-5.9304047185329750657632568788530498935629656326502947505210292278638825286675833282579834326765999907183142489791905921257123760969245535649745876992946512033156167841406724363867902645010435996961270021857807247440211477908060243655541266857227638988E24");
1847         coeffs_120[83] = numeric("1.16817022089143274700208191285335154155497013626172270535715899131321522799010543339535307798264602677955894930046454353008462671803498794203612585729705145312299224155123919877760274781582850868001155383467754608529345730226972329454404720862870618607E23");
1848         coeffs_120[84] = numeric("-2.03239515657536501213472165328009690017090356606547792466197690386716728380893226886179282271040418637806139515373566132123131620086873213475424131345589653019635327048678766191769576650893957440830876852296666120473866301097954633389040518870395767125E21");
1849         coeffs_120[85] = numeric("3.1065334503269182605978912331263087603258864771943471481540265718169544724355602987297631515907391374943512439350265433478241465606056187134785807375293801936399644663199667496663518171930757047012102683120173353568660795955174938680248863153863947508E19");
1850         coeffs_120[86] = numeric("-4.1476244154347831048636005592317388215032295704489937704602030038303705695463546496640638505584602502764898113504560236629804442607426019604639559875021291459916615723777004493344143132459204229291886967479716413925814352313734234340863490128872380307E17");
1851         coeffs_120[87] = numeric("4.8067293487250079673131214670887682215073707729621636364424152483295071605326220176372385638491275365750175037404843071051780212494354459897540110089573898336327006157766256896984455454193271731091632286742192439925748114360605084629432813597189767538E15");
1852         coeffs_120[88] = numeric("-4.8023544548381246628003457039588616467438691159189277447469028024236284353593054364114519649309416187375157096932150251663679454372678125518452171003992957433311257042292636706448339781439297178835786059318810522834929923770539615271536113963729385909E13");
1853         coeffs_120[89] = numeric("4.1055087514683476865343055835875083237542317413651906253058979029083965525058905726360233143503628224856307545474786181299719957472120906835233967660557875100202077212004953379299507351564181758434304881046845705855303854083493519588411179065109026834E11");
1854         coeffs_120[90] = numeric("-2.9787503393847675871205038539267895335240592213878943742323972872214441728681744433089698206110260166068266926018988659692353298939109421567999207730700359726920482465669373553804927535369930188390246988033893916611435406224816632683980860607732310186E9");
1855         coeffs_120[91] = numeric("1.8178328110729629877907010659834277046059726898311908447099830056830012488194646687474150289147446390570639168063598563291822008033517936194534129929881015025633519502485415000390171249019651579295905194415531994026553693578406432674734610095421683863E7");
1856         coeffs_120[92] = numeric("-92391.136314434380495997449781381513978328604842061708454699991154771188446049720445502194923435235472458378926242100033122111143321209059959788378033220861638093951546784186137626553022963832352496255851690092415165826965388502958309163995296640164754");
1857         coeffs_120[93] = numeric("386.82763074890451546182061419449593717951707520472938425276820204065379182568600735469831672149785863654956632602671563997131280046154927653332261114114005498875447205079045401364007035880825957300757663780618819785476980699579657587509130753204519233");
1858         coeffs_120[94] = numeric("-1.3181204292571874302358432444324779303744749959754136019600954846045028319805074783759764870805734807693739252625657350494147444011046941331047057337345953605042408524072436811726898109072388160378243068564382623631658424851676817690976343859083960324");
1859         coeffs_120[95] = numeric("0.003606538673252695455085947121496196507159591230095595764694813152630524319596509155920374890595867709349176662036024214476302717902368680224618116411588086562230407996267622244422187853090635901906175373997993725355114393033631058067900506212434600015");
1860         coeffs_120[96] = numeric("-7.805244503909439374422205381130511738566245024242591464192744568789876715121004646510755612128565674260161510215430132815223049297785205382643947556846567064565241387424696940674258789227398935846571768027456535982674711768030751512030174841314425949E-6");
1861         coeffs_120[97] = numeric("1.31373705470989377112938364152965446631228819123896570245455699237549295870321627234421140232628798373711221392827979836922621437205363811871692678679625916100572037589291239046725228767017131155814257944742981208252138821140381478767814046301821211856E-8");
1862         coeffs_120[98] = numeric("-1.6872873094408224472617181717534409090015431593544429529131126514352910895332010213914243717484771690790552077128803350550170014347729272790464826195676369023970955260051387240496705602732313607409271794413329062030561818907163134089683283286623809325E-11");
1863         coeffs_120[99] = numeric("1.6183083251905685095057354853863188515437903228178486856957070037813756492593759658405336450433607296873747595037080703825755020175480385843762609522889527239577435110258291566585028919336090916225831079571865425410181260759913688103716786795647286451E-14");
1864         coeffs_120[100] = numeric("-1.13097359411474028225398794102354853670936316496817819635688647804142428962171772690717075128208102537660772310780986623575005236651312181907812813813504742701120603881086064664411899253566047514905519888629604717647221817372977488600336785871295304013E-17");
1865         coeffs_120[101] = numeric("5.599216369109121957949255319730053610385733330502739423509794477602247233276045188197007198417289907263120960704056657544648432653622931077692740961599655386871075693202473992087883485704436336279135221721374640982826144708808646466699352755417123702E-21");
1866         coeffs_120[102] = numeric("-1.9009180102993021108185348502624676395148544369474718879637745630712451378711342634099259114111847962752555305470572286326367888004493816251811794947276966269738750207359305252041104539066278002044545942171476984766923991983055271262414217352967659228E-24");
1867         coeffs_120[103] = numeric("4.261262509940940316499754264112111685174274727656165126333137554124192224955656564229887938745508952447664695831728428607673797269945824475565104978593072684829487175697371245288754204324544164474840153141042852153497051337607734150135978754952561336E-28");
1868         coeffs_120[104] = numeric("-6.033854291373449912236926137860325602686312455380825767485673949251953414778800668020214699151728472172651816317924130614791108454134597377848088327850505473503152696524861086193124979489104732214189466703901268332265826882296309653009237279831825243E-32");
1869         coeffs_120[105] = numeric("5.1208402745272379096703574714836785944518835939702823617280147111145234914591060871138496110227453241036619229980622243972303295470574470937679143516006222494480144845809123492603651773613707216680534850900104861326332900592715684757980394834998321888E-36");
1870         coeffs_120[106] = numeric("-2.4463535717946588550832618025289907099586319384566637643650142186828541109926588999585266911960640972919441499109750654299062004147686492034166034659422424525984094382368955916181276646903453872999065929058429821759475215620044891133652431220664754175E-40");
1871         coeffs_120[107] = numeric("6.0973480699773886324239008989591793773608942051497498591908583910660358857815864266160341286217871697703362816166340947142517661604423899536979689047275448159991318658879804351288744125363072102852651926942302209139318098544348348564409845011546432615E-45");
1872         coeffs_120[108] = numeric("-7.2234185761285078775026471720270426097727212523472472797635230392183067756271499246654638332288950167477129840028892565652782123508855602380279653475510712205780583313834027906297063690370430285856541927759405826980856379432703473274890527421175151858E-50");
1873         coeffs_120[109] = numeric("3.6217112680215791206171182969894344487335819731880124290544082848140757826983885738735436324684863867140575000400288923606439193119990961489053513339202655922248092157737577138929144240507796562250602457839068582279379672722261563501188150876583184441E-55");
1874         coeffs_120[110] = numeric("-6.6329300032795486066608594142675837603786558782159646987663521197523704085781830169369726460621246948945196657495305819768951424025780824076252490918306538895670861455244641773606980519824591785816943621538721352987553804824051051144609050417497894495E-61");
1875         coeffs_120[111] = numeric("3.6664720904335295532012711597888717227860988776477301054518326674835421172405060906940404374163713097964932859351917152390238690399278248344863365606468942320103392909602843987855082225592776850615943708151738327210634139824601616072015258461809772448E-67");
1876         coeffs_120[112] = numeric("-4.7466013179695826928232672846686064011594588664906398407027593213652099998530859940288723349213099851532139911079905393494419637612780994270110734378146177806681489226896952731800026849872070824592339117757940119304241732812925979963178130104280115315E-74");
1877         coeffs_120[113] = numeric("1.0163707785221910939390789816391472677729665860532352695801597334766068288835382195560328979864550624486740471947632369344045378626680607890520366137741785540226552923584183986350590955499329375427326072319268396685478606934920507703868118038891818762E-81");
1878         coeffs_120[114] = numeric("-3.4814151260242800905467399051937942442621710748397374123807284826536707678408888416026868585492229216524609739211131993326633970334388991812593549702868877534701822990946125111761892723042376117665640296993581745994557803052315791392349639065203872505E-90");
1879         coeffs_120[115] = numeric("1.18525924288117432386770939895670573772658621857195305986011196724304231598127227408839423385042572374412446842112646168302015480830234100570192462192015131968307084609177540911503689228342834030959242458698413980031135644018348590823980902427540799814E-91");
1880         coeffs_120[116] = numeric("-8.5714961216566153236700116412888006837408819915951896129362859520462766617634320531162919426026429378433105901035364956643086394331335747930198070611009941831387116980941022864465946989065467218665543814574849964435089931072761832853235509961870476035E-93");
1881         coeffs_120[117] = numeric("4.5681983751743456413033268196376305093509590040595182930261094908859252761697530924655649930852283295534503341542929581967081012867692190108698698006237799801339418962091877730207560007839789937153876806052229193448161273005984514504886230869730232561E-94");
1882         coeffs_120[118] = numeric("-1.5943139155457706045530478744891549581317663177038648406493256399589001327414318955746453934207742828511041930090849236963271943244329753764497401819704943705370596846318480510254313447057477914171472190541408193443142906466279172123681623644325254209E-95");
1883         coeffs_120[119] = numeric("2.7319125666863032595604997603472305262880292377469053594326527505796348018540179196191192420176181194669607935656210005192217186286873953583571180312679155204061051208771126804209623533044988888808754656646355388901404252058383561064953226611421609762E-97");
1884         Digits = store_digits;
1885 }
1886
1887
1888 /** The Gamma function.
1889  *  Use the Lanczos approximation. If the coefficients used here are not
1890  *  sufficiently many or sufficiently accurate, more can be calculated
1891  *  using the program doc/examples/lanczos.cpp. In that case, be sure to
1892  *  read the comments in that file. */
1893 const numeric lgamma(const numeric &x)
1894 {
1895         lanczos_coeffs lc;
1896         if (lc.sufficiently_accurate(Digits)) {
1897                 numeric pi_val(cln::pi(cln::default_float_format));
1898                 if (x.real() < 0.5)
1899                         return log(pi_val).sub(log((sin(pi_val.mul(x)))))
1900                                 .sub(log(tgamma(numeric(1).sub(x))));
1901                 numeric A = lc.calc_lanczos_A(x);
1902                 numeric temp = x.add(lc.get_order()).add(numeric(-1,2));
1903         numeric result
1904                         = log(numeric(2).mul(pi_val)).div(2)
1905                                 .add(x.add(numeric(-1,2)).mul(log(temp)))
1906                                 .add(temp.mul(-1))
1907                                 .add(log(A));
1908         return result;
1909         }
1910         else 
1911                 throw dunno();
1912 }
1913
1914 const numeric tgamma(const numeric &x)
1915 {
1916         lanczos_coeffs lc;
1917         if (lc.sufficiently_accurate(Digits)) {
1918                 numeric pi_val(cln::pi(cln::default_float_format));
1919                 if (x.real() < 0.5)
1920                         return pi_val.div(sin(pi_val.mul(x)))
1921                                 .div(tgamma(numeric(1).sub(x)));
1922                 numeric A = lc.calc_lanczos_A(x);
1923                 numeric temp = x.add(lc.get_order()).add(numeric(-1,2));
1924         numeric result
1925                         = sqrt(numeric(2).mul(pi_val))
1926                                 .mul(temp.power(x.add(numeric(-1,2))))
1927                                 .mul(exp(temp.mul(-1)))
1928                                 .mul(A);
1929         return result;
1930         }
1931         else
1932                 throw dunno();
1933 }
1934
1935
1936 /** The psi function (aka polygamma function).
1937  *  This is only a stub! */
1938 const numeric psi(const numeric &x)
1939 {
1940         throw dunno();
1941 }
1942
1943
1944 /** The psi functions (aka polygamma functions).
1945  *  This is only a stub! */
1946 const numeric psi(const numeric &n, const numeric &x)
1947 {
1948         throw dunno();
1949 }
1950
1951
1952 /** Factorial combinatorial function.
1953  *
1954  *  @param n  integer argument >= 0
1955  *  @exception range_error (argument must be integer >= 0) */
1956 const numeric factorial(const numeric &n)
1957 {
1958         if (!n.is_nonneg_integer())
1959                 throw std::range_error("numeric::factorial(): argument must be integer >= 0");
1960         return numeric(cln::factorial(n.to_int()));
1961 }
1962
1963
1964 /** The double factorial combinatorial function.  (Scarcely used, but still
1965  *  useful in cases, like for exact results of tgamma(n+1/2) for instance.)
1966  *
1967  *  @param n  integer argument >= -1
1968  *  @return n!! == n * (n-2) * (n-4) * ... * ({1|2}) with 0!! == (-1)!! == 1
1969  *  @exception range_error (argument must be integer >= -1) */
1970 const numeric doublefactorial(const numeric &n)
1971 {
1972         if (n.is_equal(*_num_1_p))
1973                 return *_num1_p;
1974         
1975         if (!n.is_nonneg_integer())
1976                 throw std::range_error("numeric::doublefactorial(): argument must be integer >= -1");
1977         
1978         return numeric(cln::doublefactorial(n.to_int()));
1979 }
1980
1981
1982 /** The Binomial coefficients.  It computes the binomial coefficients.  For
1983  *  integer n and k and positive n this is the number of ways of choosing k
1984  *  objects from n distinct objects.  If n is negative, the formula
1985  *  binomial(n,k) == (-1)^k*binomial(k-n-1,k) is used to compute the result. */
1986 const numeric binomial(const numeric &n, const numeric &k)
1987 {
1988         if (n.is_integer() && k.is_integer()) {
1989                 if (n.is_nonneg_integer()) {
1990                         if (k.compare(n)!=1 && k.compare(*_num0_p)!=-1)
1991                                 return numeric(cln::binomial(n.to_int(),k.to_int()));
1992                         else
1993                                 return *_num0_p;
1994                 } else {
1995                         return _num_1_p->power(k)*binomial(k-n-(*_num1_p),k);
1996                 }
1997         }
1998         
1999         // should really be gamma(n+1)/gamma(k+1)/gamma(n-k+1) or a suitable limit
2000         throw std::range_error("numeric::binomial(): don't know how to evaluate that.");
2001 }
2002
2003
2004 /** Bernoulli number.  The nth Bernoulli number is the coefficient of x^n/n!
2005  *  in the expansion of the function x/(e^x-1).
2006  *
2007  *  @return the nth Bernoulli number (a rational number).
2008  *  @exception range_error (argument must be integer >= 0) */
2009 const numeric bernoulli(const numeric &nn)
2010 {
2011         if (!nn.is_integer() || nn.is_negative())
2012                 throw std::range_error("numeric::bernoulli(): argument must be integer >= 0");
2013
2014         // Method:
2015         //
2016         // The Bernoulli numbers are rational numbers that may be computed using
2017         // the relation
2018         //
2019         //     B_n = - 1/(n+1) * sum_{k=0}^{n-1}(binomial(n+1,k)*B_k)
2020         //
2021         // with B(0) = 1.  Since the n'th Bernoulli number depends on all the
2022         // previous ones, the computation is necessarily very expensive.  There are
2023         // several other ways of computing them, a particularly good one being
2024         // cl_I s = 1;
2025         // cl_I c = n+1;
2026         // cl_RA Bern = 0;
2027         // for (unsigned i=0; i<n; i++) {
2028         //     c = exquo(c*(i-n),(i+2));
2029         //     Bern = Bern + c*s/(i+2);
2030         //     s = s + expt_pos(cl_I(i+2),n);
2031         // }
2032         // return Bern;
2033         // 
2034         // But if somebody works with the n'th Bernoulli number she is likely to
2035         // also need all previous Bernoulli numbers. So we need a complete remember
2036         // table and above divide and conquer algorithm is not suited to build one
2037         // up.  The formula below accomplishes this.  It is a modification of the
2038         // defining formula above but the computation of the binomial coefficients
2039         // is carried along in an inline fashion.  It also honors the fact that
2040         // B_n is zero when n is odd and greater than 1.
2041         // 
2042         // (There is an interesting relation with the tangent polynomials described
2043         // in `Concrete Mathematics', which leads to a program a little faster as
2044         // our implementation below, but it requires storing one such polynomial in
2045         // addition to the remember table.  This doubles the memory footprint so
2046         // we don't use it.)
2047
2048         const unsigned n = nn.to_int();
2049
2050         // the special cases not covered by the algorithm below
2051         if (n & 1)
2052                 return (n==1) ? (*_num_1_2_p) : (*_num0_p);
2053         if (!n)
2054                 return *_num1_p;
2055
2056         // store nonvanishing Bernoulli numbers here
2057         static std::vector< cln::cl_RA > results;
2058         static unsigned next_r = 0;
2059
2060         // algorithm not applicable to B(2), so just store it
2061         if (!next_r) {
2062                 results.push_back(cln::recip(cln::cl_RA(6)));
2063                 next_r = 4;
2064         }
2065         if (n<next_r)
2066                 return results[n/2-1];
2067
2068         results.reserve(n/2);
2069         for (unsigned p=next_r; p<=n;  p+=2) {
2070                 cln::cl_I  c = 1;  // seed for binonmial coefficients
2071                 cln::cl_RA b = cln::cl_RA(p-1)/-2;
2072                 // The CLN manual says: "The conversion from `unsigned int' works only
2073                 // if the argument is < 2^29" (This is for 32 Bit machines. More
2074                 // generally, cl_value_len is the limiting exponent of 2. We must make
2075                 // sure that no intermediates are created which exceed this value. The
2076                 // largest intermediate is (p+3-2*k)*(p/2-k+1) <= (p^2+p)/2.
2077                 if (p < (1UL<<cl_value_len/2)) {
2078                         for (unsigned k=1; k<=p/2-1; ++k) {
2079                                 c = cln::exquo(c * ((p+3-2*k) * (p/2-k+1)), (2*k-1)*k);
2080                                 b = b + c*results[k-1];
2081                         }
2082                 } else {
2083                         for (unsigned k=1; k<=p/2-1; ++k) {
2084                                 c = cln::exquo((c * (p+3-2*k)) * (p/2-k+1), cln::cl_I(2*k-1)*k);
2085                                 b = b + c*results[k-1];
2086                         }
2087                 }
2088                 results.push_back(-b/(p+1));
2089         }
2090         next_r = n+2;
2091         return results[n/2-1];
2092 }
2093
2094
2095 /** Fibonacci number.  The nth Fibonacci number F(n) is defined by the
2096  *  recurrence formula F(n)==F(n-1)+F(n-2) with F(0)==0 and F(1)==1.
2097  *
2098  *  @param n an integer
2099  *  @return the nth Fibonacci number F(n) (an integer number)
2100  *  @exception range_error (argument must be an integer) */
2101 const numeric fibonacci(const numeric &n)
2102 {
2103         if (!n.is_integer())
2104                 throw std::range_error("numeric::fibonacci(): argument must be integer");
2105         // Method:
2106         //
2107         // The following addition formula holds:
2108         //
2109         //      F(n+m)   = F(m-1)*F(n) + F(m)*F(n+1)  for m >= 1, n >= 0.
2110         //
2111         // (Proof: For fixed m, the LHS and the RHS satisfy the same recurrence
2112         // w.r.t. n, and the initial values (n=0, n=1) agree. Hence all values
2113         // agree.)
2114         // Replace m by m+1:
2115         //      F(n+m+1) = F(m)*F(n) + F(m+1)*F(n+1)      for m >= 0, n >= 0
2116         // Now put in m = n, to get
2117         //      F(2n) = (F(n+1)-F(n))*F(n) + F(n)*F(n+1) = F(n)*(2*F(n+1) - F(n))
2118         //      F(2n+1) = F(n)^2 + F(n+1)^2
2119         // hence
2120         //      F(2n+2) = F(n+1)*(2*F(n) + F(n+1))
2121         if (n.is_zero())
2122                 return *_num0_p;
2123         if (n.is_negative())
2124                 if (n.is_even())
2125                         return -fibonacci(-n);
2126                 else
2127                         return fibonacci(-n);
2128         
2129         cln::cl_I u(0);
2130         cln::cl_I v(1);
2131         cln::cl_I m = cln::the<cln::cl_I>(n.to_cl_N()) >> 1L;  // floor(n/2);
2132         for (uintL bit=cln::integer_length(m); bit>0; --bit) {
2133                 // Since a squaring is cheaper than a multiplication, better use
2134                 // three squarings instead of one multiplication and two squarings.
2135                 cln::cl_I u2 = cln::square(u);
2136                 cln::cl_I v2 = cln::square(v);
2137                 if (cln::logbitp(bit-1, m)) {
2138                         v = cln::square(u + v) - u2;
2139                         u = u2 + v2;
2140                 } else {
2141                         u = v2 - cln::square(v - u);
2142                         v = u2 + v2;
2143                 }
2144         }
2145         if (n.is_even())
2146                 // Here we don't use the squaring formula because one multiplication
2147                 // is cheaper than two squarings.
2148                 return u * ((v << 1) - u);
2149         else
2150                 return cln::square(u) + cln::square(v);    
2151 }
2152
2153
2154 /** Absolute value. */
2155 const numeric abs(const numeric& x)
2156 {
2157         return cln::abs(x.to_cl_N());
2158 }
2159
2160
2161 /** Modulus (in positive representation).
2162  *  In general, mod(a,b) has the sign of b or is zero, and rem(a,b) has the
2163  *  sign of a or is zero. This is different from Maple's modp, where the sign
2164  *  of b is ignored. It is in agreement with Mathematica's Mod.
2165  *
2166  *  @return a mod b in the range [0,abs(b)-1] with sign of b if both are
2167  *  integer, 0 otherwise. */
2168 const numeric mod(const numeric &a, const numeric &b)
2169 {
2170         if (a.is_integer() && b.is_integer())
2171                 return cln::mod(cln::the<cln::cl_I>(a.to_cl_N()),
2172                                 cln::the<cln::cl_I>(b.to_cl_N()));
2173         else
2174                 return *_num0_p;
2175 }
2176
2177
2178 /** Modulus (in symmetric representation).
2179  *  Equivalent to Maple's mods.
2180  *
2181  *  @return a mod b in the range [-iquo(abs(b)-1,2), iquo(abs(b),2)]. */
2182 const numeric smod(const numeric &a, const numeric &b)
2183 {
2184         if (a.is_integer() && b.is_integer()) {
2185                 const cln::cl_I b2 = cln::ceiling1(cln::the<cln::cl_I>(b.to_cl_N()) >> 1) - 1;
2186                 return cln::mod(cln::the<cln::cl_I>(a.to_cl_N()) + b2,
2187                                 cln::the<cln::cl_I>(b.to_cl_N())) - b2;
2188         } else
2189                 return *_num0_p;
2190 }
2191
2192
2193 /** Numeric integer remainder.
2194  *  Equivalent to Maple's irem(a,b) as far as sign conventions are concerned.
2195  *  In general, mod(a,b) has the sign of b or is zero, and irem(a,b) has the
2196  *  sign of a or is zero.
2197  *
2198  *  @return remainder of a/b if both are integer, 0 otherwise.
2199  *  @exception overflow_error (division by zero) if b is zero. */
2200 const numeric irem(const numeric &a, const numeric &b)
2201 {
2202         if (b.is_zero())
2203                 throw std::overflow_error("numeric::irem(): division by zero");
2204         if (a.is_integer() && b.is_integer())
2205                 return cln::rem(cln::the<cln::cl_I>(a.to_cl_N()),
2206                                 cln::the<cln::cl_I>(b.to_cl_N()));
2207         else
2208                 return *_num0_p;
2209 }
2210
2211
2212 /** Numeric integer remainder.
2213  *  Equivalent to Maple's irem(a,b,'q') it obeyes the relation
2214  *  irem(a,b,q) == a - q*b.  In general, mod(a,b) has the sign of b or is zero,
2215  *  and irem(a,b) has the sign of a or is zero.
2216  *
2217  *  @return remainder of a/b and quotient stored in q if both are integer,
2218  *  0 otherwise.
2219  *  @exception overflow_error (division by zero) if b is zero. */
2220 const numeric irem(const numeric &a, const numeric &b, numeric &q)
2221 {
2222         if (b.is_zero())
2223                 throw std::overflow_error("numeric::irem(): division by zero");
2224         if (a.is_integer() && b.is_integer()) {
2225                 const cln::cl_I_div_t rem_quo = cln::truncate2(cln::the<cln::cl_I>(a.to_cl_N()),
2226                                                                cln::the<cln::cl_I>(b.to_cl_N()));
2227                 q = rem_quo.quotient;
2228                 return rem_quo.remainder;
2229         } else {
2230                 q = *_num0_p;
2231                 return *_num0_p;
2232         }
2233 }
2234
2235
2236 /** Numeric integer quotient.
2237  *  Equivalent to Maple's iquo as far as sign conventions are concerned.
2238  *  
2239  *  @return truncated quotient of a/b if both are integer, 0 otherwise.
2240  *  @exception overflow_error (division by zero) if b is zero. */
2241 const numeric iquo(const numeric &a, const numeric &b)
2242 {
2243         if (b.is_zero())
2244                 throw std::overflow_error("numeric::iquo(): division by zero");
2245         if (a.is_integer() && b.is_integer())
2246                 return cln::truncate1(cln::the<cln::cl_I>(a.to_cl_N()),
2247                                   cln::the<cln::cl_I>(b.to_cl_N()));
2248         else
2249                 return *_num0_p;
2250 }
2251
2252
2253 /** Numeric integer quotient.
2254  *  Equivalent to Maple's iquo(a,b,'r') it obeyes the relation
2255  *  r == a - iquo(a,b,r)*b.
2256  *
2257  *  @return truncated quotient of a/b and remainder stored in r if both are
2258  *  integer, 0 otherwise.
2259  *  @exception overflow_error (division by zero) if b is zero. */
2260 const numeric iquo(const numeric &a, const numeric &b, numeric &r)
2261 {
2262         if (b.is_zero())
2263                 throw std::overflow_error("numeric::iquo(): division by zero");
2264         if (a.is_integer() && b.is_integer()) {
2265                 const cln::cl_I_div_t rem_quo = cln::truncate2(cln::the<cln::cl_I>(a.to_cl_N()),
2266                                                                cln::the<cln::cl_I>(b.to_cl_N()));
2267                 r = rem_quo.remainder;
2268                 return rem_quo.quotient;
2269         } else {
2270                 r = *_num0_p;
2271                 return *_num0_p;
2272         }
2273 }
2274
2275
2276 /** Greatest Common Divisor.
2277  *   
2278  *  @return  The GCD of two numbers if both are integer, a numerical 1
2279  *  if they are not. */
2280 const numeric gcd(const numeric &a, const numeric &b)
2281 {
2282         if (a.is_integer() && b.is_integer())
2283                 return cln::gcd(cln::the<cln::cl_I>(a.to_cl_N()),
2284                                 cln::the<cln::cl_I>(b.to_cl_N()));
2285         else
2286                 return *_num1_p;
2287 }
2288
2289
2290 /** Least Common Multiple.
2291  *   
2292  *  @return  The LCM of two numbers if both are integer, the product of those
2293  *  two numbers if they are not. */
2294 const numeric lcm(const numeric &a, const numeric &b)
2295 {
2296         if (a.is_integer() && b.is_integer())
2297                 return cln::lcm(cln::the<cln::cl_I>(a.to_cl_N()),
2298                                 cln::the<cln::cl_I>(b.to_cl_N()));
2299         else
2300                 return a.mul(b);
2301 }
2302
2303
2304 /** Numeric square root.
2305  *  If possible, sqrt(x) should respect squares of exact numbers, i.e. sqrt(4)
2306  *  should return integer 2.
2307  *
2308  *  @param x numeric argument
2309  *  @return square root of x. Branch cut along negative real axis, the negative
2310  *  real axis itself where imag(x)==0 and real(x)<0 belongs to the upper part
2311  *  where imag(x)>0. */
2312 const numeric sqrt(const numeric &x)
2313 {
2314         return cln::sqrt(x.to_cl_N());
2315 }
2316
2317
2318 /** Integer numeric square root. */
2319 const numeric isqrt(const numeric &x)
2320 {
2321         if (x.is_integer()) {
2322                 cln::cl_I root;
2323                 cln::isqrt(cln::the<cln::cl_I>(x.to_cl_N()), &root);
2324                 return root;
2325         } else
2326                 return *_num0_p;
2327 }
2328
2329
2330 /** Floating point evaluation of Archimedes' constant Pi. */
2331 ex PiEvalf()
2332
2333         return numeric(cln::pi(cln::default_float_format));
2334 }
2335
2336
2337 /** Floating point evaluation of Euler's constant gamma. */
2338 ex EulerEvalf()
2339
2340         return numeric(cln::eulerconst(cln::default_float_format));
2341 }
2342
2343
2344 /** Floating point evaluation of Catalan's constant. */
2345 ex CatalanEvalf()
2346 {
2347         return numeric(cln::catalanconst(cln::default_float_format));
2348 }
2349
2350
2351 /** _numeric_digits default ctor, checking for singleton invariance. */
2352 _numeric_digits::_numeric_digits()
2353   : digits(17)
2354 {
2355         // It initializes to 17 digits, because in CLN float_format(17) turns out
2356         // to be 61 (<64) while float_format(18)=65.  The reason is we want to
2357         // have a cl_LF instead of cl_SF, cl_FF or cl_DF.
2358         if (too_late)
2359                 throw(std::runtime_error("I told you not to do instantiate me!"));
2360         too_late = true;
2361         cln::default_float_format = cln::float_format(17);
2362
2363         // add callbacks for built-in functions
2364         // like ... add_callback(Li_lookuptable);
2365 }
2366
2367
2368 /** Assign a native long to global Digits object. */
2369 _numeric_digits& _numeric_digits::operator=(long prec)
2370 {
2371         long digitsdiff = prec - digits;
2372         digits = prec;
2373         cln::default_float_format = cln::float_format(prec);
2374
2375         // call registered callbacks
2376         std::vector<digits_changed_callback>::const_iterator it = callbacklist.begin(), end = callbacklist.end();
2377         for (; it != end; ++it) {
2378                 (*it)(digitsdiff);
2379         }
2380
2381         return *this;
2382 }
2383
2384
2385 /** Convert global Digits object to native type long. */
2386 _numeric_digits::operator long()
2387 {
2388         // BTW, this is approx. unsigned(cln::default_float_format*0.301)-1
2389         return (long)digits;
2390 }
2391
2392
2393 /** Append global Digits object to ostream. */
2394 void _numeric_digits::print(std::ostream &os) const
2395 {
2396         os << digits;
2397 }
2398
2399
2400 /** Add a new callback function. */
2401 void _numeric_digits::add_callback(digits_changed_callback callback)
2402 {
2403         callbacklist.push_back(callback);
2404 }
2405
2406
2407 std::ostream& operator<<(std::ostream &os, const _numeric_digits &e)
2408 {
2409         e.print(os);
2410         return os;
2411 }
2412
2413 //////////
2414 // static member variables
2415 //////////
2416
2417 // private
2418
2419 bool _numeric_digits::too_late = false;
2420
2421
2422 /** Accuracy in decimal digits.  Only object of this type!  Can be set using
2423  *  assignment from C++ unsigned ints and evaluated like any built-in type. */
2424 _numeric_digits Digits;
2425
2426 } // namespace GiNaC