OSDN Git Service

init delete the pow related (#55)
[bytom/vapor.git] / vendor / gonum.org / v1 / gonum / blas / gonum / level1double_test.go
diff --git a/vendor/gonum.org/v1/gonum/blas/gonum/level1double_test.go b/vendor/gonum.org/v1/gonum/blas/gonum/level1double_test.go
deleted file mode 100644 (file)
index f2f189e..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright ©2014 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 gonum
-
-import (
-       "testing"
-
-       "gonum.org/v1/gonum/blas/testblas"
-)
-
-var impl Implementation
-
-func TestDasum(t *testing.T) {
-       testblas.DasumTest(t, impl)
-}
-
-func TestDaxpy(t *testing.T) {
-       testblas.DaxpyTest(t, impl)
-}
-
-func TestDdot(t *testing.T) {
-       testblas.DdotTest(t, impl)
-}
-
-func TestDnrm2(t *testing.T) {
-       testblas.Dnrm2Test(t, impl)
-}
-
-func TestIdamax(t *testing.T) {
-       testblas.IdamaxTest(t, impl)
-}
-
-func TestDswap(t *testing.T) {
-       testblas.DswapTest(t, impl)
-}
-
-func TestDcopy(t *testing.T) {
-       testblas.DcopyTest(t, impl)
-}
-
-func TestDrotg(t *testing.T) {
-       testblas.DrotgTest(t, impl)
-}
-
-func TestDrotmg(t *testing.T) {
-       testblas.DrotmgTest(t, impl)
-}
-
-func TestDrot(t *testing.T) {
-       testblas.DrotTest(t, impl)
-}
-
-func TestDrotm(t *testing.T) {
-       testblas.DrotmTest(t, impl)
-}
-
-func TestDscal(t *testing.T) {
-       testblas.DscalTest(t, impl)
-}