Skip to content

Commit

Permalink
fix monotonicity bug in lambda_min_max
Browse files Browse the repository at this point in the history
  • Loading branch information
karanveerm committed Jan 5, 2015
1 parent cc01184 commit fbc2e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/atoms/sdp_cone/lambda_min_max.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function sign(x::LambdaMaxAtom)
end

function monotonicity(x::LambdaMaxAtom)
return (Increasing(),)
return (Nondecreasing(),)
end

function curvature(x::LambdaMaxAtom)
Expand Down Expand Up @@ -84,7 +84,7 @@ function sign(x::LambdaMinAtom)
end

function monotonicity(x::LambdaMinAtom)
return (Increasing(),)
return (Nondecreasing(),)
end

function curvature(x::LambdaMinAtom)
Expand Down

0 comments on commit fbc2e04

Please sign in to comment.