
(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
double code(double w, double l) {
return exp(-w) * pow(l, exp(w));
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = exp(-w) * (l ** exp(w))
end function
public static double code(double w, double l) {
return Math.exp(-w) * Math.pow(l, Math.exp(w));
}
def code(w, l): return math.exp(-w) * math.pow(l, math.exp(w))
function code(w, l) return Float64(exp(Float64(-w)) * (l ^ exp(w))) end
function tmp = code(w, l) tmp = exp(-w) * (l ^ exp(w)); end
code[w_, l_] := N[(N[Exp[(-w)], $MachinePrecision] * N[Power[l, N[Exp[w], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
e^{-w} \cdot {\ell}^{\left(e^{w}\right)}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 13 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
double code(double w, double l) {
return exp(-w) * pow(l, exp(w));
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = exp(-w) * (l ** exp(w))
end function
public static double code(double w, double l) {
return Math.exp(-w) * Math.pow(l, Math.exp(w));
}
def code(w, l): return math.exp(-w) * math.pow(l, math.exp(w))
function code(w, l) return Float64(exp(Float64(-w)) * (l ^ exp(w))) end
function tmp = code(w, l) tmp = exp(-w) * (l ^ exp(w)); end
code[w_, l_] := N[(N[Exp[(-w)], $MachinePrecision] * N[Power[l, N[Exp[w], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
e^{-w} \cdot {\ell}^{\left(e^{w}\right)}
\end{array}
(FPCore (w l) :precision binary64 (/ (pow (* l (pow (pow l w) (fma w (fma w 0.020833333333333332 0.125) 0.5))) (sqrt (exp w))) (+ (+ (exp w) 1.0) -1.0)))
double code(double w, double l) {
return pow((l * pow(pow(l, w), fma(w, fma(w, 0.020833333333333332, 0.125), 0.5))), sqrt(exp(w))) / ((exp(w) + 1.0) + -1.0);
}
function code(w, l) return Float64((Float64(l * ((l ^ w) ^ fma(w, fma(w, 0.020833333333333332, 0.125), 0.5))) ^ sqrt(exp(w))) / Float64(Float64(exp(w) + 1.0) + -1.0)) end
code[w_, l_] := N[(N[Power[N[(l * N[Power[N[Power[l, w], $MachinePrecision], N[(w * N[(w * 0.020833333333333332 + 0.125), $MachinePrecision] + 0.5), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[Sqrt[N[Exp[w], $MachinePrecision]], $MachinePrecision]], $MachinePrecision] / N[(N[(N[Exp[w], $MachinePrecision] + 1.0), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{{\left(\ell \cdot {\left({\ell}^{w}\right)}^{\left(\mathsf{fma}\left(w, \mathsf{fma}\left(w, 0.020833333333333332, 0.125\right), 0.5\right)\right)}\right)}^{\left(\sqrt{e^{w}}\right)}}{\left(e^{w} + 1\right) + -1}
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
add-sqr-sqrt99.8%
pow-unpow99.8%
pow-to-exp94.9%
Applied egg-rr94.9%
exp-to-pow99.8%
Simplified99.8%
Taylor expanded in w around 0 99.8%
*-commutative99.8%
Simplified99.8%
+-commutative99.8%
unpow-prod-up99.9%
pow-unpow99.9%
+-commutative99.9%
fma-define99.9%
+-commutative99.9%
fma-define99.9%
pow199.9%
Applied egg-rr99.9%
expm1-log1p-u99.9%
expm1-undefine99.9%
log1p-undefine99.9%
rem-exp-log99.9%
Applied egg-rr99.9%
Final simplification99.9%
(FPCore (w l) :precision binary64 (/ (pow (* l (pow (pow l w) (+ 0.5 (* w (+ 0.125 (* w 0.020833333333333332)))))) (sqrt (exp w))) (exp w)))
double code(double w, double l) {
return pow((l * pow(pow(l, w), (0.5 + (w * (0.125 + (w * 0.020833333333333332)))))), sqrt(exp(w))) / exp(w);
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = ((l * ((l ** w) ** (0.5d0 + (w * (0.125d0 + (w * 0.020833333333333332d0)))))) ** sqrt(exp(w))) / exp(w)
end function
public static double code(double w, double l) {
return Math.pow((l * Math.pow(Math.pow(l, w), (0.5 + (w * (0.125 + (w * 0.020833333333333332)))))), Math.sqrt(Math.exp(w))) / Math.exp(w);
}
def code(w, l): return math.pow((l * math.pow(math.pow(l, w), (0.5 + (w * (0.125 + (w * 0.020833333333333332)))))), math.sqrt(math.exp(w))) / math.exp(w)
function code(w, l) return Float64((Float64(l * ((l ^ w) ^ Float64(0.5 + Float64(w * Float64(0.125 + Float64(w * 0.020833333333333332)))))) ^ sqrt(exp(w))) / exp(w)) end
function tmp = code(w, l) tmp = ((l * ((l ^ w) ^ (0.5 + (w * (0.125 + (w * 0.020833333333333332)))))) ^ sqrt(exp(w))) / exp(w); end
code[w_, l_] := N[(N[Power[N[(l * N[Power[N[Power[l, w], $MachinePrecision], N[(0.5 + N[(w * N[(0.125 + N[(w * 0.020833333333333332), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[Sqrt[N[Exp[w], $MachinePrecision]], $MachinePrecision]], $MachinePrecision] / N[Exp[w], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{{\left(\ell \cdot {\left({\ell}^{w}\right)}^{\left(0.5 + w \cdot \left(0.125 + w \cdot 0.020833333333333332\right)\right)}\right)}^{\left(\sqrt{e^{w}}\right)}}{e^{w}}
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
add-sqr-sqrt99.8%
pow-unpow99.8%
pow-to-exp94.9%
Applied egg-rr94.9%
exp-to-pow99.8%
Simplified99.8%
Taylor expanded in w around 0 99.8%
*-commutative99.8%
Simplified99.8%
+-commutative99.8%
unpow-prod-up99.9%
pow-unpow99.9%
+-commutative99.9%
fma-define99.9%
+-commutative99.9%
fma-define99.9%
pow199.9%
Applied egg-rr99.9%
Taylor expanded in w around 0 99.9%
Final simplification99.9%
(FPCore (w l) :precision binary64 (/ (pow (pow l (+ 1.0 (* w (+ 0.5 (* w (+ 0.125 (* w 0.020833333333333332))))))) (sqrt (exp w))) (+ (+ (exp w) 1.0) -1.0)))
double code(double w, double l) {
return pow(pow(l, (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))), sqrt(exp(w))) / ((exp(w) + 1.0) + -1.0);
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = ((l ** (1.0d0 + (w * (0.5d0 + (w * (0.125d0 + (w * 0.020833333333333332d0))))))) ** sqrt(exp(w))) / ((exp(w) + 1.0d0) + (-1.0d0))
end function
public static double code(double w, double l) {
return Math.pow(Math.pow(l, (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))), Math.sqrt(Math.exp(w))) / ((Math.exp(w) + 1.0) + -1.0);
}
def code(w, l): return math.pow(math.pow(l, (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))), math.sqrt(math.exp(w))) / ((math.exp(w) + 1.0) + -1.0)
function code(w, l) return Float64(((l ^ Float64(1.0 + Float64(w * Float64(0.5 + Float64(w * Float64(0.125 + Float64(w * 0.020833333333333332))))))) ^ sqrt(exp(w))) / Float64(Float64(exp(w) + 1.0) + -1.0)) end
function tmp = code(w, l) tmp = ((l ^ (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))) ^ sqrt(exp(w))) / ((exp(w) + 1.0) + -1.0); end
code[w_, l_] := N[(N[Power[N[Power[l, N[(1.0 + N[(w * N[(0.5 + N[(w * N[(0.125 + N[(w * 0.020833333333333332), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[Exp[w], $MachinePrecision]], $MachinePrecision]], $MachinePrecision] / N[(N[(N[Exp[w], $MachinePrecision] + 1.0), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{{\left({\ell}^{\left(1 + w \cdot \left(0.5 + w \cdot \left(0.125 + w \cdot 0.020833333333333332\right)\right)\right)}\right)}^{\left(\sqrt{e^{w}}\right)}}{\left(e^{w} + 1\right) + -1}
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
add-sqr-sqrt99.8%
pow-unpow99.8%
pow-to-exp94.9%
Applied egg-rr94.9%
exp-to-pow99.8%
Simplified99.8%
Taylor expanded in w around 0 99.8%
*-commutative99.8%
Simplified99.8%
expm1-log1p-u99.9%
expm1-undefine99.9%
log1p-undefine99.9%
rem-exp-log99.9%
Applied egg-rr99.8%
Final simplification99.8%
(FPCore (w l) :precision binary64 (/ (pow (pow l (+ 1.0 (* w (+ 0.5 (* w (+ 0.125 (* w 0.020833333333333332))))))) (sqrt (exp w))) (exp w)))
double code(double w, double l) {
return pow(pow(l, (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))), sqrt(exp(w))) / exp(w);
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = ((l ** (1.0d0 + (w * (0.5d0 + (w * (0.125d0 + (w * 0.020833333333333332d0))))))) ** sqrt(exp(w))) / exp(w)
end function
public static double code(double w, double l) {
return Math.pow(Math.pow(l, (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))), Math.sqrt(Math.exp(w))) / Math.exp(w);
}
def code(w, l): return math.pow(math.pow(l, (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))), math.sqrt(math.exp(w))) / math.exp(w)
function code(w, l) return Float64(((l ^ Float64(1.0 + Float64(w * Float64(0.5 + Float64(w * Float64(0.125 + Float64(w * 0.020833333333333332))))))) ^ sqrt(exp(w))) / exp(w)) end
function tmp = code(w, l) tmp = ((l ^ (1.0 + (w * (0.5 + (w * (0.125 + (w * 0.020833333333333332))))))) ^ sqrt(exp(w))) / exp(w); end
code[w_, l_] := N[(N[Power[N[Power[l, N[(1.0 + N[(w * N[(0.5 + N[(w * N[(0.125 + N[(w * 0.020833333333333332), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[Exp[w], $MachinePrecision]], $MachinePrecision]], $MachinePrecision] / N[Exp[w], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{{\left({\ell}^{\left(1 + w \cdot \left(0.5 + w \cdot \left(0.125 + w \cdot 0.020833333333333332\right)\right)\right)}\right)}^{\left(\sqrt{e^{w}}\right)}}{e^{w}}
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
add-sqr-sqrt99.8%
pow-unpow99.8%
pow-to-exp94.9%
Applied egg-rr94.9%
exp-to-pow99.8%
Simplified99.8%
Taylor expanded in w around 0 99.8%
*-commutative99.8%
Simplified99.8%
(FPCore (w l) :precision binary64 (/ (pow l (exp w)) (+ (+ (exp w) 1.0) -1.0)))
double code(double w, double l) {
return pow(l, exp(w)) / ((exp(w) + 1.0) + -1.0);
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = (l ** exp(w)) / ((exp(w) + 1.0d0) + (-1.0d0))
end function
public static double code(double w, double l) {
return Math.pow(l, Math.exp(w)) / ((Math.exp(w) + 1.0) + -1.0);
}
def code(w, l): return math.pow(l, math.exp(w)) / ((math.exp(w) + 1.0) + -1.0)
function code(w, l) return Float64((l ^ exp(w)) / Float64(Float64(exp(w) + 1.0) + -1.0)) end
function tmp = code(w, l) tmp = (l ^ exp(w)) / ((exp(w) + 1.0) + -1.0); end
code[w_, l_] := N[(N[Power[l, N[Exp[w], $MachinePrecision]], $MachinePrecision] / N[(N[(N[Exp[w], $MachinePrecision] + 1.0), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{{\ell}^{\left(e^{w}\right)}}{\left(e^{w} + 1\right) + -1}
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
expm1-log1p-u99.9%
expm1-undefine99.9%
log1p-undefine99.9%
rem-exp-log99.9%
Applied egg-rr99.8%
Final simplification99.8%
(FPCore (w l) :precision binary64 (/ (pow l (exp w)) (exp w)))
double code(double w, double l) {
return pow(l, exp(w)) / exp(w);
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = (l ** exp(w)) / exp(w)
end function
public static double code(double w, double l) {
return Math.pow(l, Math.exp(w)) / Math.exp(w);
}
def code(w, l): return math.pow(l, math.exp(w)) / math.exp(w)
function code(w, l) return Float64((l ^ exp(w)) / exp(w)) end
function tmp = code(w, l) tmp = (l ^ exp(w)) / exp(w); end
code[w_, l_] := N[(N[Power[l, N[Exp[w], $MachinePrecision]], $MachinePrecision] / N[Exp[w], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{{\ell}^{\left(e^{w}\right)}}{e^{w}}
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
(FPCore (w l) :precision binary64 (/ l (exp w)))
double code(double w, double l) {
return l / exp(w);
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = l / exp(w)
end function
public static double code(double w, double l) {
return l / Math.exp(w);
}
def code(w, l): return l / math.exp(w)
function code(w, l) return Float64(l / exp(w)) end
function tmp = code(w, l) tmp = l / exp(w); end
code[w_, l_] := N[(l / N[Exp[w], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{\ell}{e^{w}}
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
Taylor expanded in w around 0 99.0%
Taylor expanded in l around 0 99.0%
(FPCore (w l)
:precision binary64
(let* ((t_0 (- (* l 0.5) l)))
(if (<= w 0.106)
(-
l
(*
w
(+
l
(* w (- t_0 (* w (- t_0 (+ (* l -0.5) (* l 0.16666666666666666)))))))))
(* w (+ -1.0 (- 1.0 l))))))
double code(double w, double l) {
double t_0 = (l * 0.5) - l;
double tmp;
if (w <= 0.106) {
tmp = l - (w * (l + (w * (t_0 - (w * (t_0 - ((l * -0.5) + (l * 0.16666666666666666))))))));
} else {
tmp = w * (-1.0 + (1.0 - l));
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: t_0
real(8) :: tmp
t_0 = (l * 0.5d0) - l
if (w <= 0.106d0) then
tmp = l - (w * (l + (w * (t_0 - (w * (t_0 - ((l * (-0.5d0)) + (l * 0.16666666666666666d0))))))))
else
tmp = w * ((-1.0d0) + (1.0d0 - l))
end if
code = tmp
end function
public static double code(double w, double l) {
double t_0 = (l * 0.5) - l;
double tmp;
if (w <= 0.106) {
tmp = l - (w * (l + (w * (t_0 - (w * (t_0 - ((l * -0.5) + (l * 0.16666666666666666))))))));
} else {
tmp = w * (-1.0 + (1.0 - l));
}
return tmp;
}
def code(w, l): t_0 = (l * 0.5) - l tmp = 0 if w <= 0.106: tmp = l - (w * (l + (w * (t_0 - (w * (t_0 - ((l * -0.5) + (l * 0.16666666666666666)))))))) else: tmp = w * (-1.0 + (1.0 - l)) return tmp
function code(w, l) t_0 = Float64(Float64(l * 0.5) - l) tmp = 0.0 if (w <= 0.106) tmp = Float64(l - Float64(w * Float64(l + Float64(w * Float64(t_0 - Float64(w * Float64(t_0 - Float64(Float64(l * -0.5) + Float64(l * 0.16666666666666666))))))))); else tmp = Float64(w * Float64(-1.0 + Float64(1.0 - l))); end return tmp end
function tmp_2 = code(w, l) t_0 = (l * 0.5) - l; tmp = 0.0; if (w <= 0.106) tmp = l - (w * (l + (w * (t_0 - (w * (t_0 - ((l * -0.5) + (l * 0.16666666666666666)))))))); else tmp = w * (-1.0 + (1.0 - l)); end tmp_2 = tmp; end
code[w_, l_] := Block[{t$95$0 = N[(N[(l * 0.5), $MachinePrecision] - l), $MachinePrecision]}, If[LessEqual[w, 0.106], N[(l - N[(w * N[(l + N[(w * N[(t$95$0 - N[(w * N[(t$95$0 - N[(N[(l * -0.5), $MachinePrecision] + N[(l * 0.16666666666666666), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(w * N[(-1.0 + N[(1.0 - l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \ell \cdot 0.5 - \ell\\
\mathbf{if}\;w \leq 0.106:\\
\;\;\;\;\ell - w \cdot \left(\ell + w \cdot \left(t\_0 - w \cdot \left(t\_0 - \left(\ell \cdot -0.5 + \ell \cdot 0.16666666666666666\right)\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;w \cdot \left(-1 + \left(1 - \ell\right)\right)\\
\end{array}
\end{array}
if w < 0.105999999999999997Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
Taylor expanded in w around 0 98.8%
Taylor expanded in w around 0 89.6%
if 0.105999999999999997 < w Initial program 100.0%
exp-neg100.0%
remove-double-neg100.0%
associate-*l/100.0%
*-lft-identity100.0%
remove-double-neg100.0%
Simplified100.0%
Taylor expanded in w around 0 100.0%
Taylor expanded in w around 0 3.4%
mul-1-neg3.4%
unsub-neg3.4%
*-commutative3.4%
Simplified3.4%
Taylor expanded in w around inf 3.4%
neg-mul-13.4%
distribute-lft-neg-in3.4%
Simplified3.4%
expm1-log1p-u3.4%
expm1-undefine97.6%
Applied egg-rr97.6%
sub-neg97.6%
metadata-eval97.6%
+-commutative97.6%
log1p-undefine97.6%
rem-exp-log97.6%
unsub-neg97.6%
Simplified97.6%
Final simplification90.8%
(FPCore (w l) :precision binary64 (if (<= w 0.059) (- l (* w (+ l (* w (* l -0.5))))) (* w (+ -1.0 (- 1.0 l)))))
double code(double w, double l) {
double tmp;
if (w <= 0.059) {
tmp = l - (w * (l + (w * (l * -0.5))));
} else {
tmp = w * (-1.0 + (1.0 - l));
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= 0.059d0) then
tmp = l - (w * (l + (w * (l * (-0.5d0)))))
else
tmp = w * ((-1.0d0) + (1.0d0 - l))
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= 0.059) {
tmp = l - (w * (l + (w * (l * -0.5))));
} else {
tmp = w * (-1.0 + (1.0 - l));
}
return tmp;
}
def code(w, l): tmp = 0 if w <= 0.059: tmp = l - (w * (l + (w * (l * -0.5)))) else: tmp = w * (-1.0 + (1.0 - l)) return tmp
function code(w, l) tmp = 0.0 if (w <= 0.059) tmp = Float64(l - Float64(w * Float64(l + Float64(w * Float64(l * -0.5))))); else tmp = Float64(w * Float64(-1.0 + Float64(1.0 - l))); end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= 0.059) tmp = l - (w * (l + (w * (l * -0.5)))); else tmp = w * (-1.0 + (1.0 - l)); end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, 0.059], N[(l - N[(w * N[(l + N[(w * N[(l * -0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(w * N[(-1.0 + N[(1.0 - l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq 0.059:\\
\;\;\;\;\ell - w \cdot \left(\ell + w \cdot \left(\ell \cdot -0.5\right)\right)\\
\mathbf{else}:\\
\;\;\;\;w \cdot \left(-1 + \left(1 - \ell\right)\right)\\
\end{array}
\end{array}
if w < 0.058999999999999997Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
Taylor expanded in w around 0 98.8%
Taylor expanded in w around 0 83.8%
associate-*r*83.8%
neg-mul-183.8%
distribute-rgt-out83.8%
metadata-eval83.8%
Simplified83.8%
if 0.058999999999999997 < w Initial program 100.0%
exp-neg100.0%
remove-double-neg100.0%
associate-*l/100.0%
*-lft-identity100.0%
remove-double-neg100.0%
Simplified100.0%
Taylor expanded in w around 0 100.0%
Taylor expanded in w around 0 3.4%
mul-1-neg3.4%
unsub-neg3.4%
*-commutative3.4%
Simplified3.4%
Taylor expanded in w around inf 3.4%
neg-mul-13.4%
distribute-lft-neg-in3.4%
Simplified3.4%
expm1-log1p-u3.4%
expm1-undefine97.6%
Applied egg-rr97.6%
sub-neg97.6%
metadata-eval97.6%
+-commutative97.6%
log1p-undefine97.6%
rem-exp-log97.6%
unsub-neg97.6%
Simplified97.6%
Final simplification86.0%
(FPCore (w l) :precision binary64 (if (<= w 0.065) (- l (* l w)) (* w (+ -1.0 (- 1.0 l)))))
double code(double w, double l) {
double tmp;
if (w <= 0.065) {
tmp = l - (l * w);
} else {
tmp = w * (-1.0 + (1.0 - l));
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= 0.065d0) then
tmp = l - (l * w)
else
tmp = w * ((-1.0d0) + (1.0d0 - l))
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= 0.065) {
tmp = l - (l * w);
} else {
tmp = w * (-1.0 + (1.0 - l));
}
return tmp;
}
def code(w, l): tmp = 0 if w <= 0.065: tmp = l - (l * w) else: tmp = w * (-1.0 + (1.0 - l)) return tmp
function code(w, l) tmp = 0.0 if (w <= 0.065) tmp = Float64(l - Float64(l * w)); else tmp = Float64(w * Float64(-1.0 + Float64(1.0 - l))); end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= 0.065) tmp = l - (l * w); else tmp = w * (-1.0 + (1.0 - l)); end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, 0.065], N[(l - N[(l * w), $MachinePrecision]), $MachinePrecision], N[(w * N[(-1.0 + N[(1.0 - l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq 0.065:\\
\;\;\;\;\ell - \ell \cdot w\\
\mathbf{else}:\\
\;\;\;\;w \cdot \left(-1 + \left(1 - \ell\right)\right)\\
\end{array}
\end{array}
if w < 0.065000000000000002Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
Taylor expanded in w around 0 98.8%
Taylor expanded in w around 0 73.7%
mul-1-neg73.7%
unsub-neg73.7%
*-commutative73.7%
Simplified73.7%
if 0.065000000000000002 < w Initial program 100.0%
exp-neg100.0%
remove-double-neg100.0%
associate-*l/100.0%
*-lft-identity100.0%
remove-double-neg100.0%
Simplified100.0%
Taylor expanded in w around 0 100.0%
Taylor expanded in w around 0 3.4%
mul-1-neg3.4%
unsub-neg3.4%
*-commutative3.4%
Simplified3.4%
Taylor expanded in w around inf 3.4%
neg-mul-13.4%
distribute-lft-neg-in3.4%
Simplified3.4%
expm1-log1p-u3.4%
expm1-undefine97.6%
Applied egg-rr97.6%
sub-neg97.6%
metadata-eval97.6%
+-commutative97.6%
log1p-undefine97.6%
rem-exp-log97.6%
unsub-neg97.6%
Simplified97.6%
Final simplification77.4%
(FPCore (w l) :precision binary64 (if (<= w -0.41) (* l (- w)) l))
double code(double w, double l) {
double tmp;
if (w <= -0.41) {
tmp = l * -w;
} else {
tmp = l;
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= (-0.41d0)) then
tmp = l * -w
else
tmp = l
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= -0.41) {
tmp = l * -w;
} else {
tmp = l;
}
return tmp;
}
def code(w, l): tmp = 0 if w <= -0.41: tmp = l * -w else: tmp = l return tmp
function code(w, l) tmp = 0.0 if (w <= -0.41) tmp = Float64(l * Float64(-w)); else tmp = l; end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= -0.41) tmp = l * -w; else tmp = l; end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, -0.41], N[(l * (-w)), $MachinePrecision], l]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -0.41:\\
\;\;\;\;\ell \cdot \left(-w\right)\\
\mathbf{else}:\\
\;\;\;\;\ell\\
\end{array}
\end{array}
if w < -0.409999999999999976Initial program 100.0%
exp-neg100.0%
remove-double-neg100.0%
associate-*l/100.0%
*-lft-identity100.0%
remove-double-neg100.0%
Simplified100.0%
Taylor expanded in w around 0 100.0%
Taylor expanded in w around 0 23.4%
mul-1-neg23.4%
unsub-neg23.4%
*-commutative23.4%
Simplified23.4%
Taylor expanded in w around inf 23.4%
neg-mul-123.4%
distribute-lft-neg-in23.4%
Simplified23.4%
if -0.409999999999999976 < w Initial program 99.7%
exp-neg99.7%
remove-double-neg99.7%
associate-*l/99.7%
*-lft-identity99.7%
remove-double-neg99.7%
Simplified99.7%
Taylor expanded in w around 0 78.1%
Final simplification63.0%
(FPCore (w l) :precision binary64 (- l (* l w)))
double code(double w, double l) {
return l - (l * w);
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = l - (l * w)
end function
public static double code(double w, double l) {
return l - (l * w);
}
def code(w, l): return l - (l * w)
function code(w, l) return Float64(l - Float64(l * w)) end
function tmp = code(w, l) tmp = l - (l * w); end
code[w_, l_] := N[(l - N[(l * w), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\ell - \ell \cdot w
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
Taylor expanded in w around 0 99.0%
Taylor expanded in w around 0 62.7%
mul-1-neg62.7%
unsub-neg62.7%
*-commutative62.7%
Simplified62.7%
Final simplification62.7%
(FPCore (w l) :precision binary64 l)
double code(double w, double l) {
return l;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = l
end function
public static double code(double w, double l) {
return l;
}
def code(w, l): return l
function code(w, l) return l end
function tmp = code(w, l) tmp = l; end
code[w_, l_] := l
\begin{array}{l}
\\
\ell
\end{array}
Initial program 99.8%
exp-neg99.8%
remove-double-neg99.8%
associate-*l/99.8%
*-lft-identity99.8%
remove-double-neg99.8%
Simplified99.8%
Taylor expanded in w around 0 57.4%
herbie shell --seed 2024158
(FPCore (w l)
:name "exp-w (used to crash)"
:precision binary64
(* (exp (- w)) (pow l (exp w))))