]> www.ginac.de Git - ginac.git/blobdiff - ginac/ex.h
- implemented global class registry (for class basic and derived classes)
[ginac.git] / ginac / ex.h
index 313bd6c76ea5f2edadbec496322a2f8090c6e503..21a4ea7cbdaeb26a5c73ea654affecfd2c99cbda 100644 (file)
@@ -308,6 +308,9 @@ inline ex evalf(ex const & thisex, int level = 0)
 inline ex diff(ex const & thisex, symbol const & s, unsigned nth = 1)
 { return thisex.diff(s, nth); }
 
+inline ex series(ex const & thisex, symbol const & s, ex const & point, int order = 6)
+{ return thisex.series(s, point, order); }
+
 inline ex subs(ex const & thisex, ex const & e)
 { return thisex.subs(e); }