You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If A and X are sparse matrices, one of them of numbers, the other one of VariableRef or AffExpr then the product A * X' should have eltype AffExpr but currently Base.A_mul_Bc converts both matrices to the AffExpr eltype and allocates a matrix of AffExpr eltype which doesn't work as the product of AffExpr is QuadExpr.
The text was updated successfully, but these errors were encountered:
If
A
andX
are sparse matrices, one of them of numbers, the other one ofVariableRef
orAffExpr
then the productA * X'
should have eltypeAffExpr
but currentlyBase.A_mul_Bc
converts both matrices to theAffExpr
eltype and allocates a matrix ofAffExpr
eltype which doesn't work as the product ofAffExpr
isQuadExpr
.The text was updated successfully, but these errors were encountered: