mat: add overlap detection for SymBandDense

This commit is contained in:
Vladimir Chalupecky
2019-09-26 11:52:49 +02:00
committed by Vladimír Chalupecký
parent bd50f5876c
commit 94b2bbd8ac
2 changed files with 45 additions and 0 deletions

View File

@@ -597,6 +597,7 @@ func (v *VecDense) MulVec(a Matrix, b Vector) {
return
case *SymBandDense:
if fast {
aU.checkOverlap(v.asGeneral())
blas64.Sbmv(1, aU.mat, bmat, 0, v.mat)
return
}