We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4942105 commit d9ca214Copy full SHA for d9ca214
Project.toml
@@ -7,7 +7,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
7
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
8
9
[compat]
10
-julia = "≥ 1.0.0"
+julia = "1"
11
12
[extras]
13
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
src/linearcombination.jl
@@ -76,14 +76,14 @@ for Atype in (AbstractVector, AbstractMatrix)
76
return y
77
else
78
mul!(y, first(A.maps), x, α, β)
79
- return _mul!(MulStyle(A), y, A, x, α, β)
+ return _mul!(MulStyle(A), y, A, x, α)
80
end
81
82
83
84
-@inline _mul!(::FiveArg, y, A::LinearCombination, x, α::Number, β::Number) =
+@inline _mul!(::FiveArg, y, A::LinearCombination, x, α::Number) =
85
__mul!(y, Base.tail(A.maps), x, α, nothing)
86
-@inline function _mul!(::ThreeArg, y, A::LinearCombination, x, α::Number, β::Number)
+@inline function _mul!(::ThreeArg, y, A::LinearCombination, x, α::Number)
87
z = similar(y)
88
__mul!(y, Base.tail(A.maps), x, α, z)
89
0 commit comments