
(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 18 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 (exp w)) (exp (- 0.0 w))))
double code(double w, double l) {
return pow(l, exp(w)) * exp((0.0 - w));
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = (l ** exp(w)) * exp((0.0d0 - w))
end function
public static double code(double w, double l) {
return Math.pow(l, Math.exp(w)) * Math.exp((0.0 - w));
}
def code(w, l): return math.pow(l, math.exp(w)) * math.exp((0.0 - w))
function code(w, l) return Float64((l ^ exp(w)) * exp(Float64(0.0 - w))) end
function tmp = code(w, l) tmp = (l ^ exp(w)) * exp((0.0 - w)); end
code[w_, l_] := N[(N[Power[l, N[Exp[w], $MachinePrecision]], $MachinePrecision] * N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
{\ell}^{\left(e^{w}\right)} \cdot e^{0 - w}
\end{array}
Initial program 99.6%
Final simplification99.6%
(FPCore (w l) :precision binary64 (if (<= w 3.1e-17) (/ l (exp w)) (exp (- (* (exp w) (log l)) w))))
double code(double w, double l) {
double tmp;
if (w <= 3.1e-17) {
tmp = l / exp(w);
} else {
tmp = exp(((exp(w) * log(l)) - w));
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= 3.1d-17) then
tmp = l / exp(w)
else
tmp = exp(((exp(w) * log(l)) - w))
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= 3.1e-17) {
tmp = l / Math.exp(w);
} else {
tmp = Math.exp(((Math.exp(w) * Math.log(l)) - w));
}
return tmp;
}
def code(w, l): tmp = 0 if w <= 3.1e-17: tmp = l / math.exp(w) else: tmp = math.exp(((math.exp(w) * math.log(l)) - w)) return tmp
function code(w, l) tmp = 0.0 if (w <= 3.1e-17) tmp = Float64(l / exp(w)); else tmp = exp(Float64(Float64(exp(w) * log(l)) - w)); end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= 3.1e-17) tmp = l / exp(w); else tmp = exp(((exp(w) * log(l)) - w)); end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, 3.1e-17], N[(l / N[Exp[w], $MachinePrecision]), $MachinePrecision], N[Exp[N[(N[(N[Exp[w], $MachinePrecision] * N[Log[l], $MachinePrecision]), $MachinePrecision] - w), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq 3.1 \cdot 10^{-17}:\\
\;\;\;\;\frac{\ell}{e^{w}}\\
\mathbf{else}:\\
\;\;\;\;e^{e^{w} \cdot \log \ell - w}\\
\end{array}
\end{array}
if w < 3.0999999999999998e-17Initial program 99.9%
Taylor expanded in w around 0
Simplified99.3%
*-commutativeN/A
exp-negN/A
un-div-invN/A
/-lowering-/.f64N/A
exp-lowering-exp.f6499.3%
Applied egg-rr99.3%
if 3.0999999999999998e-17 < w Initial program 98.7%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified98.8%
+-rgt-identityN/A
*-lowering-*.f64N/A
log-lowering-log.f64N/A
exp-lowering-exp.f6498.8%
Applied egg-rr98.8%
Final simplification99.2%
(FPCore (w l) :precision binary64 (if (<= w -4.5) (exp (- 0.0 w)) (* (pow l (exp w)) (- 1.0 w))))
double code(double w, double l) {
double tmp;
if (w <= -4.5) {
tmp = exp((0.0 - w));
} else {
tmp = pow(l, exp(w)) * (1.0 - w);
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= (-4.5d0)) then
tmp = exp((0.0d0 - w))
else
tmp = (l ** exp(w)) * (1.0d0 - w)
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= -4.5) {
tmp = Math.exp((0.0 - w));
} else {
tmp = Math.pow(l, Math.exp(w)) * (1.0 - w);
}
return tmp;
}
def code(w, l): tmp = 0 if w <= -4.5: tmp = math.exp((0.0 - w)) else: tmp = math.pow(l, math.exp(w)) * (1.0 - w) return tmp
function code(w, l) tmp = 0.0 if (w <= -4.5) tmp = exp(Float64(0.0 - w)); else tmp = Float64((l ^ exp(w)) * Float64(1.0 - w)); end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= -4.5) tmp = exp((0.0 - w)); else tmp = (l ^ exp(w)) * (1.0 - w); end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, -4.5], N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision], N[(N[Power[l, N[Exp[w], $MachinePrecision]], $MachinePrecision] * N[(1.0 - w), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -4.5:\\
\;\;\;\;e^{0 - w}\\
\mathbf{else}:\\
\;\;\;\;{\ell}^{\left(e^{w}\right)} \cdot \left(1 - w\right)\\
\end{array}
\end{array}
if w < -4.5Initial program 100.0%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified100.0%
Taylor expanded in w around inf
mul-1-negN/A
neg-sub0N/A
--lowering--.f64100.0%
Simplified100.0%
if -4.5 < w Initial program 99.5%
Taylor expanded in w around 0
neg-mul-1N/A
unsub-negN/A
--lowering--.f6498.8%
Simplified98.8%
Final simplification99.2%
(FPCore (w l)
:precision binary64
(if (<= w -1500.0)
(exp (- 0.0 w))
(*
(- 1.0 w)
(pow l (fma w (fma w (fma w 0.16666666666666666 0.5) 1.0) 1.0)))))
double code(double w, double l) {
double tmp;
if (w <= -1500.0) {
tmp = exp((0.0 - w));
} else {
tmp = (1.0 - w) * pow(l, fma(w, fma(w, fma(w, 0.16666666666666666, 0.5), 1.0), 1.0));
}
return tmp;
}
function code(w, l) tmp = 0.0 if (w <= -1500.0) tmp = exp(Float64(0.0 - w)); else tmp = Float64(Float64(1.0 - w) * (l ^ fma(w, fma(w, fma(w, 0.16666666666666666, 0.5), 1.0), 1.0))); end return tmp end
code[w_, l_] := If[LessEqual[w, -1500.0], N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision], N[(N[(1.0 - w), $MachinePrecision] * N[Power[l, N[(w * N[(w * N[(w * 0.16666666666666666 + 0.5), $MachinePrecision] + 1.0), $MachinePrecision] + 1.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -1500:\\
\;\;\;\;e^{0 - w}\\
\mathbf{else}:\\
\;\;\;\;\left(1 - w\right) \cdot {\ell}^{\left(\mathsf{fma}\left(w, \mathsf{fma}\left(w, \mathsf{fma}\left(w, 0.16666666666666666, 0.5\right), 1\right), 1\right)\right)}\\
\end{array}
\end{array}
if w < -1500Initial program 100.0%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified100.0%
Taylor expanded in w around inf
mul-1-negN/A
neg-sub0N/A
--lowering--.f64100.0%
Simplified100.0%
if -1500 < w Initial program 99.5%
Taylor expanded in w around 0
neg-mul-1N/A
unsub-negN/A
--lowering--.f6498.3%
Simplified98.3%
Taylor expanded in w around 0
+-commutativeN/A
accelerator-lowering-fma.f64N/A
+-commutativeN/A
accelerator-lowering-fma.f64N/A
+-commutativeN/A
*-commutativeN/A
accelerator-lowering-fma.f6498.8%
Simplified98.8%
(FPCore (w l) :precision binary64 (if (<= w -1.3) (exp (- 0.0 w)) (* (- 1.0 w) (pow l (fma w (fma w 0.5 1.0) 1.0)))))
double code(double w, double l) {
double tmp;
if (w <= -1.3) {
tmp = exp((0.0 - w));
} else {
tmp = (1.0 - w) * pow(l, fma(w, fma(w, 0.5, 1.0), 1.0));
}
return tmp;
}
function code(w, l) tmp = 0.0 if (w <= -1.3) tmp = exp(Float64(0.0 - w)); else tmp = Float64(Float64(1.0 - w) * (l ^ fma(w, fma(w, 0.5, 1.0), 1.0))); end return tmp end
code[w_, l_] := If[LessEqual[w, -1.3], N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision], N[(N[(1.0 - w), $MachinePrecision] * N[Power[l, N[(w * N[(w * 0.5 + 1.0), $MachinePrecision] + 1.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -1.3:\\
\;\;\;\;e^{0 - w}\\
\mathbf{else}:\\
\;\;\;\;\left(1 - w\right) \cdot {\ell}^{\left(\mathsf{fma}\left(w, \mathsf{fma}\left(w, 0.5, 1\right), 1\right)\right)}\\
\end{array}
\end{array}
if w < -1.30000000000000004Initial program 100.0%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified100.0%
Taylor expanded in w around inf
mul-1-negN/A
neg-sub0N/A
--lowering--.f64100.0%
Simplified100.0%
if -1.30000000000000004 < w Initial program 99.5%
Taylor expanded in w around 0
neg-mul-1N/A
unsub-negN/A
--lowering--.f6498.8%
Simplified98.8%
Taylor expanded in w around 0
+-commutativeN/A
accelerator-lowering-fma.f64N/A
+-commutativeN/A
*-commutativeN/A
accelerator-lowering-fma.f6498.8%
Simplified98.8%
(FPCore (w l) :precision binary64 (if (<= w -1500.0) (exp (- 0.0 w)) (* (- 1.0 w) (* l (pow l w)))))
double code(double w, double l) {
double tmp;
if (w <= -1500.0) {
tmp = exp((0.0 - w));
} else {
tmp = (1.0 - w) * (l * pow(l, w));
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= (-1500.0d0)) then
tmp = exp((0.0d0 - w))
else
tmp = (1.0d0 - w) * (l * (l ** w))
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= -1500.0) {
tmp = Math.exp((0.0 - w));
} else {
tmp = (1.0 - w) * (l * Math.pow(l, w));
}
return tmp;
}
def code(w, l): tmp = 0 if w <= -1500.0: tmp = math.exp((0.0 - w)) else: tmp = (1.0 - w) * (l * math.pow(l, w)) return tmp
function code(w, l) tmp = 0.0 if (w <= -1500.0) tmp = exp(Float64(0.0 - w)); else tmp = Float64(Float64(1.0 - w) * Float64(l * (l ^ w))); end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= -1500.0) tmp = exp((0.0 - w)); else tmp = (1.0 - w) * (l * (l ^ w)); end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, -1500.0], N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision], N[(N[(1.0 - w), $MachinePrecision] * N[(l * N[Power[l, w], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -1500:\\
\;\;\;\;e^{0 - w}\\
\mathbf{else}:\\
\;\;\;\;\left(1 - w\right) \cdot \left(\ell \cdot {\ell}^{w}\right)\\
\end{array}
\end{array}
if w < -1500Initial program 100.0%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified100.0%
Taylor expanded in w around inf
mul-1-negN/A
neg-sub0N/A
--lowering--.f64100.0%
Simplified100.0%
if -1500 < w Initial program 99.5%
Taylor expanded in w around 0
neg-mul-1N/A
unsub-negN/A
--lowering--.f6498.3%
Simplified98.3%
Taylor expanded in w around 0
+-lowering-+.f6498.0%
Simplified98.0%
+-commutativeN/A
pow-plusN/A
*-lowering-*.f64N/A
pow-lowering-pow.f6498.3%
Applied egg-rr98.3%
Final simplification98.8%
(FPCore (w l) :precision binary64 (if (<= w -1500.0) (exp (- 0.0 w)) (* l (* (- 1.0 w) (pow l w)))))
double code(double w, double l) {
double tmp;
if (w <= -1500.0) {
tmp = exp((0.0 - w));
} else {
tmp = l * ((1.0 - w) * pow(l, w));
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= (-1500.0d0)) then
tmp = exp((0.0d0 - w))
else
tmp = l * ((1.0d0 - w) * (l ** w))
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= -1500.0) {
tmp = Math.exp((0.0 - w));
} else {
tmp = l * ((1.0 - w) * Math.pow(l, w));
}
return tmp;
}
def code(w, l): tmp = 0 if w <= -1500.0: tmp = math.exp((0.0 - w)) else: tmp = l * ((1.0 - w) * math.pow(l, w)) return tmp
function code(w, l) tmp = 0.0 if (w <= -1500.0) tmp = exp(Float64(0.0 - w)); else tmp = Float64(l * Float64(Float64(1.0 - w) * (l ^ w))); end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= -1500.0) tmp = exp((0.0 - w)); else tmp = l * ((1.0 - w) * (l ^ w)); end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, -1500.0], N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision], N[(l * N[(N[(1.0 - w), $MachinePrecision] * N[Power[l, w], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -1500:\\
\;\;\;\;e^{0 - w}\\
\mathbf{else}:\\
\;\;\;\;\ell \cdot \left(\left(1 - w\right) \cdot {\ell}^{w}\right)\\
\end{array}
\end{array}
if w < -1500Initial program 100.0%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified100.0%
Taylor expanded in w around inf
mul-1-negN/A
neg-sub0N/A
--lowering--.f64100.0%
Simplified100.0%
if -1500 < w Initial program 99.5%
Taylor expanded in w around 0
neg-mul-1N/A
unsub-negN/A
--lowering--.f6498.3%
Simplified98.3%
Taylor expanded in w around 0
+-lowering-+.f6498.0%
Simplified98.0%
*-commutativeN/A
unpow-prod-upN/A
unpow1N/A
associate-*l*N/A
*-lowering-*.f64N/A
*-lowering-*.f64N/A
pow-lowering-pow.f64N/A
--lowering--.f6498.3%
Applied egg-rr98.3%
Final simplification98.8%
(FPCore (w l) :precision binary64 (if (<= w -1500.0) (exp (- 0.0 w)) (* (- 1.0 w) (pow l (+ w 1.0)))))
double code(double w, double l) {
double tmp;
if (w <= -1500.0) {
tmp = exp((0.0 - w));
} else {
tmp = (1.0 - w) * pow(l, (w + 1.0));
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= (-1500.0d0)) then
tmp = exp((0.0d0 - w))
else
tmp = (1.0d0 - w) * (l ** (w + 1.0d0))
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= -1500.0) {
tmp = Math.exp((0.0 - w));
} else {
tmp = (1.0 - w) * Math.pow(l, (w + 1.0));
}
return tmp;
}
def code(w, l): tmp = 0 if w <= -1500.0: tmp = math.exp((0.0 - w)) else: tmp = (1.0 - w) * math.pow(l, (w + 1.0)) return tmp
function code(w, l) tmp = 0.0 if (w <= -1500.0) tmp = exp(Float64(0.0 - w)); else tmp = Float64(Float64(1.0 - w) * (l ^ Float64(w + 1.0))); end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= -1500.0) tmp = exp((0.0 - w)); else tmp = (1.0 - w) * (l ^ (w + 1.0)); end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, -1500.0], N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision], N[(N[(1.0 - w), $MachinePrecision] * N[Power[l, N[(w + 1.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -1500:\\
\;\;\;\;e^{0 - w}\\
\mathbf{else}:\\
\;\;\;\;\left(1 - w\right) \cdot {\ell}^{\left(w + 1\right)}\\
\end{array}
\end{array}
if w < -1500Initial program 100.0%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified100.0%
Taylor expanded in w around inf
mul-1-negN/A
neg-sub0N/A
--lowering--.f64100.0%
Simplified100.0%
if -1500 < w Initial program 99.5%
Taylor expanded in w around 0
neg-mul-1N/A
unsub-negN/A
--lowering--.f6498.3%
Simplified98.3%
Taylor expanded in w around 0
+-lowering-+.f6498.0%
Simplified98.0%
Final simplification98.6%
(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.6%
Taylor expanded in w around 0
Simplified97.0%
*-commutativeN/A
exp-negN/A
un-div-invN/A
/-lowering-/.f64N/A
exp-lowering-exp.f6497.0%
Applied egg-rr97.0%
(FPCore (w l)
:precision binary64
(if (<= w -0.7)
(exp (- 0.0 w))
(if (<= w 0.18)
(* l (/ (+ 1.0 (* w (fma w w 0.0))) (+ 1.0 (- (fma w w 0.0) w))))
0.0)))
double code(double w, double l) {
double tmp;
if (w <= -0.7) {
tmp = exp((0.0 - w));
} else if (w <= 0.18) {
tmp = l * ((1.0 + (w * fma(w, w, 0.0))) / (1.0 + (fma(w, w, 0.0) - w)));
} else {
tmp = 0.0;
}
return tmp;
}
function code(w, l) tmp = 0.0 if (w <= -0.7) tmp = exp(Float64(0.0 - w)); elseif (w <= 0.18) tmp = Float64(l * Float64(Float64(1.0 + Float64(w * fma(w, w, 0.0))) / Float64(1.0 + Float64(fma(w, w, 0.0) - w)))); else tmp = 0.0; end return tmp end
code[w_, l_] := If[LessEqual[w, -0.7], N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision], If[LessEqual[w, 0.18], N[(l * N[(N[(1.0 + N[(w * N[(w * w + 0.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(N[(w * w + 0.0), $MachinePrecision] - w), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.0]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -0.7:\\
\;\;\;\;e^{0 - w}\\
\mathbf{elif}\;w \leq 0.18:\\
\;\;\;\;\ell \cdot \frac{1 + w \cdot \mathsf{fma}\left(w, w, 0\right)}{1 + \left(\mathsf{fma}\left(w, w, 0\right) - w\right)}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\end{array}
if w < -0.69999999999999996Initial program 100.0%
Taylor expanded in w around inf
*-commutativeN/A
exp-to-powN/A
remove-double-negN/A
distribute-lft-neg-outN/A
log-recN/A
*-commutativeN/A
mul-1-negN/A
+-rgt-identityN/A
exp-sumN/A
+-rgt-identityN/A
+-commutativeN/A
exp-lowering-exp.f64N/A
+-commutativeN/A
unsub-negN/A
--lowering--.f64N/A
Simplified100.0%
Taylor expanded in w around inf
mul-1-negN/A
neg-sub0N/A
--lowering--.f64100.0%
Simplified100.0%
if -0.69999999999999996 < w < 0.17999999999999999Initial program 99.3%
Taylor expanded in w around 0
Simplified96.5%
Taylor expanded in w around 0
neg-mul-1N/A
sub-negN/A
--lowering--.f6496.5%
Simplified96.5%
Applied egg-rr96.6%
if 0.17999999999999999 < w Initial program 100.0%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr100.0%
Final simplification98.2%
(FPCore (w l) :precision binary64 (* l (exp (- 0.0 w))))
double code(double w, double l) {
return l * exp((0.0 - w));
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = l * exp((0.0d0 - w))
end function
public static double code(double w, double l) {
return l * Math.exp((0.0 - w));
}
def code(w, l): return l * math.exp((0.0 - w))
function code(w, l) return Float64(l * exp(Float64(0.0 - w))) end
function tmp = code(w, l) tmp = l * exp((0.0 - w)); end
code[w_, l_] := N[(l * N[Exp[N[(0.0 - w), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\ell \cdot e^{0 - w}
\end{array}
Initial program 99.6%
Taylor expanded in w around 0
Simplified97.0%
Final simplification97.0%
(FPCore (w l)
:precision binary64
(if (<= w -2e+103)
(* l (* -0.16666666666666666 (* w (* w w))))
(if (<= w 0.1)
(*
l
(fma
(fma
(* (* w w) (* w (* w (fma w -0.16666666666666666 0.5))))
(fma w -0.16666666666666666 0.5)
-1.0)
(/ 1.0 (fma (fma w -0.16666666666666666 0.5) (* w w) -1.0))
(- 0.0 w)))
0.0)))
double code(double w, double l) {
double tmp;
if (w <= -2e+103) {
tmp = l * (-0.16666666666666666 * (w * (w * w)));
} else if (w <= 0.1) {
tmp = l * fma(fma(((w * w) * (w * (w * fma(w, -0.16666666666666666, 0.5)))), fma(w, -0.16666666666666666, 0.5), -1.0), (1.0 / fma(fma(w, -0.16666666666666666, 0.5), (w * w), -1.0)), (0.0 - w));
} else {
tmp = 0.0;
}
return tmp;
}
function code(w, l) tmp = 0.0 if (w <= -2e+103) tmp = Float64(l * Float64(-0.16666666666666666 * Float64(w * Float64(w * w)))); elseif (w <= 0.1) tmp = Float64(l * fma(fma(Float64(Float64(w * w) * Float64(w * Float64(w * fma(w, -0.16666666666666666, 0.5)))), fma(w, -0.16666666666666666, 0.5), -1.0), Float64(1.0 / fma(fma(w, -0.16666666666666666, 0.5), Float64(w * w), -1.0)), Float64(0.0 - w))); else tmp = 0.0; end return tmp end
code[w_, l_] := If[LessEqual[w, -2e+103], N[(l * N[(-0.16666666666666666 * N[(w * N[(w * w), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[w, 0.1], N[(l * N[(N[(N[(N[(w * w), $MachinePrecision] * N[(w * N[(w * N[(w * -0.16666666666666666 + 0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(w * -0.16666666666666666 + 0.5), $MachinePrecision] + -1.0), $MachinePrecision] * N[(1.0 / N[(N[(w * -0.16666666666666666 + 0.5), $MachinePrecision] * N[(w * w), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision] + N[(0.0 - w), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.0]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -2 \cdot 10^{+103}:\\
\;\;\;\;\ell \cdot \left(-0.16666666666666666 \cdot \left(w \cdot \left(w \cdot w\right)\right)\right)\\
\mathbf{elif}\;w \leq 0.1:\\
\;\;\;\;\ell \cdot \mathsf{fma}\left(\mathsf{fma}\left(\left(w \cdot w\right) \cdot \left(w \cdot \left(w \cdot \mathsf{fma}\left(w, -0.16666666666666666, 0.5\right)\right)\right), \mathsf{fma}\left(w, -0.16666666666666666, 0.5\right), -1\right), \frac{1}{\mathsf{fma}\left(\mathsf{fma}\left(w, -0.16666666666666666, 0.5\right), w \cdot w, -1\right)}, 0 - w\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\end{array}
if w < -2e103Initial program 100.0%
Taylor expanded in w around 0
Simplified100.0%
*-commutativeN/A
exp-negN/A
un-div-invN/A
/-lowering-/.f64N/A
exp-lowering-exp.f64100.0%
Applied egg-rr100.0%
Taylor expanded in w around 0
Simplified90.5%
Taylor expanded in w around inf
associate-*r*N/A
*-commutativeN/A
associate-*l*N/A
*-lowering-*.f64N/A
*-lowering-*.f64N/A
cube-multN/A
unpow2N/A
*-lowering-*.f64N/A
unpow2N/A
*-lowering-*.f64100.0%
Simplified100.0%
if -2e103 < w < 0.10000000000000001Initial program 99.4%
Taylor expanded in w around 0
+-commutativeN/A
accelerator-lowering-fma.f64N/A
sub-negN/A
metadata-evalN/A
accelerator-lowering-fma.f64N/A
+-commutativeN/A
*-commutativeN/A
accelerator-lowering-fma.f6483.0%
Simplified83.0%
distribute-rgt-inN/A
neg-mul-1N/A
associate-+l+N/A
*-commutativeN/A
associate-*l*N/A
+-commutativeN/A
sub-negN/A
accelerator-lowering-fma.f64N/A
accelerator-lowering-fma.f64N/A
*-lowering-*.f64N/A
--lowering--.f6483.0%
Applied egg-rr83.0%
associate-+r-N/A
sub-negN/A
flip-+N/A
div-invN/A
accelerator-lowering-fma.f64N/A
Applied egg-rr90.3%
Taylor expanded in w around 0
Simplified89.0%
if 0.10000000000000001 < w Initial program 100.0%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr100.0%
Final simplification92.9%
(FPCore (w l) :precision binary64 (if (<= w 0.115) (* l (fma w (fma w (fma w -0.16666666666666666 0.5) -1.0) 1.0)) 0.0))
double code(double w, double l) {
double tmp;
if (w <= 0.115) {
tmp = l * fma(w, fma(w, fma(w, -0.16666666666666666, 0.5), -1.0), 1.0);
} else {
tmp = 0.0;
}
return tmp;
}
function code(w, l) tmp = 0.0 if (w <= 0.115) tmp = Float64(l * fma(w, fma(w, fma(w, -0.16666666666666666, 0.5), -1.0), 1.0)); else tmp = 0.0; end return tmp end
code[w_, l_] := If[LessEqual[w, 0.115], N[(l * N[(w * N[(w * N[(w * -0.16666666666666666 + 0.5), $MachinePrecision] + -1.0), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], 0.0]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq 0.115:\\
\;\;\;\;\ell \cdot \mathsf{fma}\left(w, \mathsf{fma}\left(w, \mathsf{fma}\left(w, -0.16666666666666666, 0.5\right), -1\right), 1\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\end{array}
if w < 0.115000000000000005Initial program 99.6%
Taylor expanded in w around 0
Simplified97.8%
Taylor expanded in w around 0
+-commutativeN/A
accelerator-lowering-fma.f64N/A
sub-negN/A
metadata-evalN/A
accelerator-lowering-fma.f64N/A
+-commutativeN/A
*-commutativeN/A
accelerator-lowering-fma.f6487.5%
Simplified87.5%
if 0.115000000000000005 < w Initial program 100.0%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr100.0%
Final simplification89.5%
(FPCore (w l) :precision binary64 (if (<= w -0.023) (* l (* -0.16666666666666666 (* w (* w w)))) (if (<= w 0.13) (* l (+ w 1.0)) 0.0)))
double code(double w, double l) {
double tmp;
if (w <= -0.023) {
tmp = l * (-0.16666666666666666 * (w * (w * w)));
} else if (w <= 0.13) {
tmp = l * (w + 1.0);
} else {
tmp = 0.0;
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= (-0.023d0)) then
tmp = l * ((-0.16666666666666666d0) * (w * (w * w)))
else if (w <= 0.13d0) then
tmp = l * (w + 1.0d0)
else
tmp = 0.0d0
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= -0.023) {
tmp = l * (-0.16666666666666666 * (w * (w * w)));
} else if (w <= 0.13) {
tmp = l * (w + 1.0);
} else {
tmp = 0.0;
}
return tmp;
}
def code(w, l): tmp = 0 if w <= -0.023: tmp = l * (-0.16666666666666666 * (w * (w * w))) elif w <= 0.13: tmp = l * (w + 1.0) else: tmp = 0.0 return tmp
function code(w, l) tmp = 0.0 if (w <= -0.023) tmp = Float64(l * Float64(-0.16666666666666666 * Float64(w * Float64(w * w)))); elseif (w <= 0.13) tmp = Float64(l * Float64(w + 1.0)); else tmp = 0.0; end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= -0.023) tmp = l * (-0.16666666666666666 * (w * (w * w))); elseif (w <= 0.13) tmp = l * (w + 1.0); else tmp = 0.0; end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, -0.023], N[(l * N[(-0.16666666666666666 * N[(w * N[(w * w), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[w, 0.13], N[(l * N[(w + 1.0), $MachinePrecision]), $MachinePrecision], 0.0]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq -0.023:\\
\;\;\;\;\ell \cdot \left(-0.16666666666666666 \cdot \left(w \cdot \left(w \cdot w\right)\right)\right)\\
\mathbf{elif}\;w \leq 0.13:\\
\;\;\;\;\ell \cdot \left(w + 1\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\end{array}
if w < -0.023Initial program 100.0%
Taylor expanded in w around 0
Simplified100.0%
*-commutativeN/A
exp-negN/A
un-div-invN/A
/-lowering-/.f64N/A
exp-lowering-exp.f64100.0%
Applied egg-rr100.0%
Taylor expanded in w around 0
Simplified65.3%
Taylor expanded in w around inf
associate-*r*N/A
*-commutativeN/A
associate-*l*N/A
*-lowering-*.f64N/A
*-lowering-*.f64N/A
cube-multN/A
unpow2N/A
*-lowering-*.f64N/A
unpow2N/A
*-lowering-*.f6471.4%
Simplified71.4%
if -0.023 < w < 0.13Initial program 99.3%
Taylor expanded in w around 0
Simplified96.5%
Taylor expanded in w around 0
neg-mul-1N/A
sub-negN/A
--lowering--.f6496.5%
Simplified96.5%
sub-negN/A
sub0-negN/A
flip3--N/A
metadata-evalN/A
sub0-negN/A
cube-negN/A
sub0-negN/A
sqr-powN/A
pow-prod-downN/A
sub0-negN/A
sub0-negN/A
sqr-negN/A
pow-prod-downN/A
sqr-powN/A
metadata-evalN/A
+-lft-identityN/A
distribute-rgt-outN/A
+-commutativeN/A
+-lft-identityN/A
pow2N/A
pow-divN/A
metadata-evalN/A
unpow1N/A
Applied egg-rr96.6%
if 0.13 < w Initial program 100.0%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr100.0%
Final simplification89.5%
(FPCore (w l) :precision binary64 (if (<= w 0.085) (* l (fma w (fma w 0.5 -1.0) 1.0)) 0.0))
double code(double w, double l) {
double tmp;
if (w <= 0.085) {
tmp = l * fma(w, fma(w, 0.5, -1.0), 1.0);
} else {
tmp = 0.0;
}
return tmp;
}
function code(w, l) tmp = 0.0 if (w <= 0.085) tmp = Float64(l * fma(w, fma(w, 0.5, -1.0), 1.0)); else tmp = 0.0; end return tmp end
code[w_, l_] := If[LessEqual[w, 0.085], N[(l * N[(w * N[(w * 0.5 + -1.0), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], 0.0]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq 0.085:\\
\;\;\;\;\ell \cdot \mathsf{fma}\left(w, \mathsf{fma}\left(w, 0.5, -1\right), 1\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\end{array}
if w < 0.0850000000000000061Initial program 99.6%
Taylor expanded in w around 0
Simplified97.8%
Taylor expanded in w around 0
+-commutativeN/A
accelerator-lowering-fma.f64N/A
sub-negN/A
*-commutativeN/A
metadata-evalN/A
accelerator-lowering-fma.f6484.3%
Simplified84.3%
if 0.0850000000000000061 < w Initial program 100.0%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr100.0%
Final simplification86.9%
(FPCore (w l) :precision binary64 (if (<= w 0.075) (* l (- 1.0 w)) 0.0))
double code(double w, double l) {
double tmp;
if (w <= 0.075) {
tmp = l * (1.0 - w);
} else {
tmp = 0.0;
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= 0.075d0) then
tmp = l * (1.0d0 - w)
else
tmp = 0.0d0
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= 0.075) {
tmp = l * (1.0 - w);
} else {
tmp = 0.0;
}
return tmp;
}
def code(w, l): tmp = 0 if w <= 0.075: tmp = l * (1.0 - w) else: tmp = 0.0 return tmp
function code(w, l) tmp = 0.0 if (w <= 0.075) tmp = Float64(l * Float64(1.0 - w)); else tmp = 0.0; end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= 0.075) tmp = l * (1.0 - w); else tmp = 0.0; end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, 0.075], N[(l * N[(1.0 - w), $MachinePrecision]), $MachinePrecision], 0.0]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq 0.075:\\
\;\;\;\;\ell \cdot \left(1 - w\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\end{array}
if w < 0.0749999999999999972Initial program 99.6%
Taylor expanded in w around 0
Simplified97.8%
Taylor expanded in w around 0
neg-mul-1N/A
sub-negN/A
--lowering--.f6474.1%
Simplified74.1%
if 0.0749999999999999972 < w Initial program 100.0%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr100.0%
Final simplification78.4%
(FPCore (w l) :precision binary64 (if (<= w 0.14) l 0.0))
double code(double w, double l) {
double tmp;
if (w <= 0.14) {
tmp = l;
} else {
tmp = 0.0;
}
return tmp;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
real(8) :: tmp
if (w <= 0.14d0) then
tmp = l
else
tmp = 0.0d0
end if
code = tmp
end function
public static double code(double w, double l) {
double tmp;
if (w <= 0.14) {
tmp = l;
} else {
tmp = 0.0;
}
return tmp;
}
def code(w, l): tmp = 0 if w <= 0.14: tmp = l else: tmp = 0.0 return tmp
function code(w, l) tmp = 0.0 if (w <= 0.14) tmp = l; else tmp = 0.0; end return tmp end
function tmp_2 = code(w, l) tmp = 0.0; if (w <= 0.14) tmp = l; else tmp = 0.0; end tmp_2 = tmp; end
code[w_, l_] := If[LessEqual[w, 0.14], l, 0.0]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;w \leq 0.14:\\
\;\;\;\;\ell\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\end{array}
if w < 0.14000000000000001Initial program 99.6%
Taylor expanded in w around 0
Simplified63.2%
if 0.14000000000000001 < w Initial program 100.0%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr100.0%
(FPCore (w l) :precision binary64 0.0)
double code(double w, double l) {
return 0.0;
}
real(8) function code(w, l)
real(8), intent (in) :: w
real(8), intent (in) :: l
code = 0.0d0
end function
public static double code(double w, double l) {
return 0.0;
}
def code(w, l): return 0.0
function code(w, l) return 0.0 end
function tmp = code(w, l) tmp = 0.0; end
code[w_, l_] := 0.0
\begin{array}{l}
\\
0
\end{array}
Initial program 99.6%
exp-negN/A
sqr-powN/A
pow-prod-upN/A
flip-+N/A
+-inversesN/A
metadata-evalN/A
metadata-evalN/A
mul0-lftN/A
*-commutativeN/A
*-commutativeN/A
mul0-lftN/A
metadata-evalN/A
+-inversesN/A
metadata-evalN/A
flip--N/A
metadata-evalN/A
metadata-evalN/A
associate-/r/N/A
div-invN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
Applied egg-rr19.0%
herbie shell --seed 2024193
(FPCore (w l)
:name "exp-w (used to crash)"
:precision binary64
(* (exp (- w)) (pow l (exp w))))