File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ def bits(self) -> int:
146
146
@property
147
147
def eps (self ) -> float :
148
148
"""
149
- The difference between 1.0 and the next smallest representable float
149
+ The difference between 1.0 and the smallest representable float
150
150
larger than 1.0. For example, for 64-bit binary floats in the IEEE-754
151
151
standard, ``eps = 2**-52``, approximately 2.22e-16.
152
152
"""
@@ -156,7 +156,7 @@ def eps(self) -> float:
156
156
@property
157
157
def epsneg (self ) -> float :
158
158
"""
159
- The difference between 1.0 and the next smallest representable float
159
+ The difference between 1.0 and the largest representable float
160
160
less than 1.0. For example, for 64-bit binary floats in the IEEE-754
161
161
standard, ``epsneg = 2**-53``, approximately 1.11e-16.
162
162
"""
You can’t perform that action at this time.
0 commit comments