mat: s/mat64/mat/g

This commit is contained in:
kortschak
2017-06-16 15:45:47 +09:30
committed by Dan Kortschak
parent 9a50036ca1
commit 6143493e56
16 changed files with 49 additions and 49 deletions

View File

@@ -693,8 +693,8 @@ func (m *Dense) Outer(alpha float64, x, y *Vector) {
// TODO(kortschak): Factor out into reuseZeroedAs if
// we find another case that needs it.
if m.mat.Rows > m.capRows || m.mat.Cols > m.capCols {
// Panic as a string, not a mat64.Error.
panic("mat64: caps not correctly set")
// Panic as a string, not a mat.Error.
panic("mat: caps not correctly set")
}
if m.isZero() {
m.mat = blas64.General{