Skip to content

Commit 75e0122

Browse files
committed
fix sign
1 parent c4bb463 commit 75e0122

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cvxpy/atoms/elementwise/normal_cdf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def numeric(self, values):
3838
def sign_from_args(self) -> Tuple[bool, bool]:
3939
"""Returns sign (is positive, is negative) of the expression.
4040
"""
41-
# Always unknown.
42-
return (False, False)
41+
# Always positive.
42+
return (True, False)
4343

4444
def is_atom_convex(self) -> bool:
4545
"""Is the atom convex?

0 commit comments

Comments
 (0)