all: replace min/max helpers with min/max builtins

This commit is contained in:
Eng Zer Jun
2024-04-06 17:54:32 +08:00
committed by GitHub
parent 8a2036b741
commit e44948ca04
20 changed files with 5 additions and 228 deletions

View File

@@ -27,13 +27,6 @@ type Tridiagonal struct {
DU []float64
}
func max(a, b int) int {
if a > b {
return a
}
return b
}
// Potrf computes the Cholesky factorization of a.
// The factorization has the form
//