pub(crate) static Y0_ZEROS_VALUES: [u64; 48]Expand description
Zeros and extremums solved values for Y0
Generated by MPFR:
let mut arr = vec![];
for zeros in Y0_ZEROS.iter() {
if zeros.1 == 0 {
arr.push(0);
} else {
let mpfr = Float::with_val(107, f64::from_bits(zeros.1)).y0();
arr.push(mpfr.to_f64().to_bits());
}
}
println!(
"arr: [{}]",
arr.iter()
.map(|x| format!("0x{:016x}", x))
.collect::<Vec<_>>()
.join(", ")
);