You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When BigFloat::log should give 0.5 or 2.0, it infinite loops (or at least seems to). Precision and rounding mode seem unimportant, but I have been testing with precisions of 64,2048,4096 and RoundingModes of ToZero/ToEven.
Here's some code that does not seem to terminate.
let a = BigFloat::from_str("9.0").unwrap();let b = BigFloat::from_str("3.0").unwrap();
a.log(&b,64,RoundingMode::ToEven,&mutConsts::new().unwrap());
The text was updated successfully, but these errors were encountered:
When
BigFloat::log
should give0.5
or2.0
, it infinite loops (or at least seems to). Precision and rounding mode seem unimportant, but I have been testing with precisions of 64,2048,4096 andRoundingMode
s ofToZero/ToEven
.Here's some code that does not seem to terminate.
The text was updated successfully, but these errors were encountered: