summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-02-01 19:44:24 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-01 23:39:20 +0100
commitef2abb4669103067db05bf61bca5c179c9c2c364 (patch)
treebbd054a225a7bf6960cc24ea7d3fea97f69990d3 /sci-mathematics
parentsci-mathematics/isabelle: remove unused patch (diff)
downloadgentoo-ef2abb4669103067db05bf61bca5c179c9c2c364.tar.gz
gentoo-ef2abb4669103067db05bf61bca5c179c9c2c364.tar.bz2
gentoo-ef2abb4669103067db05bf61bca5c179c9c2c364.zip
sci-mathematics/normaliz: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3764
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/normaliz/files/normaliz-3.0.0-gmp61-compat.patch70
1 files changed, 0 insertions, 70 deletions
diff --git a/sci-mathematics/normaliz/files/normaliz-3.0.0-gmp61-compat.patch b/sci-mathematics/normaliz/files/normaliz-3.0.0-gmp61-compat.patch
deleted file mode 100644
index cf6f81fc363c..000000000000
--- a/sci-mathematics/normaliz/files/normaliz-3.0.0-gmp61-compat.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-diff --git a/source/libnormaliz/HilbertSeries.cpp b/source/libnormaliz/HilbertSeries.cpp
-index 311b839..47a84cd 100644
---- a/source/libnormaliz/HilbertSeries.cpp
-+++ b/source/libnormaliz/HilbertSeries.cpp
-@@ -399,7 +399,7 @@ void HilbertSeries::computeHilbertQuasiPolynomial() const {
- //divide by gcd //TODO operate directly on vector
- Matrix<mpz_class> QP(quasi_poly);
- mpz_class g = QP.matrix_gcd();
-- g = gcd(g,quasi_denom);
-+ g = libnormaliz::gcd(g,quasi_denom);
- quasi_denom /= g;
- QP.scalar_division(g);
- //we use a normed shift, so that the cylcic shift % period always yields a non-negative integer
-diff --git a/source/libnormaliz/matrix.cpp b/source/libnormaliz/matrix.cpp
-index d643eca..ae7684c 100644
---- a/source/libnormaliz/matrix.cpp
-+++ b/source/libnormaliz/matrix.cpp
-@@ -735,7 +735,7 @@ Integer Matrix<Integer>::matrix_gcd() const{
- Integer g=0,h;
- for (size_t i = 0; i <nr; i++) {
- h = v_gcd(elem[i]);
-- g = gcd<Integer>(g, h);
-+ g = libnormaliz::gcd<Integer>(g, h);
- if (g==1) return g;
- }
- return g;
-@@ -1766,7 +1766,7 @@ vector<Integer> Matrix<Integer>::solve_rectangular(const vector<Integer>& v, Int
- return vector<Integer>();
- }
- }
-- Integer total_gcd =gcd(denom,v_gcd(Linear_Form)); // extract the gcd of denom and solution
-+ Integer total_gcd = libnormaliz::gcd(denom,v_gcd(Linear_Form)); // extract the gcd of denom and solution
- denom/=total_gcd;
- v_scalar_division(Linear_Form,total_gcd);
- return Linear_Form;
-diff --git a/source/libnormaliz/sublattice_representation.cpp b/source/libnormaliz/sublattice_representation.cpp
-index e3a7c9d..f5bba3e 100644
---- a/source/libnormaliz/sublattice_representation.cpp
-+++ b/source/libnormaliz/sublattice_representation.cpp
-@@ -213,7 +213,7 @@ void Sublattice_Representation<Integer>::compose(const Sublattice_Representation
-
- //check if a factor can be extraced from B //TODO necessary?
- Integer g = B.matrix_gcd();
-- g = gcd(g,c); //TODO necessary??
-+ g = libnormaliz::gcd(g,c); //TODO necessary??
- if (g > 1) {
- c /= g;
- B.scalar_division(g);
-diff --git a/source/libnormaliz/vector_operations.cpp b/source/libnormaliz/vector_operations.cpp
-index 7c676e9..7103775 100644
---- a/source/libnormaliz/vector_operations.cpp
-+++ b/source/libnormaliz/vector_operations.cpp
-@@ -240,7 +240,7 @@ Integer v_gcd(const vector<Integer>& v){
- size_t i, size=v.size();
- Integer g=0;
- for (i = 0; i < size; i++) {
-- g=gcd(g,v[i]);
-+ g = libnormaliz::gcd(g,v[i]);
- if (g==1) {
- return 1;
- }
-@@ -255,7 +255,7 @@ Integer v_lcm(const vector<Integer>& v){
- size_t i,size=v.size();
- Integer g=1;
- for (i = 0; i < size; i++) {
-- g=lcm(g,v[i]);
-+ g = libnormaliz::lcm(g,v[i]);
- if (g==0) {
- return 0;
- }