Skip to content

Commit

Permalink
BEM: fix ambiguity for matrix multiplication w/ interaction matrices
Browse files Browse the repository at this point in the history
Ambiguities identified by Aqua.jl:
- `*(A::AbstractMatrix, B::LinearAlgebra.AbstractTriangular)`
- `*(A::AbstractMatrix, D::LinearAlgebra.Diagonal)`
  • Loading branch information
tkemmer committed Jul 22, 2024
1 parent 777003f commit dc8f811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bem/implicit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ end

function Base.:*(
A ::InteractionMatrix{T},
B ::AbstractMatrix{T}
B ::SubArray{T, 2}
) where T
m, n, p = (size(A)..., size(B, 2))
dst = zeros(T, m, p)
Expand Down

0 comments on commit dc8f811

Please sign in to comment.