]> www.ginac.de Git - ginac.git/blobdiff - ginac/diff.cpp
- building GiNaC will no longer bomb if Doxygen is not present
[ginac.git] / ginac / diff.cpp
index ff7855af4f0854dd2e7868cfeb0e01454f890d16..7b4d489b76b6dc1a51e572c9326657282411f5d7 100644 (file)
@@ -1,7 +1,8 @@
 /** @file diff.cpp
  *
- *  Implementation of symbolic differentiation in all of GiNaC's classes.
- *
+ *  Implementation of symbolic differentiation in all of GiNaC's classes. */
+
+/*
  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -36,6 +37,8 @@
 #include "series.h"
 #include "symbol.h"
 
+namespace GiNaC {
+
 /** Default implementation of ex::diff(). It prints and error message and returns a fail object.
  *  @see ex::diff */
 ex basic::diff(symbol const & s) const
@@ -197,7 +200,7 @@ ex series::diff(symbol const & s) const
         epvector new_seq;
         epvector::const_iterator it = seq.begin(), itend = seq.end();
         
-        //!! coeff might depend on var
+        // FIXME: coeff might depend on var
         while (it != itend) {
             if (is_order_function(it->rest)) {
                 new_seq.push_back(expair(it->rest, it->coeff - 1));
@@ -223,7 +226,7 @@ ex series::diff(symbol const & s) const
 
 ex ex::diff(symbol const & s, unsigned nth) const
 {
-    ASSERT(bp!=0);
+    GINAC_ASSERT(bp!=0);
 
     if ( nth==0 ) {
         return *this;
@@ -236,3 +239,5 @@ ex ex::diff(symbol const & s, unsigned nth) const
     }
     return ndiff;
 }
+
+} // namespace GiNaC