\pi \cdot \ell - \frac{1}{F \cdot F} \cdot \tan \left(\pi \cdot \ell\right)\pi \cdot \ell - \frac{\frac{1}{\frac{F}{\pi \cdot \ell} - \log \left({\left(\sqrt[3]{e^{\pi \cdot \ell}}\right)}^{F}\right)}}{F}(FPCore (F l) :precision binary64 (- (* PI l) (* (/ 1.0 (* F F)) (tan (* PI l)))))
(FPCore (F l) :precision binary64 (- (* PI l) (/ (/ 1.0 (- (/ F (* PI l)) (log (pow (cbrt (exp (* PI l))) F)))) F)))
double code(double F, double l) {
return (((double) M_PI) * l) - ((1.0 / (F * F)) * tan(((double) M_PI) * l));
}
double code(double F, double l) {
return (((double) M_PI) * l) - ((1.0 / ((F / (((double) M_PI) * l)) - log(pow(cbrt(exp(((double) M_PI) * l)), F)))) / F);
}



Bits error versus F



Bits error versus l
Results
Initial program 16.4
Simplified16.2
rmApplied associate-/r*_binary6412.3
rmApplied clear-num_binary6412.3
Taylor expanded around 0 8.3
Simplified8.3
rmApplied add-log-exp_binary6412.9
Simplified0.7
Final simplification0.7
herbie shell --seed 2020224
(FPCore (F l)
:name "VandenBroeck and Keller, Equation (6)"
:precision binary64
(- (* PI l) (* (/ 1.0 (* F F)) (tan (* PI l)))))