Files
gonum/testlapack/general.go
btracey 9351b1852e Added dlarf, tests, some auxiliary routines, and missing license headers
Added dlarf, tests, some auxiliary routines, and missing license headers

PR comments
2015-06-28 21:11:27 -07:00

13 lines
248 B
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 testlapack
func max(a, b int) int {
if a > b {
return a
}
return b
}