mirror of
https://github.com/gonum/gonum.git
synced 2025-11-01 11:02:45 +08:00
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:
12
testlapack/general.go
Normal file
12
testlapack/general.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user