\frac{4}{\left(\left(3 \cdot \pi\right) \cdot \left(1 - v \cdot v\right)\right) \cdot \sqrt{2 - 6 \cdot \left(v \cdot v\right)}}\frac{\frac{4}{\left(3 \cdot \pi\right) \cdot \left(1 - v \cdot v\right)}}{\frac{\sqrt{{2}^{3} - {\left(6 \cdot \left(v \cdot v\right)\right)}^{3}}}{\sqrt{2 \cdot 2 + \left(\left(6 \cdot \left(v \cdot v\right)\right) \cdot \left(6 \cdot \left(v \cdot v\right)\right) + 2 \cdot \left(6 \cdot \left(v \cdot v\right)\right)\right)}}}double code(double v) {
return (4.0 / (((3.0 * ((double) M_PI)) * (1.0 - (v * v))) * sqrt((2.0 - (6.0 * (v * v))))));
}
double code(double v) {
return ((4.0 / ((3.0 * ((double) M_PI)) * (1.0 - (v * v)))) / (sqrt((pow(2.0, 3.0) - pow((6.0 * (v * v)), 3.0))) / sqrt(((2.0 * 2.0) + (((6.0 * (v * v)) * (6.0 * (v * v))) + (2.0 * (6.0 * (v * v))))))));
}



Bits error versus v
Results
Initial program 1.0
rmApplied associate-/r*0.0
rmApplied flip3--0.0
Applied sqrt-div0.0
Final simplification0.0
herbie shell --seed 2020058
(FPCore (v)
:name "Falkner and Boettcher, Equation (22+)"
:precision binary64
(/ 4 (* (* (* 3 PI) (- 1 (* v v))) (sqrt (- 2 (* 6 (* v v)))))))