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"
@@ -14,14 +13,6 @@ import (
"gonum.org/v1/gonum/blas/blas64"
)
func printDlasq1FortranInput(d, e, work []float64, n int) {
printFortranArray(d, "d")
printFortranArray(e, "e")
printFortranArray(work, "work")
fmt.Println("n = ", n)
fmt.Println("info = 0")
}
type Dlasq1er interface {
Dlasq1(n int, d, e, work []float64) int
Dgetrfer