
(FPCore (x y z t) :precision binary64 (+ (* x (+ (+ (+ (+ y z) z) y) t)) (* y 5.0)))
double code(double x, double y, double z, double t) {
return (x * ((((y + z) + z) + y) + t)) + (y * 5.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 = (x * ((((y + z) + z) + y) + t)) + (y * 5.0d0)
end function
public static double code(double x, double y, double z, double t) {
return (x * ((((y + z) + z) + y) + t)) + (y * 5.0);
}
def code(x, y, z, t): return (x * ((((y + z) + z) + y) + t)) + (y * 5.0)
function code(x, y, z, t) return Float64(Float64(x * Float64(Float64(Float64(Float64(y + z) + z) + y) + t)) + Float64(y * 5.0)) end
function tmp = code(x, y, z, t) tmp = (x * ((((y + z) + z) + y) + t)) + (y * 5.0); end
code[x_, y_, z_, t_] := N[(N[(x * N[(N[(N[(N[(y + z), $MachinePrecision] + z), $MachinePrecision] + y), $MachinePrecision] + t), $MachinePrecision]), $MachinePrecision] + N[(y * 5.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot \left(\left(\left(\left(y + z\right) + z\right) + y\right) + t\right) + y \cdot 5
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 10 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t) :precision binary64 (+ (* x (+ (+ (+ (+ y z) z) y) t)) (* y 5.0)))
double code(double x, double y, double z, double t) {
return (x * ((((y + z) + z) + y) + t)) + (y * 5.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 = (x * ((((y + z) + z) + y) + t)) + (y * 5.0d0)
end function
public static double code(double x, double y, double z, double t) {
return (x * ((((y + z) + z) + y) + t)) + (y * 5.0);
}
def code(x, y, z, t): return (x * ((((y + z) + z) + y) + t)) + (y * 5.0)
function code(x, y, z, t) return Float64(Float64(x * Float64(Float64(Float64(Float64(y + z) + z) + y) + t)) + Float64(y * 5.0)) end
function tmp = code(x, y, z, t) tmp = (x * ((((y + z) + z) + y) + t)) + (y * 5.0); end
code[x_, y_, z_, t_] := N[(N[(x * N[(N[(N[(N[(y + z), $MachinePrecision] + z), $MachinePrecision] + y), $MachinePrecision] + t), $MachinePrecision]), $MachinePrecision] + N[(y * 5.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x \cdot \left(\left(\left(\left(y + z\right) + z\right) + y\right) + t\right) + y \cdot 5
\end{array}
(FPCore (x y z t) :precision binary64 (+ (* 5.0 y) (* (+ t (+ (+ (+ z y) z) y)) x)))
double code(double x, double y, double z, double t) {
return (5.0 * y) + ((t + (((z + y) + z) + y)) * x);
}
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 = (5.0d0 * y) + ((t + (((z + y) + z) + y)) * x)
end function
public static double code(double x, double y, double z, double t) {
return (5.0 * y) + ((t + (((z + y) + z) + y)) * x);
}
def code(x, y, z, t): return (5.0 * y) + ((t + (((z + y) + z) + y)) * x)
function code(x, y, z, t) return Float64(Float64(5.0 * y) + Float64(Float64(t + Float64(Float64(Float64(z + y) + z) + y)) * x)) end
function tmp = code(x, y, z, t) tmp = (5.0 * y) + ((t + (((z + y) + z) + y)) * x); end
code[x_, y_, z_, t_] := N[(N[(5.0 * y), $MachinePrecision] + N[(N[(t + N[(N[(N[(z + y), $MachinePrecision] + z), $MachinePrecision] + y), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
5 \cdot y + \left(t + \left(\left(\left(z + y\right) + z\right) + y\right)\right) \cdot x
\end{array}
Initial program 99.9%
Final simplification99.9%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (* (fma 2.0 y t) x)))
(if (<= x -6e+22)
t_1
(if (<= x -1.15e-85) (* (* z x) 2.0) (if (<= x 5.8e-51) (* 5.0 y) t_1)))))
double code(double x, double y, double z, double t) {
double t_1 = fma(2.0, y, t) * x;
double tmp;
if (x <= -6e+22) {
tmp = t_1;
} else if (x <= -1.15e-85) {
tmp = (z * x) * 2.0;
} else if (x <= 5.8e-51) {
tmp = 5.0 * y;
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t) t_1 = Float64(fma(2.0, y, t) * x) tmp = 0.0 if (x <= -6e+22) tmp = t_1; elseif (x <= -1.15e-85) tmp = Float64(Float64(z * x) * 2.0); elseif (x <= 5.8e-51) tmp = Float64(5.0 * y); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(2.0 * y + t), $MachinePrecision] * x), $MachinePrecision]}, If[LessEqual[x, -6e+22], t$95$1, If[LessEqual[x, -1.15e-85], N[(N[(z * x), $MachinePrecision] * 2.0), $MachinePrecision], If[LessEqual[x, 5.8e-51], N[(5.0 * y), $MachinePrecision], t$95$1]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(2, y, t\right) \cdot x\\
\mathbf{if}\;x \leq -6 \cdot 10^{+22}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;x \leq -1.15 \cdot 10^{-85}:\\
\;\;\;\;\left(z \cdot x\right) \cdot 2\\
\mathbf{elif}\;x \leq 5.8 \cdot 10^{-51}:\\
\;\;\;\;5 \cdot y\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if x < -6e22 or 5.79999999999999945e-51 < x Initial program 100.0%
Taylor expanded in z around 0
+-commutativeN/A
*-commutativeN/A
lower-fma.f64N/A
+-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6468.5
Applied rewrites68.5%
Taylor expanded in x around inf
Applied rewrites67.0%
if -6e22 < x < -1.15e-85Initial program 99.8%
Taylor expanded in z around inf
*-commutativeN/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f6453.6
Applied rewrites53.6%
if -1.15e-85 < x < 5.79999999999999945e-51Initial program 99.9%
Taylor expanded in x around 0
*-commutativeN/A
lower-*.f6464.1
Applied rewrites64.1%
Final simplification64.9%
(FPCore (x y z t) :precision binary64 (let* ((t_1 (* (fma (+ z y) 2.0 t) x))) (if (<= x -2.5) t_1 (if (<= x 2.45) (fma y 5.0 (* (fma 2.0 z t) x)) t_1))))
double code(double x, double y, double z, double t) {
double t_1 = fma((z + y), 2.0, t) * x;
double tmp;
if (x <= -2.5) {
tmp = t_1;
} else if (x <= 2.45) {
tmp = fma(y, 5.0, (fma(2.0, z, t) * x));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t) t_1 = Float64(fma(Float64(z + y), 2.0, t) * x) tmp = 0.0 if (x <= -2.5) tmp = t_1; elseif (x <= 2.45) tmp = fma(y, 5.0, Float64(fma(2.0, z, t) * x)); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(N[(z + y), $MachinePrecision] * 2.0 + t), $MachinePrecision] * x), $MachinePrecision]}, If[LessEqual[x, -2.5], t$95$1, If[LessEqual[x, 2.45], N[(y * 5.0 + N[(N[(2.0 * z + t), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(z + y, 2, t\right) \cdot x\\
\mathbf{if}\;x \leq -2.5:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;x \leq 2.45:\\
\;\;\;\;\mathsf{fma}\left(y, 5, \mathsf{fma}\left(2, z, t\right) \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if x < -2.5 or 2.4500000000000002 < x Initial program 100.0%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
+-commutativeN/A
distribute-lft-outN/A
*-commutativeN/A
lower-fma.f64N/A
+-commutativeN/A
lower-+.f6499.3
Applied rewrites99.3%
if -2.5 < x < 2.4500000000000002Initial program 99.9%
lift-+.f64N/A
+-commutativeN/A
lift-*.f64N/A
lower-fma.f64100.0
lift-*.f64N/A
*-commutativeN/A
lower-*.f64100.0
lift-+.f64N/A
lift-+.f64N/A
lift-+.f64N/A
associate-+l+N/A
+-commutativeN/A
lift-+.f64N/A
flip-+N/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
flip-+N/A
count-2N/A
lower-fma.f6498.2
Applied rewrites98.2%
(FPCore (x y z t) :precision binary64 (let* ((t_1 (* (fma (+ z y) 2.0 t) x))) (if (<= x -0.35) t_1 (if (<= x 5.5e-52) (fma y 5.0 (* (* 2.0 z) x)) t_1))))
double code(double x, double y, double z, double t) {
double t_1 = fma((z + y), 2.0, t) * x;
double tmp;
if (x <= -0.35) {
tmp = t_1;
} else if (x <= 5.5e-52) {
tmp = fma(y, 5.0, ((2.0 * z) * x));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t) t_1 = Float64(fma(Float64(z + y), 2.0, t) * x) tmp = 0.0 if (x <= -0.35) tmp = t_1; elseif (x <= 5.5e-52) tmp = fma(y, 5.0, Float64(Float64(2.0 * z) * x)); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(N[(z + y), $MachinePrecision] * 2.0 + t), $MachinePrecision] * x), $MachinePrecision]}, If[LessEqual[x, -0.35], t$95$1, If[LessEqual[x, 5.5e-52], N[(y * 5.0 + N[(N[(2.0 * z), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(z + y, 2, t\right) \cdot x\\
\mathbf{if}\;x \leq -0.35:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;x \leq 5.5 \cdot 10^{-52}:\\
\;\;\;\;\mathsf{fma}\left(y, 5, \left(2 \cdot z\right) \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if x < -0.34999999999999998 or 5.5e-52 < x Initial program 100.0%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
+-commutativeN/A
distribute-lft-outN/A
*-commutativeN/A
lower-fma.f64N/A
+-commutativeN/A
lower-+.f6498.1
Applied rewrites98.1%
if -0.34999999999999998 < x < 5.5e-52Initial program 99.9%
lift-+.f64N/A
+-commutativeN/A
lift-*.f64N/A
lower-fma.f64100.0
lift-*.f64N/A
*-commutativeN/A
lower-*.f64100.0
lift-+.f64N/A
lift-+.f64N/A
lift-+.f64N/A
associate-+l+N/A
+-commutativeN/A
lift-+.f64N/A
flip-+N/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
flip-+N/A
count-2N/A
lower-fma.f6498.6
Applied rewrites98.6%
Taylor expanded in t around 0
*-commutativeN/A
lower-*.f6484.9
Applied rewrites84.9%
Final simplification92.3%
(FPCore (x y z t) :precision binary64 (let* ((t_1 (* (fma (+ z y) 2.0 t) x))) (if (<= x -1.15e-85) t_1 (if (<= x 1.86e-162) (fma y 5.0 (* t x)) t_1))))
double code(double x, double y, double z, double t) {
double t_1 = fma((z + y), 2.0, t) * x;
double tmp;
if (x <= -1.15e-85) {
tmp = t_1;
} else if (x <= 1.86e-162) {
tmp = fma(y, 5.0, (t * x));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t) t_1 = Float64(fma(Float64(z + y), 2.0, t) * x) tmp = 0.0 if (x <= -1.15e-85) tmp = t_1; elseif (x <= 1.86e-162) tmp = fma(y, 5.0, Float64(t * x)); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(N[(z + y), $MachinePrecision] * 2.0 + t), $MachinePrecision] * x), $MachinePrecision]}, If[LessEqual[x, -1.15e-85], t$95$1, If[LessEqual[x, 1.86e-162], N[(y * 5.0 + N[(t * x), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(z + y, 2, t\right) \cdot x\\
\mathbf{if}\;x \leq -1.15 \cdot 10^{-85}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;x \leq 1.86 \cdot 10^{-162}:\\
\;\;\;\;\mathsf{fma}\left(y, 5, t \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if x < -1.15e-85 or 1.85999999999999997e-162 < x Initial program 100.0%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
+-commutativeN/A
distribute-lft-outN/A
*-commutativeN/A
lower-fma.f64N/A
+-commutativeN/A
lower-+.f6491.2
Applied rewrites91.2%
if -1.15e-85 < x < 1.85999999999999997e-162Initial program 99.9%
lift-+.f64N/A
+-commutativeN/A
lift-*.f64N/A
lower-fma.f64100.0
lift-*.f64N/A
*-commutativeN/A
lower-*.f64100.0
lift-+.f64N/A
lift-+.f64N/A
lift-+.f64N/A
associate-+l+N/A
+-commutativeN/A
lift-+.f64N/A
flip-+N/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
+-inversesN/A
flip-+N/A
count-2N/A
lower-fma.f6499.9
Applied rewrites99.9%
Taylor expanded in t around inf
lower-*.f6484.4
Applied rewrites84.4%
(FPCore (x y z t) :precision binary64 (let* ((t_1 (* (fma 2.0 x 5.0) y))) (if (<= y -5e+14) t_1 (if (<= y 1e+40) (* (fma z 2.0 t) x) t_1))))
double code(double x, double y, double z, double t) {
double t_1 = fma(2.0, x, 5.0) * y;
double tmp;
if (y <= -5e+14) {
tmp = t_1;
} else if (y <= 1e+40) {
tmp = fma(z, 2.0, t) * x;
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t) t_1 = Float64(fma(2.0, x, 5.0) * y) tmp = 0.0 if (y <= -5e+14) tmp = t_1; elseif (y <= 1e+40) tmp = Float64(fma(z, 2.0, t) * x); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(2.0 * x + 5.0), $MachinePrecision] * y), $MachinePrecision]}, If[LessEqual[y, -5e+14], t$95$1, If[LessEqual[y, 1e+40], N[(N[(z * 2.0 + t), $MachinePrecision] * x), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(2, x, 5\right) \cdot y\\
\mathbf{if}\;y \leq -5 \cdot 10^{+14}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;y \leq 10^{+40}:\\
\;\;\;\;\mathsf{fma}\left(z, 2, t\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if y < -5e14 or 1.00000000000000003e40 < y Initial program 99.9%
Taylor expanded in y around inf
+-commutativeN/A
metadata-evalN/A
distribute-lft-neg-inN/A
neg-sub0N/A
associate--r-N/A
neg-sub0N/A
*-commutativeN/A
lower-*.f64N/A
neg-sub0N/A
associate--r-N/A
neg-sub0N/A
distribute-lft-neg-inN/A
metadata-evalN/A
lower-fma.f6480.3
Applied rewrites80.3%
if -5e14 < y < 1.00000000000000003e40Initial program 100.0%
Taylor expanded in y around 0
*-commutativeN/A
lower-*.f64N/A
+-commutativeN/A
*-commutativeN/A
lower-fma.f6481.8
Applied rewrites81.8%
(FPCore (x y z t) :precision binary64 (let* ((t_1 (* (fma 2.0 y t) x))) (if (<= x -370000.0) t_1 (if (<= x 5.8e-51) (* (fma 2.0 x 5.0) y) t_1))))
double code(double x, double y, double z, double t) {
double t_1 = fma(2.0, y, t) * x;
double tmp;
if (x <= -370000.0) {
tmp = t_1;
} else if (x <= 5.8e-51) {
tmp = fma(2.0, x, 5.0) * y;
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t) t_1 = Float64(fma(2.0, y, t) * x) tmp = 0.0 if (x <= -370000.0) tmp = t_1; elseif (x <= 5.8e-51) tmp = Float64(fma(2.0, x, 5.0) * y); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(2.0 * y + t), $MachinePrecision] * x), $MachinePrecision]}, If[LessEqual[x, -370000.0], t$95$1, If[LessEqual[x, 5.8e-51], N[(N[(2.0 * x + 5.0), $MachinePrecision] * y), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(2, y, t\right) \cdot x\\
\mathbf{if}\;x \leq -370000:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;x \leq 5.8 \cdot 10^{-51}:\\
\;\;\;\;\mathsf{fma}\left(2, x, 5\right) \cdot y\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if x < -3.7e5 or 5.79999999999999945e-51 < x Initial program 100.0%
Taylor expanded in z around 0
+-commutativeN/A
*-commutativeN/A
lower-fma.f64N/A
+-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6467.6
Applied rewrites67.6%
Taylor expanded in x around inf
Applied rewrites66.1%
if -3.7e5 < x < 5.79999999999999945e-51Initial program 99.9%
Taylor expanded in y around inf
+-commutativeN/A
metadata-evalN/A
distribute-lft-neg-inN/A
neg-sub0N/A
associate--r-N/A
neg-sub0N/A
*-commutativeN/A
lower-*.f64N/A
neg-sub0N/A
associate--r-N/A
neg-sub0N/A
distribute-lft-neg-inN/A
metadata-evalN/A
lower-fma.f6460.7
Applied rewrites60.7%
(FPCore (x y z t) :precision binary64 (let* ((t_1 (* (* z x) 2.0))) (if (<= z -3e-30) t_1 (if (<= z 4.4e+54) (* t x) t_1))))
double code(double x, double y, double z, double t) {
double t_1 = (z * x) * 2.0;
double tmp;
if (z <= -3e-30) {
tmp = t_1;
} else if (z <= 4.4e+54) {
tmp = t * x;
} else {
tmp = t_1;
}
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 = (z * x) * 2.0d0
if (z <= (-3d-30)) then
tmp = t_1
else if (z <= 4.4d+54) then
tmp = t * x
else
tmp = t_1
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = (z * x) * 2.0;
double tmp;
if (z <= -3e-30) {
tmp = t_1;
} else if (z <= 4.4e+54) {
tmp = t * x;
} else {
tmp = t_1;
}
return tmp;
}
def code(x, y, z, t): t_1 = (z * x) * 2.0 tmp = 0 if z <= -3e-30: tmp = t_1 elif z <= 4.4e+54: tmp = t * x else: tmp = t_1 return tmp
function code(x, y, z, t) t_1 = Float64(Float64(z * x) * 2.0) tmp = 0.0 if (z <= -3e-30) tmp = t_1; elseif (z <= 4.4e+54) tmp = Float64(t * x); else tmp = t_1; end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = (z * x) * 2.0; tmp = 0.0; if (z <= -3e-30) tmp = t_1; elseif (z <= 4.4e+54) tmp = t * x; else tmp = t_1; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(z * x), $MachinePrecision] * 2.0), $MachinePrecision]}, If[LessEqual[z, -3e-30], t$95$1, If[LessEqual[z, 4.4e+54], N[(t * x), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \left(z \cdot x\right) \cdot 2\\
\mathbf{if}\;z \leq -3 \cdot 10^{-30}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;z \leq 4.4 \cdot 10^{+54}:\\
\;\;\;\;t \cdot x\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if z < -2.9999999999999999e-30 or 4.3999999999999998e54 < z Initial program 99.9%
Taylor expanded in z around inf
*-commutativeN/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f6461.2
Applied rewrites61.2%
if -2.9999999999999999e-30 < z < 4.3999999999999998e54Initial program 99.9%
Taylor expanded in t around inf
lower-*.f6441.0
Applied rewrites41.0%
(FPCore (x y z t) :precision binary64 (if (<= x -0.35) (* t x) (if (<= x 5.8e-51) (* 5.0 y) (* t x))))
double code(double x, double y, double z, double t) {
double tmp;
if (x <= -0.35) {
tmp = t * x;
} else if (x <= 5.8e-51) {
tmp = 5.0 * y;
} else {
tmp = t * 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 (x <= (-0.35d0)) then
tmp = t * x
else if (x <= 5.8d-51) then
tmp = 5.0d0 * y
else
tmp = t * x
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (x <= -0.35) {
tmp = t * x;
} else if (x <= 5.8e-51) {
tmp = 5.0 * y;
} else {
tmp = t * x;
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if x <= -0.35: tmp = t * x elif x <= 5.8e-51: tmp = 5.0 * y else: tmp = t * x return tmp
function code(x, y, z, t) tmp = 0.0 if (x <= -0.35) tmp = Float64(t * x); elseif (x <= 5.8e-51) tmp = Float64(5.0 * y); else tmp = Float64(t * x); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (x <= -0.35) tmp = t * x; elseif (x <= 5.8e-51) tmp = 5.0 * y; else tmp = t * x; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[LessEqual[x, -0.35], N[(t * x), $MachinePrecision], If[LessEqual[x, 5.8e-51], N[(5.0 * y), $MachinePrecision], N[(t * x), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -0.35:\\
\;\;\;\;t \cdot x\\
\mathbf{elif}\;x \leq 5.8 \cdot 10^{-51}:\\
\;\;\;\;5 \cdot y\\
\mathbf{else}:\\
\;\;\;\;t \cdot x\\
\end{array}
\end{array}
if x < -0.34999999999999998 or 5.79999999999999945e-51 < x Initial program 100.0%
Taylor expanded in t around inf
lower-*.f6436.5
Applied rewrites36.5%
if -0.34999999999999998 < x < 5.79999999999999945e-51Initial program 99.9%
Taylor expanded in x around 0
*-commutativeN/A
lower-*.f6459.1
Applied rewrites59.1%
Final simplification46.6%
(FPCore (x y z t) :precision binary64 (* t x))
double code(double x, double y, double z, double t) {
return t * x;
}
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 * x
end function
public static double code(double x, double y, double z, double t) {
return t * x;
}
def code(x, y, z, t): return t * x
function code(x, y, z, t) return Float64(t * x) end
function tmp = code(x, y, z, t) tmp = t * x; end
code[x_, y_, z_, t_] := N[(t * x), $MachinePrecision]
\begin{array}{l}
\\
t \cdot x
\end{array}
Initial program 99.9%
Taylor expanded in t around inf
lower-*.f6427.6
Applied rewrites27.6%
herbie shell --seed 2024277
(FPCore (x y z t)
:name "Graphics.Rendering.Plot.Render.Plot.Legend:renderLegendOutside from plot-0.2.3.4, B"
:precision binary64
(+ (* x (+ (+ (+ (+ y z) z) y) t)) (* y 5.0)))