]> www.ginac.de Git - ginac.git/blobdiff - ginac/pseries.cpp
* Cint fix. It looks like the hacks are going to go away really soon,
[ginac.git] / ginac / pseries.cpp
index f23bbdfdd940a08859258e4e26dc6cad6ef84906..ffb2cfb98125d658cbaeb1be9a2b13e60aeab34c 100644 (file)
@@ -490,7 +490,7 @@ ex basic::series(const relational & r, int order, unsigned options) const
        const symbol &s = static_cast<symbol &>(*r.lhs().bp);
        
        if (!coeff.is_zero())
-               seq.push_back(expair(coeff, numeric(0)));
+               seq.push_back(expair(coeff, _ex0()));
        
        int n;
        for (n=1; n<order; ++n) {