2020-01-06 06:36:33 +00:00
error: strict comparison of `f32` or `f64`
2021-03-12 14:30:50 +00:00
--> $DIR/float_cmp.rs:58:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | ONE as f64 != 2.0;
2020-09-24 12:49:22 +00:00
| ^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(ONE as f64 - 2.0).abs() > error_margin`
2017-02-07 20:05:30 +00:00
|
2018-08-01 14:30:44 +00:00
= note: `-D clippy::float-cmp` implied by `-D warnings`
2020-09-24 12:49:22 +00:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2017-02-07 20:05:30 +00:00
2020-01-06 06:36:33 +00:00
error: strict comparison of `f32` or `f64`
2021-03-12 14:30:50 +00:00
--> $DIR/float_cmp.rs:63:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x == 1.0;
2020-09-24 12:49:22 +00:00
| ^^^^^^^^ help: consider comparing them within some margin of error: `(x - 1.0).abs() < error_margin`
2017-02-07 20:05:30 +00:00
|
2020-09-24 12:49:22 +00:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2017-02-07 20:05:30 +00:00
2020-01-06 06:36:33 +00:00
error: strict comparison of `f32` or `f64`
2021-03-12 14:30:50 +00:00
--> $DIR/float_cmp.rs:66:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | twice(x) != twice(ONE as f64);
2020-09-24 12:49:22 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(twice(x) - twice(ONE as f64)).abs() > error_margin`
2017-02-07 20:05:30 +00:00
|
2020-09-24 12:49:22 +00:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2017-02-07 20:05:30 +00:00
2020-03-17 09:32:20 +00:00
error: strict comparison of `f32` or `f64`
2021-03-12 14:30:50 +00:00
--> $DIR/float_cmp.rs:86:5
2019-09-19 12:57:43 +00:00
|
2020-03-20 10:42:39 +00:00
LL | NON_ZERO_ARRAY[i] == NON_ZERO_ARRAY[j];
2020-09-24 12:49:22 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(NON_ZERO_ARRAY[i] - NON_ZERO_ARRAY[j]).abs() < error_margin`
2019-09-19 12:57:43 +00:00
|
2020-09-24 12:49:22 +00:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2020-03-20 10:42:39 +00:00
2020-04-06 07:06:50 +00:00
error: strict comparison of `f32` or `f64` arrays
2021-03-12 14:30:50 +00:00
--> $DIR/float_cmp.rs:91:5
2020-03-20 10:42:39 +00:00
|
LL | a1 == a2;
| ^^^^^^^^
|
2020-09-24 12:49:22 +00:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2019-09-19 12:57:43 +00:00
2020-03-17 09:32:20 +00:00
error: strict comparison of `f32` or `f64`
2021-03-12 14:30:50 +00:00
--> $DIR/float_cmp.rs:92:5
2019-09-19 12:57:43 +00:00
|
2020-03-20 10:42:39 +00:00
LL | a1[0] == a2[0];
2020-09-24 12:49:22 +00:00
| ^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(a1[0] - a2[0]).abs() < error_margin`
2019-09-19 12:57:43 +00:00
|
2020-09-24 12:49:22 +00:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2019-09-19 12:57:43 +00:00
2020-03-20 10:42:39 +00:00
error: aborting due to 6 previous errors
2018-01-16 16:06:27 +00:00