aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/gsl-poly-test-fix-pt2.patch
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2015-11-01 09:39:13 +0200
committerEfraim Flashner <efraim@flashner.co.il>2015-11-02 21:04:18 +0200
commitf1339551221c3fb220939cd1e8404785af96a8af (patch)
tree54b84ba22255699983e385527348181edda833c1 /gnu/packages/patches/gsl-poly-test-fix-pt2.patch
parent5c2b2f006a7020b9c25ac32e675fa76260b3c3a4 (diff)
downloadguix-f1339551221c3fb220939cd1e8404785af96a8af.tar
guix-f1339551221c3fb220939cd1e8404785af96a8af.tar.gz
gnu: gsl: Update to 2.0.
* gnu/packages/maths.scm (gsl): Update to 2.0. [source]: Remove patches. * gnu/packages/patches/gsl-poly-test-fix-pt1.patch, gnu/packages/patches/gsl-poly-test-fix-pt2.patch: Remove files. * gnu-system.am (dist_patch_DATA): Remove patches.
Diffstat (limited to 'gnu/packages/patches/gsl-poly-test-fix-pt2.patch')
-rw-r--r--gnu/packages/patches/gsl-poly-test-fix-pt2.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/gnu/packages/patches/gsl-poly-test-fix-pt2.patch b/gnu/packages/patches/gsl-poly-test-fix-pt2.patch
deleted file mode 100644
index 0e6fcf1a53..0000000000
--- a/gnu/packages/patches/gsl-poly-test-fix-pt2.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 0466df8660a7b6ddf2e082a1ec38bc6ea25a3c5c Mon Sep 17 00:00:00 2001
-From: Patrick Alken <alken@colorado.edu>
-Date: Mon, 7 Apr 2014 10:59:58 -0600
-Subject: [PATCH] change error test for 15th degree polynomial (bug #39055)
-
----
- poly/test.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/poly/test.c b/poly/test.c
-index d090802..f6a7e3f 100644
---- a/poly/test.c
-+++ b/poly/test.c
-@@ -579,8 +579,8 @@ main (void)
-
- for (i = 0; i<15; i++)
- {
-- gsl_test_abs (z[2*i], expected[2*i], 1e-7, "z%d.real, 15th-order polynomial", i);
-- gsl_test_abs (z[2*i+1], expected[2*i+1], 1e-7, "z%d.imag, 15th-order polynomial", i);
-+ gsl_test_rel (z[2*i], expected[2*i], 1e-7, "z%d.real, 15th-order polynomial", i);
-+ gsl_test_rel (z[2*i+1], expected[2*i+1], 1e-7, "z%d.imag, 15th-order polynomial", i);
- }
- }
-
---
-2.4.3
-