X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fpolynomial%2Fprimpart_content.cpp;h=44924e2d167984b5acfbf3c3826c3ecb6c60514a;hp=fa7f69ba07bf39584a98dc43fc7b231c994d7fd2;hb=1602530f716ba1d425a0667b897182b99c374823;hpb=3627c2c0f2fe8fe04816703c5fc6dad9c96fb0a6 diff --git a/ginac/polynomial/primpart_content.cpp b/ginac/polynomial/primpart_content.cpp index fa7f69ba..44924e2d 100644 --- a/ginac/polynomial/primpart_content.cpp +++ b/ginac/polynomial/primpart_content.cpp @@ -1,3 +1,25 @@ +/** @file primpart_content.cpp + * + * Function to find primitive part of a multivariate polynomial. */ + +/* + * GiNaC Copyright (C) 1999-2009 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 + */ + #include "ex.h" #include "numeric.h" #include "collect_vargs.h" @@ -5,8 +27,7 @@ #include "divide_in_z_p.h" #include "debug.h" -namespace GiNaC -{ +namespace GiNaC { /** * Compute the primitive part and the content of a modular multivariate @@ -75,4 +96,3 @@ void primpart_content(ex& pp, ex& c, ex e, const exvector& vars, } } // namespace GiNaC -