]> www.ginac.de Git - ginac.git/blobdiff - ginac/polynomial/mod_gcd.cpp
Happy New Year!
[ginac.git] / ginac / polynomial / mod_gcd.cpp
index d57d6cfc369e79b98f8df72cecca964aac12e512..75a7dcb69f49e3d0ec25a3137b189d6c532f2ae8 100644 (file)
@@ -1,13 +1,37 @@
+/** @file mod_gcd.cpp
+ *
+ *  Implementation of modular GCD. */
+
+/*
+ *  GiNaC Copyright (C) 1999-2020 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 "upoly.h"
 #include "gcd_euclid.h"
 #include "cra_garner.h"
-#include <cln/random.h>
+#include "debug.h"
+
 #include <cln/numtheory.h>
+#include <cln/random.h>
 #include <stdexcept>
-#include "debug.h"
+#include <algorithm>
+
+namespace GiNaC {
 
-namespace GiNaC
-{
 /**
  * @brief Remove the integer content from univariate polynomials A and B.
  *
@@ -172,4 +196,3 @@ void mod_gcd(upoly& result, upoly A, upoly B)
 }
 
 } // namespace GiNaC
-