native: restructure dsterf.go part 3

Remove obviously redundant assignment.
This commit is contained in:
kortschak
2016-03-12 10:19:55 +10:30
parent 1f54d33e71
commit a58b813a93

View File

@@ -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