\left(x + \cos y\right) - z \cdot \sin y
\left(x + \cos y\right) - \sin y \cdot z
(FPCore (x y z) :precision binary64 (- (+ x (cos y)) (* z (sin y))))
(FPCore (x y z) :precision binary64 (- (+ x (cos y)) (* (sin y) z)))
double code(double x, double y, double z) {
return (x + cos(y)) - (z * sin(y));
}
double code(double x, double y, double z) {
return (x + cos(y)) - (sin(y) * z);
}



Bits error versus x



Bits error versus y



Bits error versus z
Results
Initial program 0.1
Applied add-sqr-sqrt_binary6428.4
Applied *-un-lft-identity_binary6428.4
Applied *-un-lft-identity_binary6428.4
Applied swap-sqr_binary6428.4
Simplified28.4
Simplified0.1
Final simplification0.1
herbie shell --seed 2021313
(FPCore (x y z)
:name "Graphics.Rasterific.Svg.PathConverter:segmentToBezier from rasterific-svg-0.2.3.1, B"
:precision binary64
(- (+ x (cos y)) (* z (sin y))))