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]
|
p := d[l]
|
||||||
if m == l {
|
if m == l {
|
||||||
// Eigenvalue found.
|
// Eigenvalue found.
|
||||||
d[l] = p
|
|
||||||
l++
|
l++
|
||||||
if l > lend {
|
if l > lend {
|
||||||
break
|
break
|
||||||
@@ -196,7 +195,6 @@ func (impl Implementation) Dsterf(n int, d, e []float64) (ok bool) {
|
|||||||
p := d[l]
|
p := d[l]
|
||||||
if m == l {
|
if m == l {
|
||||||
// Eigenvalue found.
|
// Eigenvalue found.
|
||||||
d[l] = p
|
|
||||||
l--
|
l--
|
||||||
if l < lend {
|
if l < lend {
|
||||||
break
|
break
|
||||||
|
|||||||
Reference in New Issue
Block a user