Skip to content

Commit

Permalink
Update inprod(a,b)
Browse files Browse the repository at this point in the history
  • Loading branch information
serenlee authored Dec 11, 2024
1 parent 5e5ac1d commit d795d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BUGSPrimitives/functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end
Inner product of ``a`` and ``b``.
"""
function inprod(a, b)
return a * b
return LinearAlgebra.dot(a,b)

Check warning on line 34 in src/BUGSPrimitives/functions.jl

View check run for this annotation

Codecov / codecov/patch

src/BUGSPrimitives/functions.jl#L34

Added line #L34 was not covered by tests
end

"""
Expand Down

0 comments on commit d795d24

Please sign in to comment.