
(FPCore (x) :precision binary64 (* (* 3.0 (- 2.0 (* x 3.0))) x))
double code(double x) {
return (3.0 * (2.0 - (x * 3.0))) * x;
}
real(8) function code(x)
real(8), intent (in) :: x
code = (3.0d0 * (2.0d0 - (x * 3.0d0))) * x
end function
public static double code(double x) {
return (3.0 * (2.0 - (x * 3.0))) * x;
}
def code(x): return (3.0 * (2.0 - (x * 3.0))) * x
function code(x) return Float64(Float64(3.0 * Float64(2.0 - Float64(x * 3.0))) * x) end
function tmp = code(x) tmp = (3.0 * (2.0 - (x * 3.0))) * x; end
code[x_] := N[(N[(3.0 * N[(2.0 - N[(x * 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision]
\begin{array}{l}
\\
\left(3 \cdot \left(2 - x \cdot 3\right)\right) \cdot x
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 5 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x) :precision binary64 (* (* 3.0 (- 2.0 (* x 3.0))) x))
double code(double x) {
return (3.0 * (2.0 - (x * 3.0))) * x;
}
real(8) function code(x)
real(8), intent (in) :: x
code = (3.0d0 * (2.0d0 - (x * 3.0d0))) * x
end function
public static double code(double x) {
return (3.0 * (2.0 - (x * 3.0))) * x;
}
def code(x): return (3.0 * (2.0 - (x * 3.0))) * x
function code(x) return Float64(Float64(3.0 * Float64(2.0 - Float64(x * 3.0))) * x) end
function tmp = code(x) tmp = (3.0 * (2.0 - (x * 3.0))) * x; end
code[x_] := N[(N[(3.0 * N[(2.0 - N[(x * 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision]
\begin{array}{l}
\\
\left(3 \cdot \left(2 - x \cdot 3\right)\right) \cdot x
\end{array}
(FPCore (x) :precision binary64 (+ (* x 6.0) (* x (* x -9.0))))
double code(double x) {
return (x * 6.0) + (x * (x * -9.0));
}
real(8) function code(x)
real(8), intent (in) :: x
code = (x * 6.0d0) + (x * (x * (-9.0d0)))
end function
public static double code(double x) {
return (x * 6.0) + (x * (x * -9.0));
}
def code(x): return (x * 6.0) + (x * (x * -9.0))
function code(x) return Float64(Float64(x * 6.0) + Float64(x * Float64(x * -9.0))) end
function tmp = code(x) tmp = (x * 6.0) + (x * (x * -9.0)); end
code[x_] := N[(N[(x * 6.0), $MachinePrecision] + N[(x * N[(x * -9.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot 6 + x \cdot \left(x \cdot -9\right)
\end{array}
Initial program 99.7%
*-commutative99.7%
cancel-sign-sub-inv99.7%
distribute-rgt-in99.7%
metadata-eval99.7%
distribute-lft-neg-out99.7%
distribute-rgt-neg-in99.7%
associate-*l*99.8%
metadata-eval99.8%
metadata-eval99.8%
Simplified99.8%
distribute-lft-in99.8%
flip-+42.2%
*-commutative42.2%
*-commutative42.2%
*-commutative42.2%
associate-*l*42.2%
pow242.2%
*-commutative42.2%
associate-*l*42.2%
pow242.2%
*-commutative42.2%
*-commutative42.2%
associate-*l*42.2%
pow242.2%
Applied egg-rr42.2%
difference-of-squares42.2%
+-commutative42.2%
*-commutative42.2%
unpow242.2%
associate-*r*42.2%
distribute-lft-in42.2%
fma-udef42.2%
associate-/l*75.9%
*-inverses99.8%
associate-/l*99.6%
Simplified99.6%
div-inv99.8%
remove-double-div99.8%
fma-udef99.8%
metadata-eval99.8%
distribute-rgt-neg-in99.8%
distribute-rgt-in99.8%
distribute-rgt-neg-in99.8%
metadata-eval99.8%
metadata-eval99.8%
associate-/r/99.6%
clear-num99.6%
div-inv99.8%
metadata-eval99.8%
Applied egg-rr99.8%
Final simplification99.8%
(FPCore (x) :precision binary64 (if (or (<= x -0.68) (not (<= x 0.65))) (* x (* x -9.0)) (* x 6.0)))
double code(double x) {
double tmp;
if ((x <= -0.68) || !(x <= 0.65)) {
tmp = x * (x * -9.0);
} else {
tmp = x * 6.0;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if ((x <= (-0.68d0)) .or. (.not. (x <= 0.65d0))) then
tmp = x * (x * (-9.0d0))
else
tmp = x * 6.0d0
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if ((x <= -0.68) || !(x <= 0.65)) {
tmp = x * (x * -9.0);
} else {
tmp = x * 6.0;
}
return tmp;
}
def code(x): tmp = 0 if (x <= -0.68) or not (x <= 0.65): tmp = x * (x * -9.0) else: tmp = x * 6.0 return tmp
function code(x) tmp = 0.0 if ((x <= -0.68) || !(x <= 0.65)) tmp = Float64(x * Float64(x * -9.0)); else tmp = Float64(x * 6.0); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if ((x <= -0.68) || ~((x <= 0.65))) tmp = x * (x * -9.0); else tmp = x * 6.0; end tmp_2 = tmp; end
code[x_] := If[Or[LessEqual[x, -0.68], N[Not[LessEqual[x, 0.65]], $MachinePrecision]], N[(x * N[(x * -9.0), $MachinePrecision]), $MachinePrecision], N[(x * 6.0), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -0.68 \lor \neg \left(x \leq 0.65\right):\\
\;\;\;\;x \cdot \left(x \cdot -9\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 6\\
\end{array}
\end{array}
if x < -0.680000000000000049 or 0.650000000000000022 < x Initial program 99.7%
*-commutative99.7%
cancel-sign-sub-inv99.7%
distribute-rgt-in99.7%
metadata-eval99.7%
distribute-lft-neg-out99.7%
distribute-rgt-neg-in99.7%
associate-*l*99.8%
metadata-eval99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in x around inf 96.8%
*-commutative96.8%
Simplified96.8%
if -0.680000000000000049 < x < 0.650000000000000022Initial program 99.7%
*-commutative99.7%
cancel-sign-sub-inv99.7%
distribute-rgt-in99.7%
metadata-eval99.7%
distribute-lft-neg-out99.7%
distribute-rgt-neg-in99.7%
associate-*l*99.7%
metadata-eval99.7%
metadata-eval99.7%
Simplified99.7%
Taylor expanded in x around 0 98.7%
Final simplification97.8%
(FPCore (x) :precision binary64 (* x (+ (* x -9.0) 6.0)))
double code(double x) {
return x * ((x * -9.0) + 6.0);
}
real(8) function code(x)
real(8), intent (in) :: x
code = x * ((x * (-9.0d0)) + 6.0d0)
end function
public static double code(double x) {
return x * ((x * -9.0) + 6.0);
}
def code(x): return x * ((x * -9.0) + 6.0)
function code(x) return Float64(x * Float64(Float64(x * -9.0) + 6.0)) end
function tmp = code(x) tmp = x * ((x * -9.0) + 6.0); end
code[x_] := N[(x * N[(N[(x * -9.0), $MachinePrecision] + 6.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot \left(x \cdot -9 + 6\right)
\end{array}
Initial program 99.7%
*-commutative99.7%
cancel-sign-sub-inv99.7%
distribute-rgt-in99.7%
metadata-eval99.7%
distribute-lft-neg-out99.7%
distribute-rgt-neg-in99.7%
associate-*l*99.8%
metadata-eval99.8%
metadata-eval99.8%
Simplified99.8%
Final simplification99.8%
(FPCore (x) :precision binary64 (* x 6.0))
double code(double x) {
return x * 6.0;
}
real(8) function code(x)
real(8), intent (in) :: x
code = x * 6.0d0
end function
public static double code(double x) {
return x * 6.0;
}
def code(x): return x * 6.0
function code(x) return Float64(x * 6.0) end
function tmp = code(x) tmp = x * 6.0; end
code[x_] := N[(x * 6.0), $MachinePrecision]
\begin{array}{l}
\\
x \cdot 6
\end{array}
Initial program 99.7%
*-commutative99.7%
cancel-sign-sub-inv99.7%
distribute-rgt-in99.7%
metadata-eval99.7%
distribute-lft-neg-out99.7%
distribute-rgt-neg-in99.7%
associate-*l*99.8%
metadata-eval99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in x around 0 52.6%
Final simplification52.6%
(FPCore (x) :precision binary64 4.0)
double code(double x) {
return 4.0;
}
real(8) function code(x)
real(8), intent (in) :: x
code = 4.0d0
end function
public static double code(double x) {
return 4.0;
}
def code(x): return 4.0
function code(x) return 4.0 end
function tmp = code(x) tmp = 4.0; end
code[x_] := 4.0
\begin{array}{l}
\\
4
\end{array}
Initial program 99.7%
*-commutative99.7%
cancel-sign-sub-inv99.7%
distribute-rgt-in99.7%
metadata-eval99.7%
distribute-lft-neg-out99.7%
distribute-rgt-neg-in99.7%
associate-*l*99.8%
metadata-eval99.8%
metadata-eval99.8%
Simplified99.8%
*-commutative99.8%
flip-+99.4%
associate-*l/91.4%
metadata-eval91.4%
swap-sqr91.4%
pow291.4%
metadata-eval91.4%
*-commutative91.4%
cancel-sign-sub-inv91.4%
metadata-eval91.4%
Applied egg-rr91.4%
Taylor expanded in x around 0 51.2%
*-commutative51.2%
Simplified51.2%
Taylor expanded in x around inf 2.3%
Final simplification2.3%
(FPCore (x) :precision binary64 (- (* 6.0 x) (* 9.0 (* x x))))
double code(double x) {
return (6.0 * x) - (9.0 * (x * x));
}
real(8) function code(x)
real(8), intent (in) :: x
code = (6.0d0 * x) - (9.0d0 * (x * x))
end function
public static double code(double x) {
return (6.0 * x) - (9.0 * (x * x));
}
def code(x): return (6.0 * x) - (9.0 * (x * x))
function code(x) return Float64(Float64(6.0 * x) - Float64(9.0 * Float64(x * x))) end
function tmp = code(x) tmp = (6.0 * x) - (9.0 * (x * x)); end
code[x_] := N[(N[(6.0 * x), $MachinePrecision] - N[(9.0 * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
6 \cdot x - 9 \cdot \left(x \cdot x\right)
\end{array}
herbie shell --seed 2024026
(FPCore (x)
:name "Diagrams.Tangent:$catParam from diagrams-lib-1.3.0.3, E"
:precision binary64
:herbie-target
(- (* 6.0 x) (* 9.0 (* x x)))
(* (* 3.0 (- 2.0 (* x 3.0))) x))