mirror of
				https://github.com/gonum/gonum.git
				synced 2025-10-31 10:36:30 +08:00 
			
		
		
		
	 ec100cf00f
			
		
	
	ec100cf00f
	
	
	
		
			
			Improved function documentation Fixed dlarfb and dlarft and added full tests Added dgelq2 Working Dgels Fix many comments and tests Many PR comment responses Responded to more PR comments Many PR comments
		
			
				
	
	
		
			86 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			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 TestDgelqf(t *testing.T) {
 | |
| 	testlapack.DgelqfTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDgelq2(t *testing.T) {
 | |
| 	testlapack.Dgelq2Test(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDgels(t *testing.T) {
 | |
| 	testlapack.DgelsTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDgeqr2(t *testing.T) {
 | |
| 	testlapack.Dgeqr2Test(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDgeqrf(t *testing.T) {
 | |
| 	testlapack.DgeqrfTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDlange(t *testing.T) {
 | |
| 	testlapack.DlangeTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDlarfb(t *testing.T) {
 | |
| 	testlapack.DlarfbTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDlarf(t *testing.T) {
 | |
| 	testlapack.DlarfTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDlarfg(t *testing.T) {
 | |
| 	testlapack.DlarfgTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDlarft(t *testing.T) {
 | |
| 	testlapack.DlarftTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDorml2(t *testing.T) {
 | |
| 	testlapack.Dorml2Test(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDormlq(t *testing.T) {
 | |
| 	testlapack.DormlqTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDormqr(t *testing.T) {
 | |
| 	testlapack.DormqrTest(t, impl)
 | |
| }
 | |
| 
 | |
| func TestDorm2r(t *testing.T) {
 | |
| 	testlapack.Dorm2rTest(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)
 | |
| }
 |