/[GiNaC]/ginac/numeric.h
ViewVC logotype

Diff of /ginac/numeric.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.73 by chrisd, Tue Feb 14 16:40:06 2006 UTC revision 1.74 by chrisd, Thu Mar 9 16:13:11 2006 UTC
# Line 148  public: Line 148  public:
148          const numeric & operator=(double d);          const numeric & operator=(double d);
149          const numeric & operator=(const char *s);          const numeric & operator=(const char *s);
150          const numeric inverse() const;          const numeric inverse() const;
151            numeric step() const;
152          int csgn() const;          int csgn() const;
153          int compare(const numeric &other) const;          int compare(const numeric &other) const;
154          bool is_equal(const numeric &other) const;          bool is_equal(const numeric &other) const;
# Line 250  inline const numeric pow(const numeric & Line 251  inline const numeric pow(const numeric &
251  inline const numeric inverse(const numeric &x)  inline const numeric inverse(const numeric &x)
252  { return x.inverse(); }  { return x.inverse(); }
253    
254    inline numeric step(const numeric &x)
255    { return x.step(); }
256    
257  inline int csgn(const numeric &x)  inline int csgn(const numeric &x)
258  { return x.csgn(); }  { return x.csgn(); }
259    

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74

Christian Bauer">Christian Bauer
ViewVC Help
Powered by ViewVC 1.1.15