Files
gonum/native/lapack_test.go
btracey 9351b1852e Added dlarf, tests, some auxiliary routines, and missing license headers
Added dlarf, tests, some auxiliary routines, and missing license headers

PR comments
2015-06-28 21:11:27 -07:00

34 lines
604 B
Go

// Copyright ©2015 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package native
import (
"testing"
"github.com/gonum/lapack/testlapack"
)
var impl = Implementation{}
func TestDlarf(t *testing.T) {
testlapack.DlarfTest(t, impl)
}
func TestDpotf2(t *testing.T) {
testlapack.Dpotf2Test(t, impl)
}
func TestDpotrf(t *testing.T) {
testlapack.DpotrfTest(t, impl)
}
func TestIladlc(t *testing.T) {
testlapack.IladlcTest(t, impl)
}
func TestIladlr(t *testing.T) {
testlapack.IladlrTest(t, impl)
}