From a58b813a93c4e065c33889c75b78eeae4479427e Mon Sep 17 00:00:00 2001 From: kortschak Date: Sat, 12 Mar 2016 10:19:55 +1030 Subject: [PATCH] native: restructure dsterf.go part 3 Remove obviously redundant assignment. --- native/dsterf.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/native/dsterf.go b/native/dsterf.go index 3be4d279..c80dd776 100644 --- a/native/dsterf.go +++ b/native/dsterf.go @@ -125,7 +125,6 @@ func (impl Implementation) Dsterf(n int, d, e []float64) (ok bool) { p := d[l] if m == l { // Eigenvalue found. - d[l] = p l++ if l > lend { break @@ -196,7 +195,6 @@ func (impl Implementation) Dsterf(n int, d, e []float64) (ok bool) { p := d[l] if m == l { // Eigenvalue found. - d[l] = p l-- if l < lend { break