mat: move SolveLQ* onto LQ

This commit is contained in:
kortschak
2017-06-30 14:36:12 +09:30
committed by Dan Kortschak
parent 8dc3a3df20
commit f9e7e06e3e
3 changed files with 12 additions and 12 deletions

View File

@@ -99,7 +99,7 @@ func (m *Dense) Solve(a, b Matrix) error {
default:
var lq LQ
lq.Factorize(a)
return m.SolveLQ(&lq, false, b)
return lq.Solve(m, false, b)
}
}