Skip to content

Commit 216fa86

Browse files
committed
Fix typo...
1 parent 2706339 commit 216fa86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qpmodel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mutable struct QPData{
1313
A::M2
1414
end
1515

16-
QPData(c0, c, H, A; lp::Bool=false) = QPData(c0, c, lp ? similar(c): similar(c, 0), H, A)
16+
QPData(c0, c, H, A; lp::Bool=false) = QPData(c0, c, lp ? similar(c, 0) : similar(c), H, A)
1717
isdense(data::QPData{T, S, M1, M2}) where {T, S, M1, M2} = M1 <: DenseMatrix || M2 <: DenseMatrix
1818

1919
function Base.convert(

0 commit comments

Comments
 (0)