X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fseries.cpp;h=5822825fe4e70502e251022f01b1fe4b8e07ee10;hp=187a8472367f482f3ef372eaa32c1fdd318520de;hb=9eab44408b9213d8909b7a9e525f404ad06064dd;hpb=66c0f31c678e6c1938d637636b230ea376c157c1 diff --git a/ginac/series.cpp b/ginac/series.cpp index 187a8472..5822825f 100644 --- a/ginac/series.cpp +++ b/ginac/series.cpp @@ -1,8 +1,9 @@ /** @file series.cpp * * Implementation of class for extended truncated power-series and - * methods for series expansion. - * + * methods for series expansion. */ + +/* * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify @@ -27,6 +28,9 @@ #include "power.h" #include "relational.h" #include "symbol.h" +#include "debugmsg.h" + +namespace GiNaC { /* @@ -631,3 +635,5 @@ ex ex::series(symbol const &s, ex const &point, int order) const // Global constants const series some_series; type_info const & typeid_series = typeid(some_series); + +} // namespace GiNaC