We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa437a commit 5287377Copy full SHA for 5287377
1 file changed
src/JuMP/operators.jl
@@ -2,9 +2,6 @@ function _matmul(::Type{V}, A, B) where {V}
2
return GenericMatrixExpr{V}(:*, Any[A, B], (size(A, 1), size(B, 2)), false)
3
end
4
5
-#function Base.:(*)(A::AbstractJuMPVector, B::)
6
-# return _matmul(JuMP.variable_ref_type(A), A, B)
7
-#end
8
function Base.:(*)(A::AbstractJuMPMatrix, B::Matrix)
9
return _matmul(JuMP.variable_ref_type(A), A, B)
10
0 commit comments