Added dlarf, tests, some auxiliary routines, and missing license headers

Added dlarf, tests, some auxiliary routines, and missing license headers

PR comments
This commit is contained in:
btracey
2015-06-25 16:01:47 -05:00
parent ee6c48b740
commit 9351b1852e
13 changed files with 508 additions and 0 deletions

12
testlapack/general.go Normal file
View File

@@ -0,0 +1,12 @@
// 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 testlapack
func max(a, b int) int {
if a > b {
return a
}
return b
}