summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-03-15 11:05:12 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-03-15 11:07:56 +0100
commit95d26a38ddba22350e50fddf31c7d89c28003b0c (patch)
tree1f8c598540e1f863c1ae5119f63761e126c5a871 /sci-mathematics/ginac/files
parentsci-mathematics/octave: drop 7.3.0-r2, 8.1.0, 8.2.0, 8.3.0 (diff)
downloadgentoo-95d26a38ddba22350e50fddf31c7d89c28003b0c.tar.gz
gentoo-95d26a38ddba22350e50fddf31c7d89c28003b0c.tar.bz2
gentoo-95d26a38ddba22350e50fddf31c7d89c28003b0c.zip
sci-mathematics/ginac: drop 1.8.6
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-mathematics/ginac/files')
-rw-r--r--sci-mathematics/ginac/files/ginac-1.8.6-unicode.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/sci-mathematics/ginac/files/ginac-1.8.6-unicode.patch b/sci-mathematics/ginac/files/ginac-1.8.6-unicode.patch
deleted file mode 100644
index d7e4491f7434..000000000000
--- a/sci-mathematics/ginac/files/ginac-1.8.6-unicode.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -r -U3 ginac-1.8.6.orig/ginac/numeric.cpp ginac-1.8.6/ginac/numeric.cpp
---- ginac-1.8.6.orig/ginac/numeric.cpp 2023-02-08 06:02:38.000000000 +0700
-+++ ginac-1.8.6/ginac/numeric.cpp 2023-02-17 16:13:45.137824611 +0700
-@@ -2139,7 +2139,7 @@
- /** The Binomial coefficients. It computes the binomial coefficients. For
- * integer n and k and positive n this is the number of ways of choosing k
- * objects from n distinct objects. If n is a negative integer, the formula
-- * binomial(n,k) == (-1)^k*binomial(k-n-1,k) (if k≥0)
-+ * binomial(n,k) == (-1)^k*binomial(k-n-1,k) (if k>=0)
- * binomial(n,k) == (-1)^(n-k)*binomial(-k-1,n-k) (otherwise)
- * is used to compute the result. */
- const numeric binomial(const numeric &n, const numeric &k)