Skip to content

Commit

Permalink
Update format
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed May 13, 2024
1 parent ad0b241 commit 5e529ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/atoms/BroadcastMultiplyAtom.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ function evaluate(x::BroadcastMultiplyAtom)
return reshape(evaluate(x.children[1]) .* evaluate(x.children[2]), size(x))
end

function new_conic_form!(context::Context{T}, x::BroadcastMultiplyAtom) where {T}
function new_conic_form!(
context::Context{T},
x::BroadcastMultiplyAtom,
) where {T}
lhs, rhs = x.children
if vexity(lhs) != ConstVexity()
if vexity(rhs) != ConstVexity()
Expand Down

0 comments on commit 5e529ee

Please sign in to comment.