mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 05:54:41 +08:00

Responded to PR comments modified travis file Changed input and output types added back needed types by cgo Fixed perl script so it compiles Changes to genLapack to allow compilation Reinstate test-coverage.sh
18 lines
240 B
Go
18 lines
240 B
Go
package native
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gonum/lapack/testlapack"
|
|
)
|
|
|
|
var impl = Implementation{}
|
|
|
|
func TestDpotf2(t *testing.T) {
|
|
testlapack.Dpotf2Test(t, impl)
|
|
}
|
|
|
|
func TestDpotrf(t *testing.T) {
|
|
testlapack.DpotrfTest(t, impl)
|
|
}
|