]> www.ginac.de Git - ginac.git/blobdiff - ginac/numeric.cpp
- constructor from strings once again accepts Lisp-style numbers like
[ginac.git] / ginac / numeric.cpp
index e4124f7c4b52c4bbac569edb7b187d08d0812a6b..f4dd738087de9fe0cc71b9f8a436694120b519e3 100644 (file)
@@ -48,6 +48,7 @@
 // instead of in some header file where it would propagate to other parts.
 // Also, we only need a subset of CLN, so we don't include the complete cln.h:
 #ifdef HAVE_CLN_CLN_H
+#include <cln/cl_output.h>
 #include <cln/cl_integer_io.h>
 #include <cln/cl_integer_ring.h>
 #include <cln/cl_rational_io.h>
@@ -60,6 +61,7 @@
 #include <cln/cl_complex_ring.h>
 #include <cln/cl_numtheory.h>
 #else  // def HAVE_CLN_CLN_H
+#include <cl_output.h>
 #include <cl_integer_io.h>
 #include <cl_integer_ring.h>
 #include <cl_rational_io.h>
@@ -93,10 +95,11 @@ GINAC_IMPLEMENT_REGISTERED_CLASS(numeric, basic)
 numeric::numeric() : basic(TINFO_numeric)
 {
     debugmsg("numeric default constructor", LOGLEVEL_CONSTRUCT);
-    value = new cl_N;
-    *value=cl_I(0);
+    value = new ::cl_N;
+    *value = ::cl_I(0);
     calchash();
-    setflag(status_flags::evaluated|
+    setflag(status_flags::evaluated |
+            status_flags::expanded |
             status_flags::hash_calculated);
 }
 
@@ -127,7 +130,7 @@ const numeric & numeric::operator=(const numeric & other)
 void numeric::copy(const numeric & other)
 {
     basic::copy(other);
-    value = new cl_N(*other.value);
+    value = new ::cl_N(*other.value);
 }
 
 void numeric::destroy(bool call_parent)
@@ -148,7 +151,7 @@ numeric::numeric(int i) : basic(TINFO_numeric)
     // Not the whole int-range is available if we don't cast to long
     // first.  This is due to the behaviour of the cl_I-ctor, which
     // emphasizes efficiency:
-    value = new cl_I((long) i);
+    value = new ::cl_I((long) i);
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -161,7 +164,7 @@ numeric::numeric(unsigned int i) : basic(TINFO_numeric)
     // Not the whole uint-range is available if we don't cast to ulong
     // first.  This is due to the behaviour of the cl_I-ctor, which
     // emphasizes efficiency:
-    value = new cl_I((unsigned long)i);
+    value = new ::cl_I((unsigned long)i);
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -171,7 +174,7 @@ numeric::numeric(unsigned int i) : basic(TINFO_numeric)
 numeric::numeric(long i) : basic(TINFO_numeric)
 {
     debugmsg("numeric constructor from long",LOGLEVEL_CONSTRUCT);
-    value = new cl_I(i);
+    value = new ::cl_I(i);
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -181,7 +184,7 @@ numeric::numeric(long i) : basic(TINFO_numeric)
 numeric::numeric(unsigned long i) : basic(TINFO_numeric)
 {
     debugmsg("numeric constructor from ulong",LOGLEVEL_CONSTRUCT);
-    value = new cl_I(i);
+    value = new ::cl_I(i);
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -195,8 +198,8 @@ numeric::numeric(long numer, long denom) : basic(TINFO_numeric)
     debugmsg("numeric constructor from long/long",LOGLEVEL_CONSTRUCT);
     if (!denom)
         throw (std::overflow_error("division by zero"));
-    value = new cl_I(numer);
-    *value = *value / cl_I(denom);
+    value = new ::cl_I(numer);
+    *value = *value / ::cl_I(denom);
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -217,13 +220,60 @@ numeric::numeric(double d) : basic(TINFO_numeric)
 }
 
 
+/** ctor from C-style string.  It also accepts complex numbers in GiNaC
+ *  notation like "2+5*I". */
 numeric::numeric(const char *s) : basic(TINFO_numeric)
-{   // MISSING: treatment of complex and ints and rationals.
+{
     debugmsg("numeric constructor from string",LOGLEVEL_CONSTRUCT);
-    if (strchr(s, '.'))
-        value = new cl_LF(s);
-    else
-        value = new cl_I(s);
+    value = new ::cl_N(0);
+    // parse complex numbers (functional but not completely safe, unfortunately
+    // std::string does not understand regexpese):
+    // ss should represent a simple sum like 2+5*I
+    std::string ss(s);
+    // make it safe by adding explicit sign
+    if (ss.at(0) != '+' && ss.at(0) != '-' && ss.at(0) != '#')
+        ss = '+' + ss;
+    std::string::size_type delim;
+    do {
+        // chop ss into terms from left to right
+        std::string term;
+        bool imaginary = false;
+        delim = ss.find_first_of(std::string("+-"),1);
+        // Do we have an exponent marker like "31.415E-1"?  If so, hop on!
+        if (delim != std::string::npos &&
+            ss.at(delim-1) == 'E')
+            delim = ss.find_first_of(std::string("+-"),delim+1);
+        term = ss.substr(0,delim);
+        if (delim != std::string::npos)
+            ss = ss.substr(delim);
+        // is the term imaginary?
+        if (term.find("I") != std::string::npos) {
+            // erase 'I':
+            term = term.replace(term.find("I"),1,"");
+            // erase '*':
+            if (term.find("*") != std::string::npos)
+                term = term.replace(term.find("*"),1,"");
+            // correct for trivial +/-I without explicit factor on I:
+            if (term.size() == 1)
+                term += "1";
+            imaginary = true;
+        }
+        const char *cs = term.c_str();
+        // CLN's short types are not useful within the GiNaC framework, hence
+        // we go straight to the construction of a long float.  Simply using
+        // cl_N(s) would require us to use add a CLN exponent mark, otherwise
+        // we would not be save from over-/underflows.
+        if (strchr(cs, '.'))
+            if (imaginary)
+                *value = *value + ::complex(cl_I(0),::cl_LF(cs));
+            else
+                *value = *value + ::cl_LF(cs);
+        else
+            if (imaginary)
+                *value = *value + ::complex(cl_I(0),::cl_R(cs));
+            else
+                *value = *value + ::cl_R(cs);
+    } while(delim != std::string::npos);
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -234,7 +284,7 @@ numeric::numeric(const char *s) : basic(TINFO_numeric)
 numeric::numeric(const cl_N & z) : basic(TINFO_numeric)
 {
     debugmsg("numeric constructor from cl_N", LOGLEVEL_CONSTRUCT);
-    value = new cl_N(z);
+    value = new ::cl_N(z);
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -248,17 +298,20 @@ numeric::numeric(const cl_N & z) : basic(TINFO_numeric)
 numeric::numeric(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst)
 {
     debugmsg("numeric constructor from archive_node", LOGLEVEL_CONSTRUCT);
-    value = new cl_N;
-#ifdef HAVE_SSTREAM
+    value = new ::cl_N;
+
     // Read number as string
-    string str;
+    std::string str;
     if (n.find_string("number", str)) {
-        istringstream s(str);
-        cl_idecoded_float re, im;
+#ifdef HAVE_SSTREAM
+        std::istringstream s(str);
+#else
+        std::istrstream s(str.c_str(), str.size() + 1);
+#endif
+        ::cl_idecoded_float re, im;
         char c;
         s.get(c);
         switch (c) {
-            case 'N':    // Ordinary number
             case 'R':    // Integer-decoded real number
                 s >> re.sign >> re.mantissa >> re.exponent;
                 *value = re.sign * re.mantissa * ::expt(cl_float(2.0, cl_default_float_format), re.exponent);
@@ -269,38 +322,12 @@ numeric::numeric(const archive_node &n, const lst &sym_lst) : inherited(n, sym_l
                 *value = ::complex(re.sign * re.mantissa * ::expt(cl_float(2.0, cl_default_float_format), re.exponent),
                                  im.sign * im.mantissa * ::expt(cl_float(2.0, cl_default_float_format), im.exponent));
                 break;
-            default:   // Ordinary number
-                               s.putback(c);
+            default:    // Ordinary number
+                s.putback(c);
                 s >> *value;
                 break;
         }
     }
-#else
-    // Read number as string
-    string str;
-    if (n.find_string("number", str)) {
-        istrstream f(str.c_str(), str.size() + 1);
-        cl_idecoded_float re, im;
-        char c;
-        f.get(c);
-        switch (c) {
-            case 'R':    // Integer-decoded real number
-                f >> re.sign >> re.mantissa >> re.exponent;
-                *value = re.sign * re.mantissa * ::expt(cl_float(2.0, cl_default_float_format), re.exponent);
-                break;
-            case 'C':    // Integer-decoded complex number
-                f >> re.sign >> re.mantissa >> re.exponent;
-                f >> im.sign >> im.mantissa >> im.exponent;
-                *value = ::complex(re.sign * re.mantissa * ::expt(cl_float(2.0, cl_default_float_format), re.exponent),
-                                 im.sign * im.mantissa * ::expt(cl_float(2.0, cl_default_float_format), im.exponent));
-                break;
-            default:   // Ordinary number
-                               f.putback(c);
-                f >> *value;
-                               break;
-        }
-    }
-#endif
     calchash();
     setflag(status_flags::evaluated|
             status_flags::hash_calculated);
@@ -316,49 +343,36 @@ ex numeric::unarchive(const archive_node &n, const lst &sym_lst)
 void numeric::archive(archive_node &n) const
 {
     inherited::archive(n);
-#ifdef HAVE_SSTREAM
+
     // Write number as string
-    ostringstream s;
+#ifdef HAVE_SSTREAM
+    std::ostringstream s;
+#else
+    char buf[1024];
+    std::ostrstream s(buf, 1024);
+#endif
     if (this->is_crational())
         s << *value;
     else {
         // Non-rational numbers are written in an integer-decoded format
         // to preserve the precision
         if (this->is_real()) {
-            cl_idecoded_float re = integer_decode_float(The(cl_F)(*value));
+            cl_idecoded_float re = integer_decode_float(The(::cl_F)(*value));
             s << "R";
             s << re.sign << " " << re.mantissa << " " << re.exponent;
         } else {
-            cl_idecoded_float re = integer_decode_float(The(cl_F)(::realpart(*value)));
-            cl_idecoded_float im = integer_decode_float(The(cl_F)(::imagpart(*value)));
+            cl_idecoded_float re = integer_decode_float(The(::cl_F)(::realpart(*value)));
+            cl_idecoded_float im = integer_decode_float(The(::cl_F)(::imagpart(*value)));
             s << "C";
             s << re.sign << " " << re.mantissa << " " << re.exponent << " ";
             s << im.sign << " " << im.mantissa << " " << im.exponent;
         }
     }
+#ifdef HAVE_SSTREAM
     n.add_string("number", s.str());
 #else
-    // Write number as string
-    char buf[1024];
-    ostrstream f(buf, 1024);
-    if (this->is_crational())
-        f << *value << ends;
-    else {
-        // Non-rational numbers are written in an integer-decoded format
-        // to preserve the precision
-        if (this->is_real()) {
-            cl_idecoded_float re = integer_decode_float(The(cl_F)(*value));
-            f << "R";
-            f << re.sign << " " << re.mantissa << " " << re.exponent << ends;
-        } else {
-            cl_idecoded_float re = integer_decode_float(The(cl_F)(::realpart(*value)));
-            cl_idecoded_float im = integer_decode_float(The(cl_F)(::imagpart(*value)));
-            f << "C";
-            f << re.sign << " " << re.mantissa << " " << re.exponent << " ";
-            f << im.sign << " " << im.mantissa << " " << im.exponent << ends;
-        }
-    }
-    string str(buf);
+    s << ends;
+    std::string str(buf);
     n.add_string("number", str);
 #endif
 }
@@ -375,18 +389,44 @@ basic * numeric::duplicate() const
     return new numeric(*this);
 }
 
+
+/** Helper function to print a real number in a nicer way than is CLN's
+ *  default.  Instead of printing 42.0L0 this just prints 42.0 to ostream os
+ *  and instead of 3.99168L7 it prints 3.99168E7.  This is fine in GiNaC as
+ *  long as it only uses cl_LF and no other floating point types.
+ *
+ *  @see numeric::print() */
+static void print_real_number(ostream & os, const cl_R & num)
+{
+    cl_print_flags ourflags;
+    if (::instanceof(num, ::cl_RA_ring)) {
+        // case 1: integer or rational, nothing special to do:
+        ::print_real(os, ourflags, num);
+    } else {
+        // case 2: float
+        // make CLN believe this number has default_float_format, so it prints
+        // 'E' as exponent marker instead of 'L':
+        ourflags.default_float_format = ::cl_float_format(The(::cl_F)(num));
+        ::print_real(os, ourflags, num);
+    }
+    return;
+}
+
+/** This method adds to the output so it blends more consistently together
+ *  with the other routines and produces something compatible to ginsh input.
+ *  
+ *  @see print_real_number() */
 void numeric::print(ostream & os, unsigned upper_precedence) const
 {
-    // The method print adds to the output so it blends more consistently
-    // together with the other routines and produces something compatible to
-    // ginsh input.
     debugmsg("numeric print", LOGLEVEL_PRINT);
     if (this->is_real()) {
         // case 1, real:  x  or  -x
-        if ((precedence<=upper_precedence) && (!this->is_pos_integer())) {
-            os << "(" << *value << ")";
+        if ((precedence<=upper_precedence) && (!this->is_nonneg_integer())) {
+            os << "(";
+            print_real_number(os, The(::cl_R)(*value));
+            os << ")";
         } else {
-            os << *value;
+            print_real_number(os, The(::cl_R)(*value));
         }
     } else {
         // case 2, imaginary:  y*I  or  -y*I
@@ -395,7 +435,9 @@ void numeric::print(ostream & os, unsigned upper_precedence) const
                 if (::imagpart(*value) == -1) {
                     os << "(-I)";
                 } else {
-                    os << "(" << ::imagpart(*value) << "*I)";
+                    os << "(";
+                    print_real_number(os, The(::cl_R)(::imagpart(*value)));
+                    os << "*I)";
                 }
             } else {
                 if (::imagpart(*value) == 1) {
@@ -404,28 +446,34 @@ void numeric::print(ostream & os, unsigned upper_precedence) const
                     if (::imagpart (*value) == -1) {
                         os << "-I";
                     } else {
-                        os << ::imagpart(*value) << "*I";
+                        print_real_number(os, The(::cl_R)(::imagpart(*value)));
+                        os << "*I";
                     }
                 }
             }
         } else {
             // case 3, complex:  x+y*I  or  x-y*I  or  -x+y*I  or  -x-y*I
-            if (precedence <= upper_precedence) os << "(";
-            os << ::realpart(*value);
+            if (precedence <= upper_precedence)
+                os << "(";
+            print_real_number(os, The(::cl_R)(::realpart(*value)));
             if (::imagpart(*value) < 0) {
                 if (::imagpart(*value) == -1) {
                     os << "-I";
                 } else {
-                    os << ::imagpart(*value) << "*I";
+                    print_real_number(os, The(::cl_R)(::imagpart(*value)));
+                    os << "*I";
                 }
             } else {
                 if (::imagpart(*value) == 1) {
                     os << "+I";
                 } else {
-                    os << "+" << ::imagpart(*value) << "*I";
+                    os << "+";
+                    print_real_number(os, The(::cl_R)(::imagpart(*value)));
+                    os << "*I";
                 }
             }
-            if (precedence <= upper_precedence) os << ")";
+            if (precedence <= upper_precedence)
+                os << ")";
         }
     }
 }
@@ -443,7 +491,7 @@ void numeric::printraw(ostream & os) const
 void numeric::printtree(ostream & os, unsigned indent) const
 {
     debugmsg("numeric printtree", LOGLEVEL_PRINT);
-    os << string(indent,' ') << *value
+    os << std::string(indent,' ') << *value
        << " (numeric): "
        << "hash=" << hashvalue << " (0x" << hex << hashvalue << dec << ")"
        << ", flags=" << flags << endl;
@@ -488,42 +536,44 @@ void numeric::printcsrc(ostream & os, unsigned type, unsigned upper_precedence)
 bool numeric::info(unsigned inf) const
 {
     switch (inf) {
-    case info_flags::numeric:
-    case info_flags::polynomial:
-    case info_flags::rational_function:
-        return true;
-    case info_flags::real:
-        return is_real();
-    case info_flags::rational:
-    case info_flags::rational_polynomial:
-        return is_rational();
-    case info_flags::crational:
-    case info_flags::crational_polynomial:
-        return is_crational();
-    case info_flags::integer:
-    case info_flags::integer_polynomial:
-        return is_integer();
-    case info_flags::cinteger:
-    case info_flags::cinteger_polynomial:
-        return is_cinteger();
-    case info_flags::positive:
-        return is_positive();
-    case info_flags::negative:
-        return is_negative();
-    case info_flags::nonnegative:
-        return !is_negative();
-    case info_flags::posint:
-        return is_pos_integer();
-    case info_flags::negint:
-        return is_integer() && is_negative();
-    case info_flags::nonnegint:
-        return is_nonneg_integer();
-    case info_flags::even:
-        return is_even();
-    case info_flags::odd:
-        return is_odd();
-    case info_flags::prime:
-        return is_prime();
+        case info_flags::numeric:
+        case info_flags::polynomial:
+        case info_flags::rational_function:
+            return true;
+        case info_flags::real:
+            return is_real();
+        case info_flags::rational:
+        case info_flags::rational_polynomial:
+            return is_rational();
+        case info_flags::crational:
+        case info_flags::crational_polynomial:
+            return is_crational();
+        case info_flags::integer:
+        case info_flags::integer_polynomial:
+            return is_integer();
+        case info_flags::cinteger:
+        case info_flags::cinteger_polynomial:
+            return is_cinteger();
+        case info_flags::positive:
+            return is_positive();
+        case info_flags::negative:
+            return is_negative();
+        case info_flags::nonnegative:
+            return !is_negative();
+        case info_flags::posint:
+            return is_pos_integer();
+        case info_flags::negint:
+            return is_integer() && is_negative();
+        case info_flags::nonnegint:
+            return is_nonneg_integer();
+        case info_flags::even:
+            return is_even();
+        case info_flags::odd:
+            return is_odd();
+        case info_flags::prime:
+            return is_prime();
+        case info_flags::algebraic:
+            return !is_real();
     }
     return false;
 }
@@ -608,28 +658,14 @@ bool numeric::is_equal_same_type(const basic & other) const
     return this->is_equal(*o);
 }
 
-unsigned numeric::calchash(void) const
-{
-    return (hashvalue=cl_equal_hashcode(*value) | 0x80000000U);
-    /*
-    cout << *value << "->" << hashvalue << endl;
-    hashvalue=HASHVALUE_NUMERIC+1000U;
-    return HASHVALUE_NUMERIC+1000U;
-    */
-}
 
-/*
 unsigned numeric::calchash(void) const
 {
-    double d=to_double();
-    int s=d>0 ? 1 : -1;
-    d=fabs(d);
-    if (d>0x07FF0000) {
-        d=0x07FF0000;
-    }
-    return 0x88000000U+s*unsigned(d/0x07FF0000);
+    // Use CLN's hashcode.  Warning: It depends only on the number's value, not
+    // its type or precision (i.e. a true equivalence relation on numbers).  As
+    // a consequence, 3 and 3.0 share the same hashvalue.
+    return (hashvalue = cl_equal_hashcode(*value) | 0x80000000U);
 }
-*/
 
 
 //////////
@@ -684,13 +720,15 @@ numeric numeric::div(const numeric & other) const
 
 numeric numeric::power(const numeric & other) const
 {
-    static const numeric * _num1p=&_num1();
+    static const numeric * _num1p = &_num1();
     if (&other==_num1p)
         return *this;
     if (::zerop(*value)) {
         if (::zerop(*other.value))
             throw (std::domain_error("numeric::eval(): pow(0,0) is undefined"));
-        else if (other.is_real() && !::plusp(::realpart(*other.value)))
+        else if (::zerop(::realpart(*other.value)))
+            throw (std::domain_error("numeric::eval(): pow(0,I) is undefined"));
+        else if (::minusp(::realpart(*other.value)))
             throw (std::overflow_error("numeric::eval(): division by zero"));
         else
             return _num0();
@@ -744,7 +782,9 @@ const numeric & numeric::power_dyn(const numeric & other) const
     if (::zerop(*value)) {
         if (::zerop(*other.value))
             throw (std::domain_error("numeric::eval(): pow(0,0) is undefined"));
-        else if (other.is_real() && !::plusp(::realpart(*other.value)))
+        else if (::zerop(::realpart(*other.value)))
+            throw (std::domain_error("numeric::eval(): pow(0,I) is undefined"));
+        else if (::minusp(::realpart(*other.value)))
             throw (std::overflow_error("numeric::eval(): division by zero"));
         else
             return _num0();
@@ -817,7 +857,7 @@ int numeric::compare(const numeric & other) const
     // Comparing two real numbers?
     if (this->is_real() && other.is_real())
         // Yes, just compare them
-        return ::cl_compare(The(cl_R)(*value), The(cl_R)(*other.value));    
+        return ::cl_compare(The(::cl_R)(*value), The(::cl_R)(*other.value));    
     else {
         // No, first compare real parts
         cl_signean real_cmp = ::cl_compare(::realpart(*value), ::realpart(*other.value));
@@ -843,7 +883,7 @@ bool numeric::is_zero(void) const
 bool numeric::is_positive(void) const
 {
     if (this->is_real())
-        return ::plusp(The(cl_R)(*value));  // -> CLN
+        return ::plusp(The(::cl_R)(*value));  // -> CLN
     return false;
 }
 
@@ -851,38 +891,38 @@ bool numeric::is_positive(void) const
 bool numeric::is_negative(void) const
 {
     if (this->is_real())
-        return ::minusp(The(cl_R)(*value));  // -> CLN
+        return ::minusp(The(::cl_R)(*value));  // -> CLN
     return false;
 }
 
 /** True if object is a non-complex integer. */
 bool numeric::is_integer(void) const
 {
-    return ::instanceof(*value, cl_I_ring);  // -> CLN
+    return ::instanceof(*value, ::cl_I_ring);  // -> CLN
 }
 
 /** True if object is an exact integer greater than zero. */
 bool numeric::is_pos_integer(void) const
 {
-    return (this->is_integer() && ::plusp(The(cl_I)(*value)));  // -> CLN
+    return (this->is_integer() && ::plusp(The(::cl_I)(*value)));  // -> CLN
 }
 
 /** True if object is an exact integer greater or equal zero. */
 bool numeric::is_nonneg_integer(void) const
 {
-    return (this->is_integer() && !::minusp(The(cl_I)(*value)));  // -> CLN
+    return (this->is_integer() && !::minusp(The(::cl_I)(*value)));  // -> CLN
 }
 
 /** True if object is an exact even integer. */
 bool numeric::is_even(void) const
 {
-    return (this->is_integer() && ::evenp(The(cl_I)(*value)));  // -> CLN
+    return (this->is_integer() && ::evenp(The(::cl_I)(*value)));  // -> CLN
 }
 
 /** True if object is an exact odd integer. */
 bool numeric::is_odd(void) const
 {
-    return (this->is_integer() && ::oddp(The(cl_I)(*value)));  // -> CLN
+    return (this->is_integer() && ::oddp(The(::cl_I)(*value)));  // -> CLN
 }
 
 /** Probabilistic primality test.
@@ -890,20 +930,20 @@ bool numeric::is_odd(void) const
  *  @return  true if object is exact integer and prime. */
 bool numeric::is_prime(void) const
 {
-    return (this->is_integer() && ::isprobprime(The(cl_I)(*value)));  // -> CLN
+    return (this->is_integer() && ::isprobprime(The(::cl_I)(*value)));  // -> CLN
 }
 
 /** True if object is an exact rational number, may even be complex
  *  (denominator may be unity). */
 bool numeric::is_rational(void) const
 {
-    return ::instanceof(*value, cl_RA_ring);  // -> CLN
+    return ::instanceof(*value, ::cl_RA_ring);  // -> CLN
 }
 
 /** True if object is a real integer, rational or float (but not complex). */
 bool numeric::is_real(void) const
 {
-    return ::instanceof(*value, cl_R_ring);  // -> CLN
+    return ::instanceof(*value, ::cl_R_ring);  // -> CLN
 }
 
 bool numeric::operator==(const numeric & other) const
@@ -920,11 +960,11 @@ bool numeric::operator!=(const numeric & other) const
  *  of the form a+b*I, where a and b are integers. */
 bool numeric::is_cinteger(void) const
 {
-    if (::instanceof(*value, cl_I_ring))
+    if (::instanceof(*value, ::cl_I_ring))
         return true;
     else if (!this->is_real()) {  // complex case, handle n+m*I
-        if (::instanceof(::realpart(*value), cl_I_ring) &&
-            ::instanceof(::imagpart(*value), cl_I_ring))
+        if (::instanceof(::realpart(*value), ::cl_I_ring) &&
+            ::instanceof(::imagpart(*value), ::cl_I_ring))
             return true;
     }
     return false;
@@ -934,11 +974,11 @@ bool numeric::is_cinteger(void) const
  *  (denominator may be unity). */
 bool numeric::is_crational(void) const
 {
-    if (::instanceof(*value, cl_RA_ring))
+    if (::instanceof(*value, ::cl_RA_ring))
         return true;
     else if (!this->is_real()) {  // complex case, handle Q(i):
-        if (::instanceof(::realpart(*value), cl_RA_ring) &&
-            ::instanceof(::imagpart(*value), cl_RA_ring))
+        if (::instanceof(::realpart(*value), ::cl_RA_ring) &&
+            ::instanceof(::imagpart(*value), ::cl_RA_ring))
             return true;
     }
     return false;
@@ -950,7 +990,7 @@ bool numeric::is_crational(void) const
 bool numeric::operator<(const numeric & other) const
 {
     if (this->is_real() && other.is_real())
-        return (The(cl_R)(*value) < The(cl_R)(*other.value));  // -> CLN
+        return (The(::cl_R)(*value) < The(::cl_R)(*other.value));  // -> CLN
     throw (std::invalid_argument("numeric::operator<(): complex inequality"));
     return false;  // make compiler shut up
 }
@@ -961,7 +1001,7 @@ bool numeric::operator<(const numeric & other) const
 bool numeric::operator<=(const numeric & other) const
 {
     if (this->is_real() && other.is_real())
-        return (The(cl_R)(*value) <= The(cl_R)(*other.value));  // -> CLN
+        return (The(::cl_R)(*value) <= The(::cl_R)(*other.value));  // -> CLN
     throw (std::invalid_argument("numeric::operator<=(): complex inequality"));
     return false;  // make compiler shut up
 }
@@ -972,7 +1012,7 @@ bool numeric::operator<=(const numeric & other) const
 bool numeric::operator>(const numeric & other) const
 {
     if (this->is_real() && other.is_real())
-        return (The(cl_R)(*value) > The(cl_R)(*other.value));  // -> CLN
+        return (The(::cl_R)(*value) > The(::cl_R)(*other.value));  // -> CLN
     throw (std::invalid_argument("numeric::operator>(): complex inequality"));
     return false;  // make compiler shut up
 }
@@ -983,7 +1023,7 @@ bool numeric::operator>(const numeric & other) const
 bool numeric::operator>=(const numeric & other) const
 {
     if (this->is_real() && other.is_real())
-        return (The(cl_R)(*value) >= The(cl_R)(*other.value));  // -> CLN
+        return (The(::cl_R)(*value) >= The(::cl_R)(*other.value));  // -> CLN
     throw (std::invalid_argument("numeric::operator>=(): complex inequality"));
     return false;  // make compiler shut up
 }
@@ -994,7 +1034,7 @@ bool numeric::operator>=(const numeric & other) const
 int numeric::to_int(void) const
 {
     GINAC_ASSERT(this->is_integer());
-    return ::cl_I_to_int(The(cl_I)(*value));  // -> CLN
+    return ::cl_I_to_int(The(::cl_I)(*value));  // -> CLN
 }
 
 /** Converts numeric types to machine's long.  You should check with
@@ -1003,7 +1043,7 @@ int numeric::to_int(void) const
 long numeric::to_long(void) const
 {
     GINAC_ASSERT(this->is_integer());
-    return ::cl_I_to_long(The(cl_I)(*value));  // -> CLN
+    return ::cl_I_to_long(The(::cl_I)(*value));  // -> CLN
 }
 
 /** Converts numeric types to machine's double. You should check with is_real()
@@ -1015,13 +1055,13 @@ double numeric::to_double(void) const
 }
 
 /** Real part of a number. */
-numeric numeric::real(void) const
+const numeric numeric::real(void) const
 {
     return numeric(::realpart(*value));  // -> CLN
 }
 
 /** Imaginary part of a number. */
-numeric numeric::imag(void) const
+const numeric numeric::imag(void) const
 {
     return numeric(::imagpart(*value));  // -> CLN
 }
@@ -1043,44 +1083,44 @@ inline cl_heap_ratio* TheRatio (const cl_N& obj)
  *  numerator of complex if real and imaginary part are both rational numbers
  *  (i.e numer(4/3+5/6*I) == 8+5*I), the number carrying the sign in all other
  *  cases. */
-numeric numeric::numer(void) const
+const numeric numeric::numer(void) const
 {
     if (this->is_integer()) {
         return numeric(*this);
     }
 #ifdef SANE_LINKER
-    else if (::instanceof(*value, cl_RA_ring)) {
-        return numeric(::numerator(The(cl_RA)(*value)));
+    else if (::instanceof(*value, ::cl_RA_ring)) {
+        return numeric(::numerator(The(::cl_RA)(*value)));
     }
     else if (!this->is_real()) {  // complex case, handle Q(i):
         cl_R r = ::realpart(*value);
         cl_R i = ::imagpart(*value);
-        if (::instanceof(r, cl_I_ring) && ::instanceof(i, cl_I_ring))
+        if (::instanceof(r, ::cl_I_ring) && ::instanceof(i, ::cl_I_ring))
             return numeric(*this);
-        if (::instanceof(r, cl_I_ring) && ::instanceof(i, cl_RA_ring))
-            return numeric(::complex(r*::denominator(The(cl_RA)(i)), ::numerator(The(cl_RA)(i))));
-        if (::instanceof(r, cl_RA_ring) && ::instanceof(i, cl_I_ring))
-            return numeric(::complex(::numerator(The(cl_RA)(r)), i*::denominator(The(cl_RA)(r))));
-        if (::instanceof(r, cl_RA_ring) && ::instanceof(i, cl_RA_ring)) {
-            cl_I s = ::lcm(::denominator(The(cl_RA)(r)), ::denominator(The(cl_RA)(i)));
-            return numeric(::complex(::numerator(The(cl_RA)(r))*(exquo(s,::denominator(The(cl_RA)(r)))),
-                                   ::numerator(The(cl_RA)(i))*(exquo(s,::denominator(The(cl_RA)(i))))));
+        if (::instanceof(r, ::cl_I_ring) && ::instanceof(i, ::cl_RA_ring))
+            return numeric(::complex(r*::denominator(The(::cl_RA)(i)), ::numerator(The(::cl_RA)(i))));
+        if (::instanceof(r, ::cl_RA_ring) && ::instanceof(i, ::cl_I_ring))
+            return numeric(::complex(::numerator(The(::cl_RA)(r)), i*::denominator(The(::cl_RA)(r))));
+        if (::instanceof(r, ::cl_RA_ring) && ::instanceof(i, ::cl_RA_ring)) {
+            cl_I s = ::lcm(::denominator(The(::cl_RA)(r)), ::denominator(The(::cl_RA)(i)));
+            return numeric(::complex(::numerator(The(::cl_RA)(r))*(exquo(s,::denominator(The(::cl_RA)(r)))),
+                                   ::numerator(The(::cl_RA)(i))*(exquo(s,::denominator(The(::cl_RA)(i))))));
         }
     }
 #else
-    else if (instanceof(*value, cl_RA_ring)) {
+    else if (instanceof(*value, ::cl_RA_ring)) {
         return numeric(TheRatio(*value)->numerator);
     }
     else if (!this->is_real()) {  // complex case, handle Q(i):
         cl_R r = ::realpart(*value);
         cl_R i = ::imagpart(*value);
-        if (instanceof(r, cl_I_ring) && instanceof(i, cl_I_ring))
+        if (instanceof(r, ::cl_I_ring) && instanceof(i, ::cl_I_ring))
             return numeric(*this);
-        if (instanceof(r, cl_I_ring) && instanceof(i, cl_RA_ring))
+        if (instanceof(r, ::cl_I_ring) && instanceof(i, ::cl_RA_ring))
             return numeric(::complex(r*TheRatio(i)->denominator, TheRatio(i)->numerator));
-        if (instanceof(r, cl_RA_ring) && instanceof(i, cl_I_ring))
+        if (instanceof(r, ::cl_RA_ring) && instanceof(i, ::cl_I_ring))
             return numeric(::complex(TheRatio(r)->numerator, i*TheRatio(r)->denominator));
-        if (instanceof(r, cl_RA_ring) && instanceof(i, cl_RA_ring)) {
+        if (instanceof(r, ::cl_RA_ring) && instanceof(i, ::cl_RA_ring)) {
             cl_I s = ::lcm(TheRatio(r)->denominator, TheRatio(i)->denominator);
             return numeric(::complex(TheRatio(r)->numerator*(exquo(s,TheRatio(r)->denominator)),
                                    TheRatio(i)->numerator*(exquo(s,TheRatio(i)->denominator))));
@@ -1094,41 +1134,41 @@ numeric numeric::numer(void) const
 /** Denominator.  Computes the denominator of rational numbers, common integer
  *  denominator of complex if real and imaginary part are both rational numbers
  *  (i.e denom(4/3+5/6*I) == 6), one in all other cases. */
-numeric numeric::denom(void) const
+const numeric numeric::denom(void) const
 {
     if (this->is_integer()) {
         return _num1();
     }
 #ifdef SANE_LINKER
-    if (instanceof(*value, cl_RA_ring)) {
-        return numeric(::denominator(The(cl_RA)(*value)));
+    if (instanceof(*value, ::cl_RA_ring)) {
+        return numeric(::denominator(The(::cl_RA)(*value)));
     }
     if (!this->is_real()) {  // complex case, handle Q(i):
         cl_R r = ::realpart(*value);
         cl_R i = ::imagpart(*value);
-        if (::instanceof(r, cl_I_ring) && ::instanceof(i, cl_I_ring))
+        if (::instanceof(r, ::cl_I_ring) && ::instanceof(i, ::cl_I_ring))
             return _num1();
-        if (::instanceof(r, cl_I_ring) && ::instanceof(i, cl_RA_ring))
-            return numeric(::denominator(The(cl_RA)(i)));
-        if (::instanceof(r, cl_RA_ring) && ::instanceof(i, cl_I_ring))
-            return numeric(::denominator(The(cl_RA)(r)));
-        if (::instanceof(r, cl_RA_ring) && ::instanceof(i, cl_RA_ring))
-            return numeric(::lcm(::denominator(The(cl_RA)(r)), ::denominator(The(cl_RA)(i))));
+        if (::instanceof(r, ::cl_I_ring) && ::instanceof(i, ::cl_RA_ring))
+            return numeric(::denominator(The(::cl_RA)(i)));
+        if (::instanceof(r, ::cl_RA_ring) && ::instanceof(i, ::cl_I_ring))
+            return numeric(::denominator(The(::cl_RA)(r)));
+        if (::instanceof(r, ::cl_RA_ring) && ::instanceof(i, ::cl_RA_ring))
+            return numeric(::lcm(::denominator(The(::cl_RA)(r)), ::denominator(The(::cl_RA)(i))));
     }
 #else
-    if (instanceof(*value, cl_RA_ring)) {
+    if (instanceof(*value, ::cl_RA_ring)) {
         return numeric(TheRatio(*value)->denominator);
     }
     if (!this->is_real()) {  // complex case, handle Q(i):
         cl_R r = ::realpart(*value);
         cl_R i = ::imagpart(*value);
-        if (instanceof(r, cl_I_ring) && instanceof(i, cl_I_ring))
+        if (instanceof(r, ::cl_I_ring) && instanceof(i, ::cl_I_ring))
             return _num1();
-        if (instanceof(r, cl_I_ring) && instanceof(i, cl_RA_ring))
+        if (instanceof(r, ::cl_I_ring) && instanceof(i, ::cl_RA_ring))
             return numeric(TheRatio(i)->denominator);
-        if (instanceof(r, cl_RA_ring) && instanceof(i, cl_I_ring))
+        if (instanceof(r, ::cl_RA_ring) && instanceof(i, ::cl_I_ring))
             return numeric(TheRatio(r)->denominator);
-        if (instanceof(r, cl_RA_ring) && instanceof(i, cl_RA_ring))
+        if (instanceof(r, ::cl_RA_ring) && instanceof(i, ::cl_RA_ring))
             return numeric(::lcm(TheRatio(r)->denominator, TheRatio(i)->denominator));
     }
 #endif // def SANE_LINKER
@@ -1145,7 +1185,7 @@ numeric numeric::denom(void) const
 int numeric::int_length(void) const
 {
     if (this->is_integer())
-        return ::integer_length(The(cl_I)(*value));  // -> CLN
+        return ::integer_length(The(::cl_I)(*value));  // -> CLN
     else
         return 0;
 }
@@ -1341,11 +1381,18 @@ const numeric zeta(const numeric & x)
 }
 
 
-/** The gamma function.
+/** The Gamma function.
  *  This is only a stub! */
-const numeric gamma(const numeric & x)
+const numeric lgamma(const numeric & x)
+{
+    clog << "lgamma(" << x
+         << "): Does anybody know good way to calculate this numerically?"
+         << endl;
+    return numeric(0);
+}
+const numeric tgamma(const numeric & x)
 {
-    clog << "gamma(" << x
+    clog << "tgamma(" << x
          << "): Does anybody know good way to calculate this numerically?"
          << endl;
     return numeric(0);
@@ -1387,7 +1434,7 @@ const numeric factorial(const numeric & n)
 
 
 /** The double factorial combinatorial function.  (Scarcely used, but still
- *  useful in cases, like for exact results of Gamma(n+1/2) for instance.)
+ *  useful in cases, like for exact results of tgamma(n+1/2) for instance.)
  *
  *  @param n  integer argument >= -1
  *  @return n!! == n * (n-2) * (n-4) * ... * ({1|2}) with 0!! == (-1)!! == 1
@@ -1421,7 +1468,7 @@ const numeric binomial(const numeric & n, const numeric & k)
         }
     }
     
-    // should really be gamma(n+1)/(gamma(r+1)/gamma(n-r+1) or a suitable limit
+    // should really be gamma(n+1)/gamma(r+1)/gamma(n-r+1) or a suitable limit
     throw (std::range_error("numeric::binomial(): donĀ“t know how to evaluate that."));
 }
 
@@ -1435,39 +1482,70 @@ const numeric bernoulli(const numeric & nn)
 {
     if (!nn.is_integer() || nn.is_negative())
         throw (std::range_error("numeric::bernoulli(): argument must be integer >= 0"));
-    if (nn.is_zero())
-        return _num1();
+    
+    // Method:
+    //
+    // The Bernoulli numbers are rational numbers that may be computed using
+    // the relation
+    //
+    //     B_n = - 1/(n+1) * sum_{k=0}^{n-1}(binomial(n+1,k)*B_k)
+    //
+    // with B(0) = 1.  Since the n'th Bernoulli number depends on all the
+    // previous ones, the computation is necessarily very expensive.  There are
+    // several other ways of computing them, a particularly good one being
+    // cl_I s = 1;
+    // cl_I c = n+1;
+    // cl_RA Bern = 0;
+    // for (unsigned i=0; i<n; i++) {
+    //     c = exquo(c*(i-n),(i+2));
+    //     Bern = Bern + c*s/(i+2);
+    //     s = s + expt_pos(cl_I(i+2),n);
+    // }
+    // return Bern;
+    // 
+    // But if somebody works with the n'th Bernoulli number she is likely to
+    // also need all previous Bernoulli numbers. So we need a complete remember
+    // table and above divide and conquer algorithm is not suited to build one
+    // up.  The code below is adapted from Pari's function bernvec().
+    // 
+    // (There is an interesting relation with the tangent polynomials described
+    // in `Concrete Mathematics', which leads to a program twice as fast as our
+    // implementation below, but it requires storing one such polynomial in
+    // addition to the remember table.  This doubles the memory footprint so
+    // we don't use it.)
+    
+    // the special cases not covered by the algorithm below
     if (!nn.compare(_num1()))
         return numeric(-1,2);
     if (nn.is_odd())
         return _num0();
-    // Until somebody has the Blues and comes up with a much better idea and
-    // codes it (preferably in CLN) we make this a remembering function which
-    // computes its results using the defining formula
-    // B(nn) == - 1/(nn+1) * sum_{k=0}^{nn-1}(binomial(nn+1,k)*B(k))
-    // whith B(0) == 1.
-    // Be warned, though: the Bernoulli numbers are probably computationally 
-    // very expensive anyhow and you shouldn't expect miracles to happen.
-    static vector<numeric> results;
-    static int highest_result = -1;
-    int n = nn.sub(_num2()).div(_num2()).to_int();
-    if (n <= highest_result)
-        return results[n];
-    if (results.capacity() < (unsigned)(n+1))
-        results.reserve(n+1);
     
-    numeric tmp;  // used to store the sum
-    for (int i=highest_result+1; i<=n; ++i) {
-        // the first two elements:
-        tmp = numeric(-2*i-1,2);
-        // accumulate the remaining elements:
-        for (int j=0; j<i; ++j)
-            tmp += binomial(numeric(2*i+3),numeric(j*2+2))*results[j];
-        // divide by -(nn+1) and store result:
-        results.push_back(-tmp/numeric(2*i+3));
+    // store nonvanishing Bernoulli numbers here
+    static vector< ::cl_RA > results;
+    static int highest_result = 0;
+    // algorithm not applicable to B(0), so just store it
+    if (results.size()==0)
+        results.push_back(::cl_RA(1));
+    
+    int n = nn.to_long();
+    for (int i=highest_result; i<n/2; ++i) {
+        ::cl_RA B = 0;
+        long n = 8;
+        long m = 5;
+        long d1 = i;
+        long d2 = 2*i-1;
+        for (int j=i; j>0; --j) {
+            B = cl_I(n*m) * (B+results[j]) / (d1*d2);
+            n += 4;
+            m += 2;
+            d1 -= 1;
+            d2 -= 2;
+        }
+        B = (1 - ((B+1)/(2*i+3))) / (cl_I(1)<<(2*i+2));
+        results.push_back(B);
+        ++highest_result;
     }
-    highest_result=n;
-    return results[n];
+    return results[n/2];
 }
 
 
@@ -1481,8 +1559,16 @@ const numeric fibonacci(const numeric & n)
 {
     if (!n.is_integer())
         throw (std::range_error("numeric::fibonacci(): argument must be integer"));
+    // Method:
+    //
+    // This is based on an implementation that can be found in CLN's example
+    // directory.  There, it is done recursively, which may be more elegant
+    // than our non-recursive implementation that has to resort to some bit-
+    // fiddling.  This is, however, a matter of taste.
     // The following addition formula holds:
+    //
     //      F(n+m)   = F(m-1)*F(n) + F(m)*F(n+1)  for m >= 1, n >= 0.
+    //
     // (Proof: For fixed m, the LHS and the RHS satisfy the same recurrence
     // w.r.t. n, and the initial values (n=0, n=1) agree. Hence all values
     // agree.)
@@ -1501,14 +1587,14 @@ const numeric fibonacci(const numeric & n)
         else
             return fibonacci(-n);
     
-    cl_I u(0);
-    cl_I v(1);
-    cl_I m = The(cl_I)(*n.value) >> 1L;  // floor(n/2);
+    ::cl_I u(0);
+    ::cl_I v(1);
+    ::cl_I m = The(::cl_I)(*n.value) >> 1L;  // floor(n/2);
     for (uintL bit=::integer_length(m); bit>0; --bit) {
         // Since a squaring is cheaper than a multiplication, better use
         // three squarings instead of one multiplication and two squarings.
-        cl_I u2 = ::square(u);
-        cl_I v2 = ::square(v);
+        ::cl_I u2 = ::square(u);
+        ::cl_I v2 = ::square(v);
         if (::logbitp(bit-1, m)) {
             v = ::square(u + v) - u2;
             u = u2 + v2;
@@ -1543,7 +1629,7 @@ numeric abs(const numeric & x)
 numeric mod(const numeric & a, const numeric & b)
 {
     if (a.is_integer() && b.is_integer())
-        return ::mod(The(cl_I)(*a.value), The(cl_I)(*b.value));  // -> CLN
+        return ::mod(The(::cl_I)(*a.value), The(::cl_I)(*b.value));  // -> CLN
     else
         return _num0();  // Throw?
 }
@@ -1556,8 +1642,8 @@ numeric mod(const numeric & a, const numeric & b)
 numeric smod(const numeric & a, const numeric & b)
 {
     if (a.is_integer() && b.is_integer()) {
-        cl_I b2 = The(cl_I)(ceiling1(The(cl_I)(*b.value) / 2)) - 1;
-        return ::mod(The(cl_I)(*a.value) + b2, The(cl_I)(*b.value)) - b2;
+        cl_I b2 = The(::cl_I)(ceiling1(The(::cl_I)(*b.value) / 2)) - 1;
+        return ::mod(The(::cl_I)(*a.value) + b2, The(::cl_I)(*b.value)) - b2;
     } else
         return _num0();  // Throw?
 }
@@ -1572,7 +1658,7 @@ numeric smod(const numeric & a, const numeric & b)
 numeric irem(const numeric & a, const numeric & b)
 {
     if (a.is_integer() && b.is_integer())
-        return ::rem(The(cl_I)(*a.value), The(cl_I)(*b.value));  // -> CLN
+        return ::rem(The(::cl_I)(*a.value), The(::cl_I)(*b.value));  // -> CLN
     else
         return _num0();  // Throw?
 }
@@ -1588,7 +1674,7 @@ numeric irem(const numeric & a, const numeric & b)
 numeric irem(const numeric & a, const numeric & b, numeric & q)
 {
     if (a.is_integer() && b.is_integer()) {  // -> CLN
-        cl_I_div_t rem_quo = truncate2(The(cl_I)(*a.value), The(cl_I)(*b.value));
+        cl_I_div_t rem_quo = truncate2(The(::cl_I)(*a.value), The(::cl_I)(*b.value));
         q = rem_quo.quotient;
         return rem_quo.remainder;
     }
@@ -1606,7 +1692,7 @@ numeric irem(const numeric & a, const numeric & b, numeric & q)
 numeric iquo(const numeric & a, const numeric & b)
 {
     if (a.is_integer() && b.is_integer())
-        return truncate1(The(cl_I)(*a.value), The(cl_I)(*b.value));  // -> CLN
+        return truncate1(The(::cl_I)(*a.value), The(::cl_I)(*b.value));  // -> CLN
     else
         return _num0();  // Throw?
 }
@@ -1621,7 +1707,7 @@ numeric iquo(const numeric & a, const numeric & b)
 numeric iquo(const numeric & a, const numeric & b, numeric & r)
 {
     if (a.is_integer() && b.is_integer()) {  // -> CLN
-        cl_I_div_t rem_quo = truncate2(The(cl_I)(*a.value), The(cl_I)(*b.value));
+        cl_I_div_t rem_quo = truncate2(The(::cl_I)(*a.value), The(::cl_I)(*b.value));
         r = rem_quo.remainder;
         return rem_quo.quotient;
     } else {
@@ -1650,7 +1736,7 @@ numeric isqrt(const numeric & x)
 {
     if (x.is_integer()) {
         cl_I root;
-        ::isqrt(The(cl_I)(*x.value), &root);  // -> CLN
+        ::isqrt(The(::cl_I)(*x.value), &root);  // -> CLN
         return root;
     } else
         return _num0();  // Throw?
@@ -1664,7 +1750,7 @@ numeric isqrt(const numeric & x)
 numeric gcd(const numeric & a, const numeric & b)
 {
     if (a.is_integer() && b.is_integer())
-        return ::gcd(The(cl_I)(*a.value), The(cl_I)(*b.value));  // -> CLN
+        return ::gcd(The(::cl_I)(*a.value), The(::cl_I)(*b.value));  // -> CLN
     else
         return _num1();
 }
@@ -1677,7 +1763,7 @@ numeric gcd(const numeric & a, const numeric & b)
 numeric lcm(const numeric & a, const numeric & b)
 {
     if (a.is_integer() && b.is_integer())
-        return ::lcm(The(cl_I)(*a.value), The(cl_I)(*b.value));  // -> CLN
+        return ::lcm(The(::cl_I)(*a.value), The(::cl_I)(*b.value));  // -> CLN
     else
         return *a.value * *b.value;
 }
@@ -1690,8 +1776,8 @@ ex PiEvalf(void)
 }
 
 
-/** Floating point evaluation of Euler's constant Gamma. */
-ex EulerGammaEvalf(void)
+/** Floating point evaluation of Euler's constant gamma. */
+ex EulerEvalf(void)
 { 
     return numeric(::cl_eulerconst(cl_default_float_format));  // -> CLN
 }