]> www.ginac.de Git - ginac.git/blobdiff - ginac/numeric.cpp
Fixed bug in expanding expressions containing dummy indices. [V.Kisil]
[ginac.git] / ginac / numeric.cpp
index d38458d7dedefddd23731f17d123ea6e7e79fe96..59d61ab4320a877c2cc49e631849c6a7e6ac7935 100644 (file)
@@ -21,7 +21,7 @@
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
 #include "config.h"
@@ -1683,7 +1683,7 @@ const numeric bernoulli(const numeric &nn)
        if (n & 1)
                return (n==1) ? _num_1_2 : _num0;
        if (!n)
-                return _num1;
+               return _num1;
 
        // store nonvanishing Bernoulli numbers here
        static std::vector< cln::cl_RA > results;