mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
ff0d44e45a
Add lint to detect floating point operations that can be computed more accurately at the cost of performance. `cbrt`, `ln_1p` and `exp_m1` library functions call their equivalent cmath implementations which is slower but more accurate so moving checks for these under this new lint.
28 lines
910 B
Text
28 lines
910 B
Text
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:6:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
= note: `-D clippy::imprecise-flops` implied by `-D warnings`
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:7:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0 + 2.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:13:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:14:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0 + 2.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|