@@ -829,6 +829,13 @@ impl f32 {
829
829
/// ```
830
830
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
831
831
#[ inline]
832
+ #[ rustc_deprecated( since = "1.10.0" ,
833
+ reason = "you probably meant `(self - other).abs()`: \
834
+ this operation is `(self - other).max(0.0)` (also \
835
+ known as `fdimf` in C). If you truly need the positive \
836
+ difference, consider using that expression or the C function \
837
+ `fdimf`, depending on how you wish to handle NaN (please consider \
838
+ filing an issue describing your use-case too).") ]
832
839
pub fn abs_sub ( self , other : f32 ) -> f32 {
833
840
unsafe { cmath:: fdimf ( self , other) }
834
841
}
@@ -939,7 +946,7 @@ impl f32 {
939
946
/// let f = f32::consts::PI / 2.0;
940
947
///
941
948
/// // asin(sin(pi/2))
942
- /// let abs_difference = f.sin().asin().abs_sub( f32::consts::PI / 2.0);
949
+ /// let abs_difference = ( f.sin().asin() - f32::consts::PI / 2.0).abs( );
943
950
///
944
951
/// assert!(abs_difference <= f32::EPSILON);
945
952
/// ```
@@ -959,7 +966,7 @@ impl f32 {
959
966
/// let f = f32::consts::PI / 4.0;
960
967
///
961
968
/// // acos(cos(pi/4))
962
- /// let abs_difference = f.cos().acos().abs_sub( f32::consts::PI / 4.0);
969
+ /// let abs_difference = ( f.cos().acos() - f32::consts::PI / 4.0).abs( );
963
970
///
964
971
/// assert!(abs_difference <= f32::EPSILON);
965
972
/// ```
@@ -978,7 +985,7 @@ impl f32 {
978
985
/// let f = 1.0f32;
979
986
///
980
987
/// // atan(tan(1))
981
- /// let abs_difference = f.tan().atan().abs_sub( 1.0);
988
+ /// let abs_difference = ( f.tan().atan() - 1.0).abs( );
982
989
///
983
990
/// assert!(abs_difference <= f32::EPSILON);
984
991
/// ```
@@ -1048,7 +1055,7 @@ impl f32 {
1048
1055
/// let x = 7.0f64;
1049
1056
///
1050
1057
/// // e^(ln(7)) - 1
1051
- /// let abs_difference = x.ln().exp_m1().abs_sub( 6.0);
1058
+ /// let abs_difference = ( x.ln().exp_m1() - 6.0).abs( );
1052
1059
///
1053
1060
/// assert!(abs_difference < 1e-10);
1054
1061
/// ```
@@ -1108,7 +1115,7 @@ impl f32 {
1108
1115
/// let f = x.cosh();
1109
1116
/// // Solving cosh() at 1 gives this result
1110
1117
/// let g = (e*e + 1.0)/(2.0*e);
1111
- /// let abs_difference = f.abs_sub(g );
1118
+ /// let abs_difference = (f - g).abs( );
1112
1119
///
1113
1120
/// // Same result
1114
1121
/// assert!(abs_difference <= f32::EPSILON);
@@ -1191,9 +1198,9 @@ impl f32 {
1191
1198
/// let e = f32::consts::E;
1192
1199
/// let f = e.tanh().atanh();
1193
1200
///
1194
- /// let abs_difference = f.abs_sub(e );
1201
+ /// let abs_difference = (f - e).abs( );
1195
1202
///
1196
- /// assert!(abs_difference <= f32::EPSILON );
1203
+ /// assert!(abs_difference <= 1e-5 );
1197
1204
/// ```
1198
1205
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1199
1206
#[ inline]
@@ -1747,24 +1754,6 @@ mod tests {
1747
1754
assert ! ( match nan. frexp( ) { ( x, _) => x. is_nan( ) } )
1748
1755
}
1749
1756
1750
- #[ test]
1751
- fn test_abs_sub ( ) {
1752
- assert_eq ! ( ( -1f32 ) . abs_sub( 1f32 ) , 0f32 ) ;
1753
- assert_eq ! ( 1f32 . abs_sub( 1f32 ) , 0f32 ) ;
1754
- assert_eq ! ( 1f32 . abs_sub( 0f32 ) , 1f32 ) ;
1755
- assert_eq ! ( 1f32 . abs_sub( -1f32 ) , 2f32 ) ;
1756
- assert_eq ! ( NEG_INFINITY . abs_sub( 0f32 ) , 0f32 ) ;
1757
- assert_eq ! ( INFINITY . abs_sub( 1f32 ) , INFINITY ) ;
1758
- assert_eq ! ( 0f32 . abs_sub( NEG_INFINITY ) , INFINITY ) ;
1759
- assert_eq ! ( 0f32 . abs_sub( INFINITY ) , 0f32 ) ;
1760
- }
1761
-
1762
- #[ test]
1763
- fn test_abs_sub_nowin ( ) {
1764
- assert ! ( NAN . abs_sub( -1f32 ) . is_nan( ) ) ;
1765
- assert ! ( 1f32 . abs_sub( NAN ) . is_nan( ) ) ;
1766
- }
1767
-
1768
1757
#[ test]
1769
1758
fn test_asinh ( ) {
1770
1759
assert_eq ! ( 0.0f32 . asinh( ) , 0.0f32 ) ;
0 commit comments