X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fpolynomial%2Fnewton_interpolate.h;h=02e0788f1fa2e0ec027f5c6c9e0844f0f8409ee3;hp=e80687df94e68216acc95f4c099d2359f9df7ac7;hb=cca88b51436e4b654d16a4d60cd0d1c66fcf5dd6;hpb=45b1e47372090352ac5af655b32473df2abab23b diff --git a/ginac/polynomial/newton_interpolate.h b/ginac/polynomial/newton_interpolate.h index e80687df..02e0788f 100644 --- a/ginac/polynomial/newton_interpolate.h +++ b/ginac/polynomial/newton_interpolate.h @@ -1,10 +1,33 @@ +/** @file newton_interpolate.h + * + * Functions for Newton interpolation. */ + +/* + * GiNaC Copyright (C) 1999-2014 Johannes Gutenberg University Mainz, Germany + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #ifndef GINAC_PGCD_NEWTON_INTERPOLATE_H #define GINAC_PGCD_NEWTON_INTERPOLATE_H + #include "ex.h" #include "numeric.h" #include "smod_helpers.h" -namespace GiNaC -{ + +namespace GiNaC { /** * Newton interpolation -- incremental form. @@ -32,5 +55,6 @@ ex newton_interp(const ex& e1, const long pt1, return tmp; } -} -#endif /* GINAC_PGCD_NEWTON_INTERPOLATE_H */ +} // namespace GiNaC + +#endif // ndef GINAC_PGCD_NEWTON_INTERPOLATE_H