]> www.ginac.de Git - ginac.git/blobdiff - ginac/pseries.h
the unsigned number 128 was stored incorrectly (0x80 instead of 0x80 0x01)
[ginac.git] / ginac / pseries.h
index 14b011af6af401b09ca558f55763697e2aaa1f4f..20005473baada848c5e8306a85bd4bb450bc0639 100644 (file)
@@ -26,9 +26,7 @@
 #include "basic.h"
 #include "expairseq.h"
 
-#ifndef NO_NAMESPACE_GINAC
 namespace GiNaC {
-#endif // ndef NO_NAMESPACE_GINAC
 
 /** This class holds a extended truncated power series (positive and negative
  *  integer powers). It consists of expression coefficients (only non-zero
@@ -38,13 +36,12 @@ class pseries : public basic
 {
        GINAC_DECLARE_REGISTERED_CLASS(pseries, basic)
 
-       // other constructors
+       // other ctors
 public:
        pseries(const ex &rel_, const epvector &ops_);
 
        // functions overriding virtual functions from base classes
 public:
-       basic *duplicate() const;
        void print(std::ostream &os, unsigned upper_precedence = 0) const;
        void printraw(std::ostream &os) const;
        void printtree(std::ostream & os, unsigned indent) const;
@@ -85,6 +82,7 @@ protected:
 
        /** Expansion point */
        ex point;
+
        static unsigned precedence;
 };
 
@@ -118,8 +116,6 @@ inline bool is_terminating(const pseries & s)
        return s.is_terminating();
 }
 
-#ifndef NO_NAMESPACE_GINAC
 } // namespace GiNaC
-#endif // ndef NO_NAMESPACE_GINAC
 
 #endif // ndef __GINAC_SERIES_H__