mirror of
https://github.com/gonum/gonum.git
synced 2025-10-31 02:26:59 +08:00
native: restructure dsterf.go part 3
Remove obviously redundant assignment.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user