crlibm 0.2.0

Binding to CRlibm, a correctly rounded math lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crlibm::ln_rd;


fn main() {
    let mut s = 2.;
    for _ in 0 .. 30_000_000 {
        s += ln_rd(1.);
        // s += 2f64.ln();
    }
    println!("{s}");
}