
(FPCore (x y z t) :precision binary64 (+ (- (* (/ 1.0 8.0) x) (/ (* y z) 2.0)) t))
double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = (((1.0d0 / 8.0d0) * x) - ((y * z) / 2.0d0)) + t
end function
public static double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
def code(x, y, z, t): return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t
function code(x, y, z, t) return Float64(Float64(Float64(Float64(1.0 / 8.0) * x) - Float64(Float64(y * z) / 2.0)) + t) end
function tmp = code(x, y, z, t) tmp = (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t; end
code[x_, y_, z_, t_] := N[(N[(N[(N[(1.0 / 8.0), $MachinePrecision] * x), $MachinePrecision] - N[(N[(y * z), $MachinePrecision] / 2.0), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{1}{8} \cdot x - \frac{y \cdot z}{2}\right) + t
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 8 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t) :precision binary64 (+ (- (* (/ 1.0 8.0) x) (/ (* y z) 2.0)) t))
double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = (((1.0d0 / 8.0d0) * x) - ((y * z) / 2.0d0)) + t
end function
public static double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
def code(x, y, z, t): return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t
function code(x, y, z, t) return Float64(Float64(Float64(Float64(1.0 / 8.0) * x) - Float64(Float64(y * z) / 2.0)) + t) end
function tmp = code(x, y, z, t) tmp = (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t; end
code[x_, y_, z_, t_] := N[(N[(N[(N[(1.0 / 8.0), $MachinePrecision] * x), $MachinePrecision] - N[(N[(y * z), $MachinePrecision] / 2.0), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{1}{8} \cdot x - \frac{y \cdot z}{2}\right) + t
\end{array}
(FPCore (x y z t) :precision binary64 (fma 0.125 x (fma y (* z -0.5) t)))
double code(double x, double y, double z, double t) {
return fma(0.125, x, fma(y, (z * -0.5), t));
}
function code(x, y, z, t) return fma(0.125, x, fma(y, Float64(z * -0.5), t)) end
code[x_, y_, z_, t_] := N[(0.125 * x + N[(y * N[(z * -0.5), $MachinePrecision] + t), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(0.125, x, \mathsf{fma}\left(y, z \cdot -0.5, t\right)\right)
\end{array}
Initial program 100.0%
associate-+l-100.0%
fma-neg100.0%
metadata-eval100.0%
sub-neg100.0%
distribute-neg-in100.0%
distribute-frac-neg100.0%
distribute-rgt-neg-out100.0%
remove-double-neg100.0%
associate-/l*100.0%
fma-define100.0%
neg-mul-1100.0%
*-commutative100.0%
associate-/l*100.0%
metadata-eval100.0%
Simplified100.0%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (* (* y z) 0.5)) (t_2 (- t t_1)))
(if (<= (* y z) -2e+81)
t_2
(if (<= (* y z) -1e-42)
(- (* 0.125 x) t_1)
(if (<= (* y z) 4e-7) (+ t (* 0.125 x)) t_2)))))
double code(double x, double y, double z, double t) {
double t_1 = (y * z) * 0.5;
double t_2 = t - t_1;
double tmp;
if ((y * z) <= -2e+81) {
tmp = t_2;
} else if ((y * z) <= -1e-42) {
tmp = (0.125 * x) - t_1;
} else if ((y * z) <= 4e-7) {
tmp = t + (0.125 * x);
} else {
tmp = t_2;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: t_1
real(8) :: t_2
real(8) :: tmp
t_1 = (y * z) * 0.5d0
t_2 = t - t_1
if ((y * z) <= (-2d+81)) then
tmp = t_2
else if ((y * z) <= (-1d-42)) then
tmp = (0.125d0 * x) - t_1
else if ((y * z) <= 4d-7) then
tmp = t + (0.125d0 * x)
else
tmp = t_2
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = (y * z) * 0.5;
double t_2 = t - t_1;
double tmp;
if ((y * z) <= -2e+81) {
tmp = t_2;
} else if ((y * z) <= -1e-42) {
tmp = (0.125 * x) - t_1;
} else if ((y * z) <= 4e-7) {
tmp = t + (0.125 * x);
} else {
tmp = t_2;
}
return tmp;
}
def code(x, y, z, t): t_1 = (y * z) * 0.5 t_2 = t - t_1 tmp = 0 if (y * z) <= -2e+81: tmp = t_2 elif (y * z) <= -1e-42: tmp = (0.125 * x) - t_1 elif (y * z) <= 4e-7: tmp = t + (0.125 * x) else: tmp = t_2 return tmp
function code(x, y, z, t) t_1 = Float64(Float64(y * z) * 0.5) t_2 = Float64(t - t_1) tmp = 0.0 if (Float64(y * z) <= -2e+81) tmp = t_2; elseif (Float64(y * z) <= -1e-42) tmp = Float64(Float64(0.125 * x) - t_1); elseif (Float64(y * z) <= 4e-7) tmp = Float64(t + Float64(0.125 * x)); else tmp = t_2; end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = (y * z) * 0.5; t_2 = t - t_1; tmp = 0.0; if ((y * z) <= -2e+81) tmp = t_2; elseif ((y * z) <= -1e-42) tmp = (0.125 * x) - t_1; elseif ((y * z) <= 4e-7) tmp = t + (0.125 * x); else tmp = t_2; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(y * z), $MachinePrecision] * 0.5), $MachinePrecision]}, Block[{t$95$2 = N[(t - t$95$1), $MachinePrecision]}, If[LessEqual[N[(y * z), $MachinePrecision], -2e+81], t$95$2, If[LessEqual[N[(y * z), $MachinePrecision], -1e-42], N[(N[(0.125 * x), $MachinePrecision] - t$95$1), $MachinePrecision], If[LessEqual[N[(y * z), $MachinePrecision], 4e-7], N[(t + N[(0.125 * x), $MachinePrecision]), $MachinePrecision], t$95$2]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \left(y \cdot z\right) \cdot 0.5\\
t_2 := t - t\_1\\
\mathbf{if}\;y \cdot z \leq -2 \cdot 10^{+81}:\\
\;\;\;\;t\_2\\
\mathbf{elif}\;y \cdot z \leq -1 \cdot 10^{-42}:\\
\;\;\;\;0.125 \cdot x - t\_1\\
\mathbf{elif}\;y \cdot z \leq 4 \cdot 10^{-7}:\\
\;\;\;\;t + 0.125 \cdot x\\
\mathbf{else}:\\
\;\;\;\;t\_2\\
\end{array}
\end{array}
if (*.f64 y z) < -1.99999999999999984e81 or 3.9999999999999998e-7 < (*.f64 y z) Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around 0 86.3%
if -1.99999999999999984e81 < (*.f64 y z) < -1.00000000000000004e-42Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
associate-*r/100.0%
clear-num99.9%
Applied egg-rr99.9%
Taylor expanded in t around 0 82.6%
if -1.00000000000000004e-42 < (*.f64 y z) < 3.9999999999999998e-7Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around inf 97.1%
Final simplification91.1%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (* y (* z -0.5))))
(if (<= t -5.1e+75)
t
(if (<= t -5.4e+32)
t_1
(if (<= t 2.4e-234) (* 0.125 x) (if (<= t 3.3e+103) t_1 t))))))
double code(double x, double y, double z, double t) {
double t_1 = y * (z * -0.5);
double tmp;
if (t <= -5.1e+75) {
tmp = t;
} else if (t <= -5.4e+32) {
tmp = t_1;
} else if (t <= 2.4e-234) {
tmp = 0.125 * x;
} else if (t <= 3.3e+103) {
tmp = t_1;
} else {
tmp = t;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: t_1
real(8) :: tmp
t_1 = y * (z * (-0.5d0))
if (t <= (-5.1d+75)) then
tmp = t
else if (t <= (-5.4d+32)) then
tmp = t_1
else if (t <= 2.4d-234) then
tmp = 0.125d0 * x
else if (t <= 3.3d+103) then
tmp = t_1
else
tmp = t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = y * (z * -0.5);
double tmp;
if (t <= -5.1e+75) {
tmp = t;
} else if (t <= -5.4e+32) {
tmp = t_1;
} else if (t <= 2.4e-234) {
tmp = 0.125 * x;
} else if (t <= 3.3e+103) {
tmp = t_1;
} else {
tmp = t;
}
return tmp;
}
def code(x, y, z, t): t_1 = y * (z * -0.5) tmp = 0 if t <= -5.1e+75: tmp = t elif t <= -5.4e+32: tmp = t_1 elif t <= 2.4e-234: tmp = 0.125 * x elif t <= 3.3e+103: tmp = t_1 else: tmp = t return tmp
function code(x, y, z, t) t_1 = Float64(y * Float64(z * -0.5)) tmp = 0.0 if (t <= -5.1e+75) tmp = t; elseif (t <= -5.4e+32) tmp = t_1; elseif (t <= 2.4e-234) tmp = Float64(0.125 * x); elseif (t <= 3.3e+103) tmp = t_1; else tmp = t; end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = y * (z * -0.5); tmp = 0.0; if (t <= -5.1e+75) tmp = t; elseif (t <= -5.4e+32) tmp = t_1; elseif (t <= 2.4e-234) tmp = 0.125 * x; elseif (t <= 3.3e+103) tmp = t_1; else tmp = t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(y * N[(z * -0.5), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t, -5.1e+75], t, If[LessEqual[t, -5.4e+32], t$95$1, If[LessEqual[t, 2.4e-234], N[(0.125 * x), $MachinePrecision], If[LessEqual[t, 3.3e+103], t$95$1, t]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := y \cdot \left(z \cdot -0.5\right)\\
\mathbf{if}\;t \leq -5.1 \cdot 10^{+75}:\\
\;\;\;\;t\\
\mathbf{elif}\;t \leq -5.4 \cdot 10^{+32}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;t \leq 2.4 \cdot 10^{-234}:\\
\;\;\;\;0.125 \cdot x\\
\mathbf{elif}\;t \leq 3.3 \cdot 10^{+103}:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\end{array}
if t < -5.10000000000000037e75 or 3.30000000000000009e103 < t Initial program 100.0%
associate-+l-100.0%
fma-neg100.0%
metadata-eval100.0%
sub-neg100.0%
distribute-neg-in100.0%
distribute-frac-neg100.0%
distribute-rgt-neg-out100.0%
remove-double-neg100.0%
associate-/l*100.0%
fma-define100.0%
neg-mul-1100.0%
*-commutative100.0%
associate-/l*100.0%
metadata-eval100.0%
Simplified100.0%
Taylor expanded in t around inf 64.5%
if -5.10000000000000037e75 < t < -5.40000000000000025e32 or 2.3999999999999999e-234 < t < 3.30000000000000009e103Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around 0 70.6%
Taylor expanded in t around 0 53.1%
*-commutative53.1%
associate-*l*53.1%
Simplified53.1%
if -5.40000000000000025e32 < t < 2.3999999999999999e-234Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around inf 72.5%
Taylor expanded in x around inf 61.0%
(FPCore (x y z t) :precision binary64 (if (or (<= (* y z) -2e-19) (not (<= (* y z) 4e-7))) (- t (* (* y z) 0.5)) (+ t (* 0.125 x))))
double code(double x, double y, double z, double t) {
double tmp;
if (((y * z) <= -2e-19) || !((y * z) <= 4e-7)) {
tmp = t - ((y * z) * 0.5);
} else {
tmp = t + (0.125 * x);
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (((y * z) <= (-2d-19)) .or. (.not. ((y * z) <= 4d-7))) then
tmp = t - ((y * z) * 0.5d0)
else
tmp = t + (0.125d0 * x)
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (((y * z) <= -2e-19) || !((y * z) <= 4e-7)) {
tmp = t - ((y * z) * 0.5);
} else {
tmp = t + (0.125 * x);
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if ((y * z) <= -2e-19) or not ((y * z) <= 4e-7): tmp = t - ((y * z) * 0.5) else: tmp = t + (0.125 * x) return tmp
function code(x, y, z, t) tmp = 0.0 if ((Float64(y * z) <= -2e-19) || !(Float64(y * z) <= 4e-7)) tmp = Float64(t - Float64(Float64(y * z) * 0.5)); else tmp = Float64(t + Float64(0.125 * x)); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (((y * z) <= -2e-19) || ~(((y * z) <= 4e-7))) tmp = t - ((y * z) * 0.5); else tmp = t + (0.125 * x); end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[Or[LessEqual[N[(y * z), $MachinePrecision], -2e-19], N[Not[LessEqual[N[(y * z), $MachinePrecision], 4e-7]], $MachinePrecision]], N[(t - N[(N[(y * z), $MachinePrecision] * 0.5), $MachinePrecision]), $MachinePrecision], N[(t + N[(0.125 * x), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \cdot z \leq -2 \cdot 10^{-19} \lor \neg \left(y \cdot z \leq 4 \cdot 10^{-7}\right):\\
\;\;\;\;t - \left(y \cdot z\right) \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;t + 0.125 \cdot x\\
\end{array}
\end{array}
if (*.f64 y z) < -2e-19 or 3.9999999999999998e-7 < (*.f64 y z) Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around 0 82.5%
if -2e-19 < (*.f64 y z) < 3.9999999999999998e-7Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around inf 96.5%
Final simplification89.4%
(FPCore (x y z t) :precision binary64 (if (or (<= (* y z) -1e+182) (not (<= (* y z) 2e+64))) (* y (* z -0.5)) (+ t (* 0.125 x))))
double code(double x, double y, double z, double t) {
double tmp;
if (((y * z) <= -1e+182) || !((y * z) <= 2e+64)) {
tmp = y * (z * -0.5);
} else {
tmp = t + (0.125 * x);
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (((y * z) <= (-1d+182)) .or. (.not. ((y * z) <= 2d+64))) then
tmp = y * (z * (-0.5d0))
else
tmp = t + (0.125d0 * x)
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (((y * z) <= -1e+182) || !((y * z) <= 2e+64)) {
tmp = y * (z * -0.5);
} else {
tmp = t + (0.125 * x);
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if ((y * z) <= -1e+182) or not ((y * z) <= 2e+64): tmp = y * (z * -0.5) else: tmp = t + (0.125 * x) return tmp
function code(x, y, z, t) tmp = 0.0 if ((Float64(y * z) <= -1e+182) || !(Float64(y * z) <= 2e+64)) tmp = Float64(y * Float64(z * -0.5)); else tmp = Float64(t + Float64(0.125 * x)); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (((y * z) <= -1e+182) || ~(((y * z) <= 2e+64))) tmp = y * (z * -0.5); else tmp = t + (0.125 * x); end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[Or[LessEqual[N[(y * z), $MachinePrecision], -1e+182], N[Not[LessEqual[N[(y * z), $MachinePrecision], 2e+64]], $MachinePrecision]], N[(y * N[(z * -0.5), $MachinePrecision]), $MachinePrecision], N[(t + N[(0.125 * x), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \cdot z \leq -1 \cdot 10^{+182} \lor \neg \left(y \cdot z \leq 2 \cdot 10^{+64}\right):\\
\;\;\;\;y \cdot \left(z \cdot -0.5\right)\\
\mathbf{else}:\\
\;\;\;\;t + 0.125 \cdot x\\
\end{array}
\end{array}
if (*.f64 y z) < -1.0000000000000001e182 or 2.00000000000000004e64 < (*.f64 y z) Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around 0 91.6%
Taylor expanded in t around 0 75.9%
*-commutative75.9%
associate-*l*75.9%
Simplified75.9%
if -1.0000000000000001e182 < (*.f64 y z) < 2.00000000000000004e64Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around inf 85.8%
Final simplification82.8%
(FPCore (x y z t) :precision binary64 (if (<= t -8.2e+32) t (if (<= t 8.8e-63) (* 0.125 x) t)))
double code(double x, double y, double z, double t) {
double tmp;
if (t <= -8.2e+32) {
tmp = t;
} else if (t <= 8.8e-63) {
tmp = 0.125 * x;
} else {
tmp = t;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (t <= (-8.2d+32)) then
tmp = t
else if (t <= 8.8d-63) then
tmp = 0.125d0 * x
else
tmp = t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (t <= -8.2e+32) {
tmp = t;
} else if (t <= 8.8e-63) {
tmp = 0.125 * x;
} else {
tmp = t;
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if t <= -8.2e+32: tmp = t elif t <= 8.8e-63: tmp = 0.125 * x else: tmp = t return tmp
function code(x, y, z, t) tmp = 0.0 if (t <= -8.2e+32) tmp = t; elseif (t <= 8.8e-63) tmp = Float64(0.125 * x); else tmp = t; end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (t <= -8.2e+32) tmp = t; elseif (t <= 8.8e-63) tmp = 0.125 * x; else tmp = t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[LessEqual[t, -8.2e+32], t, If[LessEqual[t, 8.8e-63], N[(0.125 * x), $MachinePrecision], t]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \leq -8.2 \cdot 10^{+32}:\\
\;\;\;\;t\\
\mathbf{elif}\;t \leq 8.8 \cdot 10^{-63}:\\
\;\;\;\;0.125 \cdot x\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\end{array}
if t < -8.19999999999999961e32 or 8.7999999999999998e-63 < t Initial program 100.0%
associate-+l-100.0%
fma-neg100.0%
metadata-eval100.0%
sub-neg100.0%
distribute-neg-in100.0%
distribute-frac-neg100.0%
distribute-rgt-neg-out100.0%
remove-double-neg100.0%
associate-/l*100.0%
fma-define100.0%
neg-mul-1100.0%
*-commutative100.0%
associate-/l*100.0%
metadata-eval100.0%
Simplified100.0%
Taylor expanded in t around inf 51.5%
if -8.19999999999999961e32 < t < 8.7999999999999998e-63Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around inf 63.6%
Taylor expanded in x around inf 54.2%
(FPCore (x y z t) :precision binary64 (+ t (- (* 0.125 x) (* y (/ z 2.0)))))
double code(double x, double y, double z, double t) {
return t + ((0.125 * x) - (y * (z / 2.0)));
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = t + ((0.125d0 * x) - (y * (z / 2.0d0)))
end function
public static double code(double x, double y, double z, double t) {
return t + ((0.125 * x) - (y * (z / 2.0)));
}
def code(x, y, z, t): return t + ((0.125 * x) - (y * (z / 2.0)))
function code(x, y, z, t) return Float64(t + Float64(Float64(0.125 * x) - Float64(y * Float64(z / 2.0)))) end
function tmp = code(x, y, z, t) tmp = t + ((0.125 * x) - (y * (z / 2.0))); end
code[x_, y_, z_, t_] := N[(t + N[(N[(0.125 * x), $MachinePrecision] - N[(y * N[(z / 2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
t + \left(0.125 \cdot x - y \cdot \frac{z}{2}\right)
\end{array}
Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Final simplification100.0%
(FPCore (x y z t) :precision binary64 t)
double code(double x, double y, double z, double t) {
return t;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = t
end function
public static double code(double x, double y, double z, double t) {
return t;
}
def code(x, y, z, t): return t
function code(x, y, z, t) return t end
function tmp = code(x, y, z, t) tmp = t; end
code[x_, y_, z_, t_] := t
\begin{array}{l}
\\
t
\end{array}
Initial program 100.0%
associate-+l-100.0%
fma-neg100.0%
metadata-eval100.0%
sub-neg100.0%
distribute-neg-in100.0%
distribute-frac-neg100.0%
distribute-rgt-neg-out100.0%
remove-double-neg100.0%
associate-/l*100.0%
fma-define100.0%
neg-mul-1100.0%
*-commutative100.0%
associate-/l*100.0%
metadata-eval100.0%
Simplified100.0%
Taylor expanded in t around inf 35.1%
(FPCore (x y z t) :precision binary64 (- (+ (/ x 8.0) t) (* (/ z 2.0) y)))
double code(double x, double y, double z, double t) {
return ((x / 8.0) + t) - ((z / 2.0) * y);
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = ((x / 8.0d0) + t) - ((z / 2.0d0) * y)
end function
public static double code(double x, double y, double z, double t) {
return ((x / 8.0) + t) - ((z / 2.0) * y);
}
def code(x, y, z, t): return ((x / 8.0) + t) - ((z / 2.0) * y)
function code(x, y, z, t) return Float64(Float64(Float64(x / 8.0) + t) - Float64(Float64(z / 2.0) * y)) end
function tmp = code(x, y, z, t) tmp = ((x / 8.0) + t) - ((z / 2.0) * y); end
code[x_, y_, z_, t_] := N[(N[(N[(x / 8.0), $MachinePrecision] + t), $MachinePrecision] - N[(N[(z / 2.0), $MachinePrecision] * y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{x}{8} + t\right) - \frac{z}{2} \cdot y
\end{array}
herbie shell --seed 2024143
(FPCore (x y z t)
:name "Diagrams.Solve.Polynomial:quartForm from diagrams-solve-0.1, B"
:precision binary64
:alt
(! :herbie-platform default (- (+ (/ x 8) t) (* (/ z 2) y)))
(+ (- (* (/ 1.0 8.0) x) (/ (* y z) 2.0)) t))