@@ -20,8 +20,10 @@ use std::vec::Vec;
20
20
21
21
use amplify_num:: u256;
22
22
23
- use crate :: { Category , ExpInt , IEK_INF , IEK_NAN , IEK_ZERO } ;
24
- use crate :: { Float , FloatConvert , ParseError , Round , Status , StatusAnd } ;
23
+ use crate :: {
24
+ Category , ExpInt , Float , FloatConvert , ParseError , Round , Status , StatusAnd , IEK_INF , IEK_NAN ,
25
+ IEK_ZERO ,
26
+ } ;
25
27
26
28
#[ must_use]
27
29
pub struct IeeeFloat < S > {
@@ -44,9 +46,7 @@ pub struct IeeeFloat<S> {
44
46
/// large to store the largest significands by itself.
45
47
type Limb = u256 ;
46
48
const LIMB_BITS : usize = 256 ;
47
- fn limbs_for_bits ( bits : usize ) -> usize {
48
- ( bits + LIMB_BITS - 1 ) / LIMB_BITS
49
- }
49
+ fn limbs_for_bits ( bits : usize ) -> usize { ( bits + LIMB_BITS - 1 ) / LIMB_BITS }
50
50
51
51
/// Enum that represents what fraction of the LSB truncated bits of an fp number
52
52
/// represent.
@@ -163,9 +163,7 @@ pub trait Semantics: Sized {
163
163
164
164
impl < S > Copy for IeeeFloat < S > { }
165
165
impl < S > Clone for IeeeFloat < S > {
166
- fn clone ( & self ) -> Self {
167
- * self
168
- }
166
+ fn clone ( & self ) -> Self { * self }
169
167
}
170
168
171
169
macro_rules! ieee_semantics {
@@ -281,9 +279,7 @@ impl Semantics for X87DoubleExtendedS {
281
279
float_common_impls ! ( IeeeFloat <S >) ;
282
280
283
281
impl < S : Semantics > PartialEq for IeeeFloat < S > {
284
- fn eq ( & self , rhs : & Self ) -> bool {
285
- self . partial_cmp ( rhs) == Some ( Ordering :: Equal )
286
- }
282
+ fn eq ( & self , rhs : & Self ) -> bool { self . partial_cmp ( rhs) == Some ( Ordering :: Equal ) }
287
283
}
288
284
289
285
impl < S : Semantics > PartialOrd for IeeeFloat < S > {
@@ -309,11 +305,7 @@ impl<S: Semantics> PartialOrd for IeeeFloat<S> {
309
305
// Compare absolute values; invert result if negative.
310
306
let result = self . cmp_abs_normal ( * rhs) ;
311
307
312
- if self . sign {
313
- result. reverse ( )
314
- } else {
315
- result
316
- }
308
+ if self . sign { result. reverse ( ) } else { result }
317
309
} ) )
318
310
}
319
311
}
@@ -695,8 +687,8 @@ impl<S: Semantics> Float for IeeeFloat<S> {
695
687
696
688
fn qnan ( payload : Option < u256 > ) -> Self {
697
689
IeeeFloat {
698
- sig : [ S :: QNAN_SIGNIFICAND
699
- | payload. map_or ( u256:: ZERO , |payload| {
690
+ sig : [ S :: QNAN_SIGNIFICAND |
691
+ payload. map_or ( u256:: ZERO , |payload| {
700
692
// Zero out the excess bits of the significand.
701
693
payload & ( ( u256:: ONE << S :: QNAN_BIT ) - u256:: ONE )
702
694
} ) ] ,
@@ -806,8 +798,8 @@ impl<S: Semantics> Float for IeeeFloat<S> {
806
798
// If two numbers add (exactly) to zero, IEEE 754 decrees it is a
807
799
// positive zero unless rounding to minus infinity, except that
808
800
// adding two like-signed zeroes gives that zero.
809
- if self . category == Category :: Zero
810
- && ( rhs. category != Category :: Zero || self . sign != rhs. sign )
801
+ if self . category == Category :: Zero &&
802
+ ( rhs. category != Category :: Zero || self . sign != rhs. sign )
811
803
{
812
804
self . sign = round == Round :: TowardNegative ;
813
805
}
@@ -958,9 +950,9 @@ impl<S: Semantics> Float for IeeeFloat<S> {
958
950
// If two numbers add (exactly) to zero, IEEE 754 decrees it is a
959
951
// positive zero unless rounding to minus infinity, except that
960
952
// adding two like-signed zeroes gives that zero.
961
- if self . category == Category :: Zero
962
- && !status. intersects ( Status :: UNDERFLOW )
963
- && self . sign != addend. sign
953
+ if self . category == Category :: Zero &&
954
+ !status. intersects ( Status :: UNDERFLOW ) &&
955
+ self . sign != addend. sign
964
956
{
965
957
self . sign = round == Round :: TowardNegative ;
966
958
}
@@ -1022,10 +1014,10 @@ impl<S: Semantics> Float for IeeeFloat<S> {
1022
1014
1023
1015
fn c_fmod ( mut self , rhs : Self ) -> StatusAnd < Self > {
1024
1016
match ( self . category , rhs. category ) {
1025
- ( Category :: NaN , _)
1026
- | ( Category :: Zero , Category :: Infinity )
1027
- | ( Category :: Zero , Category :: Normal )
1028
- | ( Category :: Normal , Category :: Infinity ) => Status :: OK . and ( self ) ,
1017
+ ( Category :: NaN , _) |
1018
+ ( Category :: Zero , Category :: Infinity ) |
1019
+ ( Category :: Zero , Category :: Normal ) |
1020
+ ( Category :: Normal , Category :: Infinity ) => Status :: OK . and ( self ) ,
1029
1021
1030
1022
( _, Category :: NaN ) => {
1031
1023
self . sign = false ;
@@ -1037,9 +1029,9 @@ impl<S: Semantics> Float for IeeeFloat<S> {
1037
1029
( Category :: Infinity , _) | ( _, Category :: Zero ) => Status :: INVALID_OP . and ( Self :: NAN ) ,
1038
1030
1039
1031
( Category :: Normal , Category :: Normal ) => {
1040
- while self . is_finite_non_zero ( )
1041
- && rhs. is_finite_non_zero ( )
1042
- && self . cmp_abs_normal ( rhs) != Ordering :: Less
1032
+ while self . is_finite_non_zero ( ) &&
1033
+ rhs. is_finite_non_zero ( ) &&
1034
+ self . cmp_abs_normal ( rhs) != Ordering :: Less
1043
1035
{
1044
1036
let mut v = rhs. scalbn ( self . ilogb ( ) - rhs. ilogb ( ) ) ;
1045
1037
if self . cmp_abs_normal ( v) == Ordering :: Less {
@@ -1182,8 +1174,8 @@ impl<S: Semantics> Float for IeeeFloat<S> {
1182
1174
assert_ne ! (
1183
1175
self . exp,
1184
1176
S :: MAX_EXP ,
1185
- "We can not increment an exponent beyond the MAX_EXP \
1186
- allowed by the given floating point semantics."
1177
+ "We can not increment an exponent beyond the MAX_EXP allowed by the \
1178
+ given floating point semantics."
1187
1179
) ;
1188
1180
self . exp += 1 ;
1189
1181
} else {
@@ -1317,8 +1309,8 @@ impl<S: Semantics> Float for IeeeFloat<S> {
1317
1309
let mut loss = Loss :: ExactlyZero ;
1318
1310
if truncated_bits > 0 {
1319
1311
loss = Loss :: through_truncation ( & self . sig , truncated_bits) ;
1320
- if loss != Loss :: ExactlyZero
1321
- && self . round_away_from_zero ( round, loss, truncated_bits)
1312
+ if loss != Loss :: ExactlyZero &&
1313
+ self . round_away_from_zero ( round, loss, truncated_bits)
1322
1314
{
1323
1315
r = r. wrapping_add ( Limb :: ONE ) ;
1324
1316
if r. is_zero ( ) {
@@ -1368,14 +1360,12 @@ impl<S: Semantics> Float for IeeeFloat<S> {
1368
1360
self . sig == rhs. sig
1369
1361
}
1370
1362
1371
- fn is_negative ( self ) -> bool {
1372
- self . sign
1373
- }
1363
+ fn is_negative ( self ) -> bool { self . sign }
1374
1364
1375
1365
fn is_denormal ( self ) -> bool {
1376
- self . is_finite_non_zero ( )
1377
- && self . exp == S :: MIN_EXP
1378
- && !sig:: get_bit ( & self . sig , S :: PRECISION - 1 )
1366
+ self . is_finite_non_zero ( ) &&
1367
+ self . exp == S :: MIN_EXP &&
1368
+ !sig:: get_bit ( & self . sig , S :: PRECISION - 1 )
1379
1369
}
1380
1370
1381
1371
fn is_signaling ( self ) -> bool {
@@ -1384,9 +1374,7 @@ impl<S: Semantics> Float for IeeeFloat<S> {
1384
1374
self . is_nan ( ) && !sig:: get_bit ( & self . sig , S :: QNAN_BIT )
1385
1375
}
1386
1376
1387
- fn category ( self ) -> Category {
1388
- self . category
1389
- }
1377
+ fn category ( self ) -> Category { self . category }
1390
1378
1391
1379
fn get_exact_inverse ( self ) -> Option < Self > {
1392
1380
// Special floats and denormals have no exact inverse.
@@ -1501,10 +1489,10 @@ impl<S: Semantics, T: Semantics> FloatConvert<IeeeFloat<T>> for IeeeFloat<S> {
1501
1489
fn is_x87_double_extended < S : Semantics > ( ) -> bool {
1502
1490
S :: QNAN_SIGNIFICAND == X87DoubleExtendedS :: QNAN_SIGNIFICAND
1503
1491
}
1504
- let x87_special_nan = is_x87_double_extended :: < S > ( )
1505
- && !is_x87_double_extended :: < T > ( )
1506
- && r. category == Category :: NaN
1507
- && ( r. sig [ 0 ] & S :: QNAN_SIGNIFICAND ) != S :: QNAN_SIGNIFICAND ;
1492
+ let x87_special_nan = is_x87_double_extended :: < S > ( ) &&
1493
+ !is_x87_double_extended :: < T > ( ) &&
1494
+ r. category == Category :: NaN &&
1495
+ ( r. sig [ 0 ] & S :: QNAN_SIGNIFICAND ) != S :: QNAN_SIGNIFICAND ;
1508
1496
1509
1497
// If this is a truncation of a denormal number, and the target semantics
1510
1498
// has larger exponent range than the source semantics (this can happen
@@ -1948,8 +1936,8 @@ impl<S: Semantics> IeeeFloat<S> {
1948
1936
} else {
1949
1937
dec_exp = dec_exp. saturating_sub ( ( last_sig_digit - dot) as i32 ) ;
1950
1938
}
1951
- let significand_digits = last_sig_digit - first_sig_digit + 1
1952
- - ( dot > first_sig_digit && dot < last_sig_digit) as usize ;
1939
+ let significand_digits = last_sig_digit - first_sig_digit + 1 -
1940
+ ( dot > first_sig_digit && dot < last_sig_digit) as usize ;
1953
1941
let normalized_exp = dec_exp. saturating_add ( significand_digits as i32 - 1 ) ;
1954
1942
1955
1943
// Handle the cases where exponents are obviously too large or too
@@ -1968,16 +1956,16 @@ impl<S: Semantics> IeeeFloat<S> {
1968
1956
// 42039/12655 < L < 28738/8651 [ numerator <= 65536 ]
1969
1957
1970
1958
// Check for MAX_EXP.
1971
- if normalized_exp. saturating_sub ( 1 ) . saturating_mul ( 42039 ) as i64
1972
- >= 12655 * S :: MAX_EXP as i64
1959
+ if normalized_exp. saturating_sub ( 1 ) . saturating_mul ( 42039 ) as i64 >=
1960
+ 12655 * S :: MAX_EXP as i64
1973
1961
{
1974
1962
// Overflow and round.
1975
1963
return Ok ( Self :: overflow_result ( round) ) ;
1976
1964
}
1977
1965
1978
1966
// Check for MIN_EXP.
1979
- if normalized_exp. saturating_add ( 1 ) . saturating_mul ( 28738 ) as i64
1980
- <= 8651 * ( S :: MIN_EXP as i64 - S :: PRECISION as i64 )
1967
+ if normalized_exp. saturating_add ( 1 ) . saturating_mul ( 28738 ) as i64 <=
1968
+ 8651 * ( S :: MIN_EXP as i64 - S :: PRECISION as i64 )
1981
1969
{
1982
1970
// Underflow to zero and round.
1983
1971
let r = if round == Round :: TowardPositive {
@@ -2227,9 +2215,9 @@ impl<S: Semantics> IeeeFloat<S> {
2227
2215
//
2228
2216
// See "How to Read Floating Point Numbers Accurately" by William D Clinger.
2229
2217
assert ! (
2230
- half_ulp_err1 < 2u8 . into( )
2231
- || half_ulp_err2 < 2u8 . into( )
2232
- || ( half_ulp_err1 + half_ulp_err2 < 8u8 . into( ) )
2218
+ half_ulp_err1 < 2u8 . into( ) ||
2219
+ half_ulp_err2 < 2u8 . into( ) ||
2220
+ ( half_ulp_err1 + half_ulp_err2 < 8u8 . into( ) )
2233
2221
) ;
2234
2222
2235
2223
let inexact = Limb :: from ( calc_loss != Loss :: ExactlyZero ) ;
@@ -2341,9 +2329,7 @@ mod sig {
2341
2329
2342
2330
use super :: { limbs_for_bits, ExpInt , Limb , Loss , LIMB_BITS } ;
2343
2331
2344
- pub ( super ) fn is_all_zeros ( limbs : & [ Limb ] ) -> bool {
2345
- limbs. iter ( ) . all ( |& l| l. is_zero ( ) )
2346
- }
2332
+ pub ( super ) fn is_all_zeros ( limbs : & [ Limb ] ) -> bool { limbs. iter ( ) . all ( |& l| l. is_zero ( ) ) }
2347
2333
2348
2334
/// One, not zero, based LSB. That is, returns 0 for a zeroed significand.
2349
2335
pub ( super ) fn olsb ( limbs : & [ Limb ] ) -> usize {
0 commit comments