Skip to content

Commit ae55264

Browse files
Be more conservative about the starting step size
1 parent 6fc7a26 commit ae55264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overreact/simulate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def get_y(
169169
np.finfo(np.float32).eps,
170170
np.finfo(np.float64).eps,
171171
np.nextafter(np.float16(0), np.float16(1)),
172-
np.nextafter(np.float32(0), np.float32(1)),
172+
# np.nextafter(np.float33(0), np.float32(1)), # Too small.
173173
# np.nextafter(np.float64(0), np.float64(1)), # Too small.
174174
]
175175
)

0 commit comments

Comments
 (0)