Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
Signed-off-by: Tom <[email protected]>
  • Loading branch information
tdelmas committed Nov 5, 2023
1 parent 2b8008a commit 10b978d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,13 @@ Methods that takes another float as parameter will also return the most strict t

## Main limitations

- Doesn't work with `no_std` (for now)
- Doesn't fix the floating point quirks such as `0.0 == -0.0` (because that would introduce a runtime overhead)
- Doesn't fix the floating point quirks such as `0.0 == -0.0`
- Doesn't fix the odd methods such as:
- `sqrt(-0.0)` returning `-0.0` instead of `NaN`
- `min(-0.0, 0.0)` returning `-0.0` instead of `0.0` (same for `max`)
- `frac(-0.0)` returning `0.0` instead of `-0.0`

Because that would introduce a runtime overhead and may introduce some incompatibilities with existing code.

## Testing

Expand Down

0 comments on commit 10b978d

Please sign in to comment.