diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-12-29 22:01:37 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-12-29 22:01:37 +0000 |
commit | 24f28c6078af3dc5c105905046af4bf953b610f6 (patch) | |
tree | bf651177f5b76a02423cc8bd514a206db309a9c2 /user/eigen | |
parent | 1d5bbfe40b832dccae70c9c3570e4e165f15d8ad (diff) | |
download | packages-24f28c6078af3dc5c105905046af4bf953b610f6.tar.gz packages-24f28c6078af3dc5c105905046af4bf953b610f6.tar.bz2 packages-24f28c6078af3dc5c105905046af4bf953b610f6.tar.xz packages-24f28c6078af3dc5c105905046af4bf953b610f6.zip |
user/eigen: remove unneeded old patch
Diffstat (limited to 'user/eigen')
-rw-r--r-- | user/eigen/prototype.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/user/eigen/prototype.patch b/user/eigen/prototype.patch deleted file mode 100644 index d1205b7dd..000000000 --- a/user/eigen/prototype.patch +++ /dev/null @@ -1,22 +0,0 @@ -From fc10b565bf15aa3438d3586e759ea88a8091411d Mon Sep 17 00:00:00 2001 -From: Gael Guennebaud <g.gael@free.fr> -Date: Fri, 8 Jun 2018 09:56:01 +0200 -Subject: [PATCH] fix prototype - ---- - unsupported/Eigen/src/IterativeSolvers/DGMRES.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/unsupported/Eigen/src/IterativeSolvers/DGMRES.h b/unsupported/Eigen/src/IterativeSolvers/DGMRES.h -index f40b80eda..be039e07f 100644 ---- a/unsupported/Eigen/src/IterativeSolvers/DGMRES.h -+++ b/unsupported/Eigen/src/IterativeSolvers/DGMRES.h -@@ -173,7 +173,7 @@ class DGMRES : public IterativeSolverBase<DGMRES<_MatrixType,_Preconditioner> > - /** - * Set the restart value (default is 30) - */ -- Index set_restart(const Index restart) { m_restart=restart; } -+ void set_restart(const Index restart) { m_restart=restart; } - - /** - * Set the number of eigenvalues to deflate at each restart |