2019-12-20 19:57:47 -06:00
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/floating_point_exp.rs:6:13
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
|
2020-02-23 23:06:55 -06:00
|
|
|
= note: `-D clippy::imprecise-flops` implied by `-D warnings`
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/floating_point_exp.rs:7:13
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = x.exp() - 1.0 + 2.0;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/floating_point_exp.rs:8:13
|
2022-08-29 15:36:11 -05:00
|
|
|
|
|
|
|
|
LL | let _ = (x as f32).exp() - 1.0 + 2.0;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `(x as f32).exp_m1()`
|
|
|
|
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/floating_point_exp.rs:14:13
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/floating_point_exp.rs:15:13
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = x.exp() - 1.0 + 2.0;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
2022-08-29 15:36:11 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2019-12-20 19:57:47 -06:00
|
|
|
|