lapack/testlapack: remove some lint found by megacheck

This commit is contained in:
Vladimir Chalupecky
2017-06-02 19:20:06 +02:00
parent d399fd561a
commit 77c160c8f0
6 changed files with 0 additions and 82 deletions

View File

@@ -5,7 +5,6 @@
package testlapack
import (
"fmt"
"math"
"math/rand"
"testing"
@@ -13,12 +12,6 @@ import (
"gonum.org/v1/gonum/floats"
)
func printDlasq2FortranInput(z []float64, n int) {
printFortranArray(z, "z")
fmt.Println("n = ", n)
fmt.Println("info = 0")
}
type Dlasq2er interface {
Dgetrfer
Dlasq2(n int, z []float64) (info int)