2017-02-07 14:05:30 -06:00
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:43:5
|
|
|
|
|
|
|
|
|
43 | ONE == 1f32;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^ help: consider comparing them within some error `(ONE - 1f32).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/float_cmp.rs:4:9
|
|
|
|
|
|
|
|
|
4 | #![deny(float_cmp)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:43:5
|
|
|
|
|
|
|
|
|
43 | ONE == 1f32;
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:47:5
|
|
|
|
|
|
|
|
|
47 | ONE == 1.0 + 0.0;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: consider comparing them within some error `(ONE - (1.0 + 0.0)).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:47:5
|
|
|
|
|
|
|
|
|
47 | ONE == 1.0 + 0.0;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:52:5
|
|
|
|
|
|
|
|
|
52 | ONE + ONE == ZERO + ONE + ONE;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error `(ONE + ONE - (ZERO + ONE + ONE)).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:52:5
|
|
|
|
|
|
|
|
|
52 | ONE + ONE == ZERO + ONE + ONE;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:57:5
|
|
|
|
|
|
|
|
|
57 | ONE != 2.0;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^ help: consider comparing them within some error `(ONE - 2.0).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:57:5
|
|
|
|
|
|
|
|
|
57 | ONE != 2.0;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:62:5
|
|
|
|
|
|
|
|
|
62 | twice(ONE) != ONE;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error `(twice(ONE) - ONE).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:62:5
|
|
|
|
|
|
|
|
|
62 | twice(ONE) != ONE;
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:66:5
|
|
|
|
|
|
|
|
|
66 | ONE as f64 != 2.0;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error `(ONE as f64 - 2.0).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:66:5
|
|
|
|
|
|
|
|
|
66 | ONE as f64 != 2.0;
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:74:5
|
|
|
|
|
|
|
|
|
74 | x == 1.0;
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^ help: consider comparing them within some error `(x - 1.0).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:74:5
|
|
|
|
|
|
|
|
|
74 | x == 1.0;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
|
|
|
--> $DIR/float_cmp.rs:80:5
|
|
|
|
|
|
|
|
|
80 | twice(x) != twice(ONE as f64);
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error `(twice(x) - twice(ONE as f64)).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
|
|
--> $DIR/float_cmp.rs:80:5
|
|
|
|
|
|
|
|
|
80 | twice(x) != twice(ONE as f64);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|