Skip to content

Commit d9ca214

Browse files
committed
minor edits
1 parent 4942105 commit d9ca214

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
77
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
88

99
[compat]
10-
julia = "≥ 1.0.0"
10+
julia = "1"
1111

1212
[extras]
1313
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"

src/linearcombination.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ for Atype in (AbstractVector, AbstractMatrix)
7676
return y
7777
else
7878
mul!(y, first(A.maps), x, α, β)
79-
return _mul!(MulStyle(A), y, A, x, α, β)
79+
return _mul!(MulStyle(A), y, A, x, α)
8080
end
8181
end
8282
end
8383

84-
@inline _mul!(::FiveArg, y, A::LinearCombination, x, α::Number, β::Number) =
84+
@inline _mul!(::FiveArg, y, A::LinearCombination, x, α::Number) =
8585
__mul!(y, Base.tail(A.maps), x, α, nothing)
86-
@inline function _mul!(::ThreeArg, y, A::LinearCombination, x, α::Number, β::Number)
86+
@inline function _mul!(::ThreeArg, y, A::LinearCombination, x, α::Number)
8787
z = similar(y)
8888
__mul!(y, Base.tail(A.maps), x, α, z)
8989
end

0 commit comments

Comments
 (0)