]> www.ginac.de Git - ginac.git/blobdiff - ginac/inifcns_zeta.cpp
- Introduced exception do_taylor to signal Taylor expansion is ok for series
[ginac.git] / ginac / inifcns_zeta.cpp
index c2a298a9aaf1661dedf2ce2245677e4982574d4e..e343b6fbe2692dc6c2eb92953309b65c0e2ec081 100644 (file)
@@ -73,19 +73,7 @@ static ex zeta_evalf(ex const & x)
     return zeta(ex_to_numeric(x));
 }
 
-static ex zeta_diff(ex const & x, unsigned diff_param)
-{
-    GINAC_ASSERT(diff_param==0);
-    
-    return exZERO();  // should return zeta(numONE(),x);
-}
-
-static ex zeta_series(ex const & x, symbol const & s, ex const & point, int order)
-{
-    throw(std::logic_error("don't know the series expansion of the zeta function"));
-}
-
-REGISTER_FUNCTION(zeta, zeta_eval, zeta_evalf, zeta_diff, zeta_series);
+REGISTER_FUNCTION(zeta, zeta_eval, zeta_evalf, NULL, NULL);
 
 #ifndef NO_GINAC_NAMESPACE
 } // namespace GiNaC