Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit e307755

Browse files
committed
test
1 parent 9c93e01 commit e307755

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/math/generic/scalbn.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ where
102102
n += add;
103103

104104
if n < exp_min {
105-
let add = -(n + sig_total_bits as i32).clamp(exp_min, sig_total_bits as i32);
106-
let mul = F::from_parts(false, (F::EXP_BIAS as i32 - add) as u32, zero);
105+
// let add = -(n + sig_total_bits as i32).clamp(exp_min, sig_total_bits as i32);
106+
// let mul = F::from_parts(false, (F::EXP_BIAS as i32 - add) as u32, zero);
107107

108108
x *= mul;
109109
n += add;

0 commit comments

Comments
 (0)