| Alternative 1 | |
|---|---|
| Accuracy | 99.3% |
| Cost | 73024 |
(FPCore (x y)
:precision binary64
(/
(+
2.0
(*
(*
(* (sqrt 2.0) (- (sin x) (/ (sin y) 16.0)))
(- (sin y) (/ (sin x) 16.0)))
(- (cos x) (cos y))))
(*
3.0
(+
(+ 1.0 (* (/ (- (sqrt 5.0) 1.0) 2.0) (cos x)))
(* (/ (- 3.0 (sqrt 5.0)) 2.0) (cos y))))))(FPCore (x y)
:precision binary64
(/
(*
0.3333333333333333
(fma
(* (sqrt 2.0) (+ (sin x) (* -0.0625 (sin y))))
(* (- (cos x) (cos y)) (+ (sin y) (* (sin x) -0.0625)))
2.0))
(+
1.0
(+
(* (cos y) (+ 1.5 (* -0.5 (sqrt 5.0))))
(/ (cos x) (+ 0.5 (sqrt 1.25)))))))double code(double x, double y) {
return (2.0 + (((sqrt(2.0) * (sin(x) - (sin(y) / 16.0))) * (sin(y) - (sin(x) / 16.0))) * (cos(x) - cos(y)))) / (3.0 * ((1.0 + (((sqrt(5.0) - 1.0) / 2.0) * cos(x))) + (((3.0 - sqrt(5.0)) / 2.0) * cos(y))));
}
double code(double x, double y) {
return (0.3333333333333333 * fma((sqrt(2.0) * (sin(x) + (-0.0625 * sin(y)))), ((cos(x) - cos(y)) * (sin(y) + (sin(x) * -0.0625))), 2.0)) / (1.0 + ((cos(y) * (1.5 + (-0.5 * sqrt(5.0)))) + (cos(x) / (0.5 + sqrt(1.25)))));
}
function code(x, y) return Float64(Float64(2.0 + Float64(Float64(Float64(sqrt(2.0) * Float64(sin(x) - Float64(sin(y) / 16.0))) * Float64(sin(y) - Float64(sin(x) / 16.0))) * Float64(cos(x) - cos(y)))) / Float64(3.0 * Float64(Float64(1.0 + Float64(Float64(Float64(sqrt(5.0) - 1.0) / 2.0) * cos(x))) + Float64(Float64(Float64(3.0 - sqrt(5.0)) / 2.0) * cos(y))))) end
function code(x, y) return Float64(Float64(0.3333333333333333 * fma(Float64(sqrt(2.0) * Float64(sin(x) + Float64(-0.0625 * sin(y)))), Float64(Float64(cos(x) - cos(y)) * Float64(sin(y) + Float64(sin(x) * -0.0625))), 2.0)) / Float64(1.0 + Float64(Float64(cos(y) * Float64(1.5 + Float64(-0.5 * sqrt(5.0)))) + Float64(cos(x) / Float64(0.5 + sqrt(1.25)))))) end
code[x_, y_] := N[(N[(2.0 + N[(N[(N[(N[Sqrt[2.0], $MachinePrecision] * N[(N[Sin[x], $MachinePrecision] - N[(N[Sin[y], $MachinePrecision] / 16.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[Sin[y], $MachinePrecision] - N[(N[Sin[x], $MachinePrecision] / 16.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[Cos[x], $MachinePrecision] - N[Cos[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(3.0 * N[(N[(1.0 + N[(N[(N[(N[Sqrt[5.0], $MachinePrecision] - 1.0), $MachinePrecision] / 2.0), $MachinePrecision] * N[Cos[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(N[(3.0 - N[Sqrt[5.0], $MachinePrecision]), $MachinePrecision] / 2.0), $MachinePrecision] * N[Cos[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_] := N[(N[(0.3333333333333333 * N[(N[(N[Sqrt[2.0], $MachinePrecision] * N[(N[Sin[x], $MachinePrecision] + N[(-0.0625 * N[Sin[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[(N[Cos[x], $MachinePrecision] - N[Cos[y], $MachinePrecision]), $MachinePrecision] * N[(N[Sin[y], $MachinePrecision] + N[(N[Sin[x], $MachinePrecision] * -0.0625), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(N[(N[Cos[y], $MachinePrecision] * N[(1.5 + N[(-0.5 * N[Sqrt[5.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[Cos[x], $MachinePrecision] / N[(0.5 + N[Sqrt[1.25], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\frac{2 + \left(\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right)\right) \cdot \left(\sin y - \frac{\sin x}{16}\right)\right) \cdot \left(\cos x - \cos y\right)}{3 \cdot \left(\left(1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right) + \frac{3 - \sqrt{5}}{2} \cdot \cos y\right)}
\frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + \sin x \cdot -0.0625\right), 2\right)}{1 + \left(\cos y \cdot \left(1.5 + -0.5 \cdot \sqrt{5}\right) + \frac{\cos x}{0.5 + \sqrt{1.25}}\right)}
Initial program 99.3%
Simplified99.3%
[Start]99.3 | \[ \frac{2 + \left(\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right)\right) \cdot \left(\sin y - \frac{\sin x}{16}\right)\right) \cdot \left(\cos x - \cos y\right)}{3 \cdot \left(\left(1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right) + \frac{3 - \sqrt{5}}{2} \cdot \cos y\right)}
\] |
|---|---|
+-commutative [=>]99.3 | \[ \frac{\color{blue}{\left(\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right)\right) \cdot \left(\sin y - \frac{\sin x}{16}\right)\right) \cdot \left(\cos x - \cos y\right) + 2}}{3 \cdot \left(\left(1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right) + \frac{3 - \sqrt{5}}{2} \cdot \cos y\right)}
\] |
associate-*l* [=>]99.3 | \[ \frac{\color{blue}{\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right)\right) \cdot \left(\left(\sin y - \frac{\sin x}{16}\right) \cdot \left(\cos x - \cos y\right)\right)} + 2}{3 \cdot \left(\left(1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right) + \frac{3 - \sqrt{5}}{2} \cdot \cos y\right)}
\] |
fma-def [=>]99.3 | \[ \frac{\color{blue}{\mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right), \left(\sin y - \frac{\sin x}{16}\right) \cdot \left(\cos x - \cos y\right), 2\right)}}{3 \cdot \left(\left(1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right) + \frac{3 - \sqrt{5}}{2} \cdot \cos y\right)}
\] |
+-commutative [=>]99.3 | \[ \frac{\mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right), \left(\sin y - \frac{\sin x}{16}\right) \cdot \left(\cos x - \cos y\right), 2\right)}{3 \cdot \color{blue}{\left(\frac{3 - \sqrt{5}}{2} \cdot \cos y + \left(1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right)\right)}}
\] |
*-commutative [=>]99.3 | \[ \frac{\mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right), \left(\sin y - \frac{\sin x}{16}\right) \cdot \left(\cos x - \cos y\right), 2\right)}{3 \cdot \left(\color{blue}{\cos y \cdot \frac{3 - \sqrt{5}}{2}} + \left(1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right)\right)}
\] |
fma-def [=>]99.3 | \[ \frac{\mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x - \frac{\sin y}{16}\right), \left(\sin y - \frac{\sin x}{16}\right) \cdot \left(\cos x - \cos y\right), 2\right)}{3 \cdot \color{blue}{\mathsf{fma}\left(\cos y, \frac{3 - \sqrt{5}}{2}, 1 + \frac{\sqrt{5} - 1}{2} \cdot \cos x\right)}}
\] |
Taylor expanded in x around inf 99.2%
Simplified99.2%
[Start]99.2 | \[ 0.3333333333333333 \cdot \frac{2 + \sqrt{2} \cdot \left(\left(\cos x - \cos y\right) \cdot \left(\left(\sin y - 0.0625 \cdot \sin x\right) \cdot \left(\sin x - 0.0625 \cdot \sin y\right)\right)\right)}{1 + \left(\left(1.5 - 0.5 \cdot \sqrt{5}\right) \cdot \cos y + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)}
\] |
|---|---|
associate-*r/ [=>]99.2 | \[ \color{blue}{\frac{0.3333333333333333 \cdot \left(2 + \sqrt{2} \cdot \left(\left(\cos x - \cos y\right) \cdot \left(\left(\sin y - 0.0625 \cdot \sin x\right) \cdot \left(\sin x - 0.0625 \cdot \sin y\right)\right)\right)\right)}{1 + \left(\left(1.5 - 0.5 \cdot \sqrt{5}\right) \cdot \cos y + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)}}
\] |
Taylor expanded in y around inf 99.2%
Applied egg-rr99.3%
[Start]99.2 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\cos y \cdot \left(-0.5 \cdot \sqrt{5} + 1.5\right) + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)}
\] |
|---|---|
distribute-lft-in [=>]99.2 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{\left(\cos y \cdot \left(-0.5 \cdot \sqrt{5}\right) + \cos y \cdot 1.5\right)} + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)}
\] |
associate-+l+ [=>]99.1 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \color{blue}{\left(\cos y \cdot \left(-0.5 \cdot \sqrt{5}\right) + \left(\cos y \cdot 1.5 + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)\right)}}
\] |
*-commutative [=>]99.1 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{\left(-0.5 \cdot \sqrt{5}\right) \cdot \cos y} + \left(\cos y \cdot 1.5 + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)\right)}
\] |
associate-*l* [=>]99.1 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{-0.5 \cdot \left(\sqrt{5} \cdot \cos y\right)} + \left(\cos y \cdot 1.5 + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)\right)}
\] |
fma-def [=>]99.1 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \color{blue}{\mathsf{fma}\left(-0.5, \sqrt{5} \cdot \cos y, \cos y \cdot 1.5 + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)}}
\] |
*-commutative [=>]99.1 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \mathsf{fma}\left(-0.5, \sqrt{5} \cdot \cos y, \color{blue}{1.5 \cdot \cos y} + \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)}
\] |
fma-def [=>]99.2 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \mathsf{fma}\left(-0.5, \sqrt{5} \cdot \cos y, \color{blue}{\mathsf{fma}\left(1.5, \cos y, \cos x \cdot \left(0.5 \cdot \sqrt{5} - 0.5\right)\right)}\right)}
\] |
flip-- [=>]98.9 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \mathsf{fma}\left(-0.5, \sqrt{5} \cdot \cos y, \mathsf{fma}\left(1.5, \cos y, \cos x \cdot \color{blue}{\frac{\left(0.5 \cdot \sqrt{5}\right) \cdot \left(0.5 \cdot \sqrt{5}\right) - 0.5 \cdot 0.5}{0.5 \cdot \sqrt{5} + 0.5}}\right)\right)}
\] |
associate-*r/ [=>]99.0 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \mathsf{fma}\left(-0.5, \sqrt{5} \cdot \cos y, \mathsf{fma}\left(1.5, \cos y, \color{blue}{\frac{\cos x \cdot \left(\left(0.5 \cdot \sqrt{5}\right) \cdot \left(0.5 \cdot \sqrt{5}\right) - 0.5 \cdot 0.5\right)}{0.5 \cdot \sqrt{5} + 0.5}}\right)\right)}
\] |
Simplified99.3%
[Start]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \mathsf{fma}\left(-0.5, \sqrt{5} \cdot \cos y, \mathsf{fma}\left(1.5, \cos y, \frac{\cos x}{\sqrt{1.25} + 0.5}\right)\right)}
\] |
|---|---|
fma-udef [=>]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \color{blue}{\left(-0.5 \cdot \left(\sqrt{5} \cdot \cos y\right) + \mathsf{fma}\left(1.5, \cos y, \frac{\cos x}{\sqrt{1.25} + 0.5}\right)\right)}}
\] |
fma-udef [=>]99.2 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(-0.5 \cdot \left(\sqrt{5} \cdot \cos y\right) + \color{blue}{\left(1.5 \cdot \cos y + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}\right)}
\] |
associate-+r+ [=>]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \color{blue}{\left(\left(-0.5 \cdot \left(\sqrt{5} \cdot \cos y\right) + 1.5 \cdot \cos y\right) + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}}
\] |
associate-*r* [=>]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\left(\color{blue}{\left(-0.5 \cdot \sqrt{5}\right) \cdot \cos y} + 1.5 \cdot \cos y\right) + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}
\] |
distribute-rgt-in [<=]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{\cos y \cdot \left(-0.5 \cdot \sqrt{5} + 1.5\right)} + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}
\] |
+-commutative [<=]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\cos y \cdot \color{blue}{\left(1.5 + -0.5 \cdot \sqrt{5}\right)} + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}
\] |
*-commutative [<=]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{\left(1.5 + -0.5 \cdot \sqrt{5}\right) \cdot \cos y} + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}
\] |
+-commutative [=>]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{\left(-0.5 \cdot \sqrt{5} + 1.5\right)} \cdot \cos y + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}
\] |
fma-udef [<=]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{\mathsf{fma}\left(-0.5, \sqrt{5}, 1.5\right)} \cdot \cos y + \frac{\cos x}{\sqrt{1.25} + 0.5}\right)}
\] |
+-commutative [=>]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\mathsf{fma}\left(-0.5, \sqrt{5}, 1.5\right) \cdot \cos y + \frac{\cos x}{\color{blue}{0.5 + \sqrt{1.25}}}\right)}
\] |
Applied egg-rr99.3%
[Start]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\mathsf{fma}\left(-0.5, \sqrt{5}, 1.5\right) \cdot \cos y + \frac{\cos x}{0.5 + \sqrt{1.25}}\right)}
\] |
|---|---|
fma-udef [=>]99.3 | \[ \frac{0.3333333333333333 \cdot \mathsf{fma}\left(\sqrt{2} \cdot \left(\sin x + -0.0625 \cdot \sin y\right), \left(\cos x - \cos y\right) \cdot \left(\sin y + -0.0625 \cdot \sin x\right), 2\right)}{1 + \left(\color{blue}{\left(-0.5 \cdot \sqrt{5} + 1.5\right)} \cdot \cos y + \frac{\cos x}{0.5 + \sqrt{1.25}}\right)}
\] |
Final simplification99.3%
| Alternative 1 | |
|---|---|
| Accuracy | 99.3% |
| Cost | 73024 |
| Alternative 2 | |
|---|---|
| Accuracy | 99.2% |
| Cost | 72896 |
| Alternative 3 | |
|---|---|
| Accuracy | 99.2% |
| Cost | 72896 |
| Alternative 4 | |
|---|---|
| Accuracy | 99.3% |
| Cost | 72896 |
| Alternative 5 | |
|---|---|
| Accuracy | 99.3% |
| Cost | 72896 |
| Alternative 6 | |
|---|---|
| Accuracy | 99.3% |
| Cost | 72896 |
| Alternative 7 | |
|---|---|
| Accuracy | 81.2% |
| Cost | 67145 |
| Alternative 8 | |
|---|---|
| Accuracy | 81.1% |
| Cost | 66761 |
| Alternative 9 | |
|---|---|
| Accuracy | 81.1% |
| Cost | 66697 |
| Alternative 10 | |
|---|---|
| Accuracy | 80.9% |
| Cost | 66633 |
| Alternative 11 | |
|---|---|
| Accuracy | 80.9% |
| Cost | 66505 |
| Alternative 12 | |
|---|---|
| Accuracy | 79.3% |
| Cost | 66377 |
| Alternative 13 | |
|---|---|
| Accuracy | 79.2% |
| Cost | 60233 |
| Alternative 14 | |
|---|---|
| Accuracy | 79.3% |
| Cost | 60233 |
| Alternative 15 | |
|---|---|
| Accuracy | 79.1% |
| Cost | 60041 |
| Alternative 16 | |
|---|---|
| Accuracy | 79.1% |
| Cost | 59977 |
| Alternative 17 | |
|---|---|
| Accuracy | 79.0% |
| Cost | 59913 |
| Alternative 18 | |
|---|---|
| Accuracy | 79.1% |
| Cost | 59913 |
| Alternative 19 | |
|---|---|
| Accuracy | 78.3% |
| Cost | 59400 |
| Alternative 20 | |
|---|---|
| Accuracy | 78.3% |
| Cost | 46984 |
| Alternative 21 | |
|---|---|
| Accuracy | 78.3% |
| Cost | 46984 |
| Alternative 22 | |
|---|---|
| Accuracy | 78.3% |
| Cost | 46856 |
| Alternative 23 | |
|---|---|
| Accuracy | 78.3% |
| Cost | 46856 |
| Alternative 24 | |
|---|---|
| Accuracy | 60.1% |
| Cost | 46592 |
| Alternative 25 | |
|---|---|
| Accuracy | 60.0% |
| Cost | 46464 |
| Alternative 26 | |
|---|---|
| Accuracy | 60.0% |
| Cost | 40512 |
| Alternative 27 | |
|---|---|
| Accuracy | 41.8% |
| Cost | 32704 |
| Alternative 28 | |
|---|---|
| Accuracy | 41.8% |
| Cost | 20160 |
| Alternative 29 | |
|---|---|
| Accuracy | 39.9% |
| Cost | 64 |
herbie shell --seed 2023151
(FPCore (x y)
:name "Diagrams.TwoD.Path.Metafont.Internal:hobbyF from diagrams-contrib-1.3.0.5"
:precision binary64
(/ (+ 2.0 (* (* (* (sqrt 2.0) (- (sin x) (/ (sin y) 16.0))) (- (sin y) (/ (sin x) 16.0))) (- (cos x) (cos y)))) (* 3.0 (+ (+ 1.0 (* (/ (- (sqrt 5.0) 1.0) 2.0) (cos x))) (* (/ (- 3.0 (sqrt 5.0)) 2.0) (cos y))))))