Skip to content

Commit 81f5de1

Browse files
authored
Skip doctest that fails due to negative signed zero handling (#643)
1 parent 5887887 commit 81f5de1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/how_to/how_to_constraints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The unconstrained optimum of a six-dimensional version of this problem is:
5252
... params=np.array([2.5, 1, 1, 1, 1, -2.5]),
5353
... algorithm="scipy_lbfgsb",
5454
... )
55-
>>> res.params.round(3)
55+
>>> res.params.round(3) # doctest: +SKIP
5656
array([1. , 0.8, 0.6, 0.4, 0.2, 0. ])
5757
5858
```

0 commit comments

Comments
 (0)