
(FPCore (m v) :precision binary64 (* (- (/ (* m (- 1.0 m)) v) 1.0) m))
double code(double m, double v) {
return (((m * (1.0 - m)) / v) - 1.0) * m;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
code = (((m * (1.0d0 - m)) / v) - 1.0d0) * m
end function
public static double code(double m, double v) {
return (((m * (1.0 - m)) / v) - 1.0) * m;
}
def code(m, v): return (((m * (1.0 - m)) / v) - 1.0) * m
function code(m, v) return Float64(Float64(Float64(Float64(m * Float64(1.0 - m)) / v) - 1.0) * m) end
function tmp = code(m, v) tmp = (((m * (1.0 - m)) / v) - 1.0) * m; end
code[m_, v_] := N[(N[(N[(N[(m * N[(1.0 - m), $MachinePrecision]), $MachinePrecision] / v), $MachinePrecision] - 1.0), $MachinePrecision] * m), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot m
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 13 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (m v) :precision binary64 (* (- (/ (* m (- 1.0 m)) v) 1.0) m))
double code(double m, double v) {
return (((m * (1.0 - m)) / v) - 1.0) * m;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
code = (((m * (1.0d0 - m)) / v) - 1.0d0) * m
end function
public static double code(double m, double v) {
return (((m * (1.0 - m)) / v) - 1.0) * m;
}
def code(m, v): return (((m * (1.0 - m)) / v) - 1.0) * m
function code(m, v) return Float64(Float64(Float64(Float64(m * Float64(1.0 - m)) / v) - 1.0) * m) end
function tmp = code(m, v) tmp = (((m * (1.0 - m)) / v) - 1.0) * m; end
code[m_, v_] := N[(N[(N[(N[(m * N[(1.0 - m), $MachinePrecision]), $MachinePrecision] / v), $MachinePrecision] - 1.0), $MachinePrecision] * m), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot m
\end{array}
(FPCore (m v) :precision binary64 (fma (/ m v) (* m (- 1.0 m)) (- m)))
double code(double m, double v) {
return fma((m / v), (m * (1.0 - m)), -m);
}
function code(m, v) return fma(Float64(m / v), Float64(m * Float64(1.0 - m)), Float64(-m)) end
code[m_, v_] := N[(N[(m / v), $MachinePrecision] * N[(m * N[(1.0 - m), $MachinePrecision]), $MachinePrecision] + (-m)), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(\frac{m}{v}, m \cdot \left(1 - m\right), -m\right)
\end{array}
Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
distribute-rgt-in99.9%
associate-/r/99.9%
associate-*l*99.9%
*-commutative99.9%
neg-mul-199.9%
fma-def99.9%
Applied egg-rr99.9%
Final simplification99.9%
(FPCore (m v)
:precision binary64
(let* ((t_0 (* m (/ m v))))
(if (<= m 3.2e-131)
(- m)
(if (<= m 1.9e-96)
t_0
(if (<= m 3.4e-64) (- m) (if (<= m 1.0) t_0 (* m (/ m (- v)))))))))
double code(double m, double v) {
double t_0 = m * (m / v);
double tmp;
if (m <= 3.2e-131) {
tmp = -m;
} else if (m <= 1.9e-96) {
tmp = t_0;
} else if (m <= 3.4e-64) {
tmp = -m;
} else if (m <= 1.0) {
tmp = t_0;
} else {
tmp = m * (m / -v);
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: t_0
real(8) :: tmp
t_0 = m * (m / v)
if (m <= 3.2d-131) then
tmp = -m
else if (m <= 1.9d-96) then
tmp = t_0
else if (m <= 3.4d-64) then
tmp = -m
else if (m <= 1.0d0) then
tmp = t_0
else
tmp = m * (m / -v)
end if
code = tmp
end function
public static double code(double m, double v) {
double t_0 = m * (m / v);
double tmp;
if (m <= 3.2e-131) {
tmp = -m;
} else if (m <= 1.9e-96) {
tmp = t_0;
} else if (m <= 3.4e-64) {
tmp = -m;
} else if (m <= 1.0) {
tmp = t_0;
} else {
tmp = m * (m / -v);
}
return tmp;
}
def code(m, v): t_0 = m * (m / v) tmp = 0 if m <= 3.2e-131: tmp = -m elif m <= 1.9e-96: tmp = t_0 elif m <= 3.4e-64: tmp = -m elif m <= 1.0: tmp = t_0 else: tmp = m * (m / -v) return tmp
function code(m, v) t_0 = Float64(m * Float64(m / v)) tmp = 0.0 if (m <= 3.2e-131) tmp = Float64(-m); elseif (m <= 1.9e-96) tmp = t_0; elseif (m <= 3.4e-64) tmp = Float64(-m); elseif (m <= 1.0) tmp = t_0; else tmp = Float64(m * Float64(m / Float64(-v))); end return tmp end
function tmp_2 = code(m, v) t_0 = m * (m / v); tmp = 0.0; if (m <= 3.2e-131) tmp = -m; elseif (m <= 1.9e-96) tmp = t_0; elseif (m <= 3.4e-64) tmp = -m; elseif (m <= 1.0) tmp = t_0; else tmp = m * (m / -v); end tmp_2 = tmp; end
code[m_, v_] := Block[{t$95$0 = N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[m, 3.2e-131], (-m), If[LessEqual[m, 1.9e-96], t$95$0, If[LessEqual[m, 3.4e-64], (-m), If[LessEqual[m, 1.0], t$95$0, N[(m * N[(m / (-v)), $MachinePrecision]), $MachinePrecision]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := m \cdot \frac{m}{v}\\
\mathbf{if}\;m \leq 3.2 \cdot 10^{-131}:\\
\;\;\;\;-m\\
\mathbf{elif}\;m \leq 1.9 \cdot 10^{-96}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;m \leq 3.4 \cdot 10^{-64}:\\
\;\;\;\;-m\\
\mathbf{elif}\;m \leq 1:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;m \cdot \frac{m}{-v}\\
\end{array}
\end{array}
if m < 3.2e-131 or 1.9e-96 < m < 3.40000000000000012e-64Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in m around 0 72.8%
neg-mul-172.8%
Simplified72.8%
if 3.2e-131 < m < 1.9e-96 or 3.40000000000000012e-64 < m < 1Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.7%
metadata-eval99.7%
Simplified99.7%
Taylor expanded in v around 0 79.8%
associate-/l*79.9%
unpow279.9%
Simplified79.9%
Taylor expanded in m around 0 72.1%
associate-*l/72.3%
Applied egg-rr72.3%
if 1 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in v around 0 99.9%
associate-/l*99.9%
unpow299.9%
Simplified99.9%
Taylor expanded in m around 0 0.1%
add-sqr-sqrt0.1%
sqrt-unprod0.1%
sqr-neg0.1%
sqrt-unprod0.0%
add-sqr-sqrt76.5%
neg-mul-176.5%
times-frac76.5%
Applied egg-rr76.5%
Taylor expanded in m around 0 76.5%
metadata-eval76.5%
unpow276.5%
associate-/l*76.5%
associate-/r/76.5%
associate-/r/76.5%
times-frac76.5%
neg-mul-176.5%
associate-/r/76.5%
*-commutative76.5%
associate-*r/76.5%
*-rgt-identity76.5%
associate-*l/76.5%
*-commutative76.5%
Simplified76.5%
Final simplification74.4%
(FPCore (m v) :precision binary64 (if (<= m 7e-9) (- (* m (/ m v)) m) (* m (/ (- 1.0 m) (/ v m)))))
double code(double m, double v) {
double tmp;
if (m <= 7e-9) {
tmp = (m * (m / v)) - m;
} else {
tmp = m * ((1.0 - m) / (v / m));
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: tmp
if (m <= 7d-9) then
tmp = (m * (m / v)) - m
else
tmp = m * ((1.0d0 - m) / (v / m))
end if
code = tmp
end function
public static double code(double m, double v) {
double tmp;
if (m <= 7e-9) {
tmp = (m * (m / v)) - m;
} else {
tmp = m * ((1.0 - m) / (v / m));
}
return tmp;
}
def code(m, v): tmp = 0 if m <= 7e-9: tmp = (m * (m / v)) - m else: tmp = m * ((1.0 - m) / (v / m)) return tmp
function code(m, v) tmp = 0.0 if (m <= 7e-9) tmp = Float64(Float64(m * Float64(m / v)) - m); else tmp = Float64(m * Float64(Float64(1.0 - m) / Float64(v / m))); end return tmp end
function tmp_2 = code(m, v) tmp = 0.0; if (m <= 7e-9) tmp = (m * (m / v)) - m; else tmp = m * ((1.0 - m) / (v / m)); end tmp_2 = tmp; end
code[m_, v_] := If[LessEqual[m, 7e-9], N[(N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision] - m), $MachinePrecision], N[(m * N[(N[(1.0 - m), $MachinePrecision] / N[(v / m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;m \leq 7 \cdot 10^{-9}:\\
\;\;\;\;m \cdot \frac{m}{v} - m\\
\mathbf{else}:\\
\;\;\;\;m \cdot \frac{1 - m}{\frac{v}{m}}\\
\end{array}
\end{array}
if m < 6.9999999999999998e-9Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in m around 0 84.1%
neg-mul-184.1%
+-commutative84.1%
unsub-neg84.1%
unpow284.1%
associate-/l*98.9%
Simplified98.9%
associate-/r/99.0%
Applied egg-rr99.0%
if 6.9999999999999998e-9 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in v around 0 99.9%
associate-*l/99.9%
unpow299.9%
associate-*r/99.9%
associate-*r*99.9%
*-commutative99.9%
associate-*r/99.9%
associate-/l*99.9%
Simplified99.9%
Final simplification99.4%
(FPCore (m v) :precision binary64 (let* ((t_0 (* m (/ m v)))) (if (<= m 7e-9) (- t_0 m) (* (- 1.0 m) t_0))))
double code(double m, double v) {
double t_0 = m * (m / v);
double tmp;
if (m <= 7e-9) {
tmp = t_0 - m;
} else {
tmp = (1.0 - m) * t_0;
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: t_0
real(8) :: tmp
t_0 = m * (m / v)
if (m <= 7d-9) then
tmp = t_0 - m
else
tmp = (1.0d0 - m) * t_0
end if
code = tmp
end function
public static double code(double m, double v) {
double t_0 = m * (m / v);
double tmp;
if (m <= 7e-9) {
tmp = t_0 - m;
} else {
tmp = (1.0 - m) * t_0;
}
return tmp;
}
def code(m, v): t_0 = m * (m / v) tmp = 0 if m <= 7e-9: tmp = t_0 - m else: tmp = (1.0 - m) * t_0 return tmp
function code(m, v) t_0 = Float64(m * Float64(m / v)) tmp = 0.0 if (m <= 7e-9) tmp = Float64(t_0 - m); else tmp = Float64(Float64(1.0 - m) * t_0); end return tmp end
function tmp_2 = code(m, v) t_0 = m * (m / v); tmp = 0.0; if (m <= 7e-9) tmp = t_0 - m; else tmp = (1.0 - m) * t_0; end tmp_2 = tmp; end
code[m_, v_] := Block[{t$95$0 = N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[m, 7e-9], N[(t$95$0 - m), $MachinePrecision], N[(N[(1.0 - m), $MachinePrecision] * t$95$0), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := m \cdot \frac{m}{v}\\
\mathbf{if}\;m \leq 7 \cdot 10^{-9}:\\
\;\;\;\;t_0 - m\\
\mathbf{else}:\\
\;\;\;\;\left(1 - m\right) \cdot t_0\\
\end{array}
\end{array}
if m < 6.9999999999999998e-9Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in m around 0 84.1%
neg-mul-184.1%
+-commutative84.1%
unsub-neg84.1%
unpow284.1%
associate-/l*98.9%
Simplified98.9%
associate-/r/99.0%
Applied egg-rr99.0%
if 6.9999999999999998e-9 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
distribute-rgt-in99.9%
associate-/r/99.9%
associate-*l*99.9%
*-commutative99.9%
neg-mul-199.9%
fma-def99.9%
Applied egg-rr99.9%
Taylor expanded in v around 0 99.9%
unpow299.9%
associate-/l*99.9%
associate-/r/99.9%
associate-*r/99.9%
Simplified99.9%
Final simplification99.4%
(FPCore (m v) :precision binary64 (if (<= m 7e-9) (- (* m (/ m v)) m) (/ (* m m) (/ v (- 1.0 m)))))
double code(double m, double v) {
double tmp;
if (m <= 7e-9) {
tmp = (m * (m / v)) - m;
} else {
tmp = (m * m) / (v / (1.0 - m));
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: tmp
if (m <= 7d-9) then
tmp = (m * (m / v)) - m
else
tmp = (m * m) / (v / (1.0d0 - m))
end if
code = tmp
end function
public static double code(double m, double v) {
double tmp;
if (m <= 7e-9) {
tmp = (m * (m / v)) - m;
} else {
tmp = (m * m) / (v / (1.0 - m));
}
return tmp;
}
def code(m, v): tmp = 0 if m <= 7e-9: tmp = (m * (m / v)) - m else: tmp = (m * m) / (v / (1.0 - m)) return tmp
function code(m, v) tmp = 0.0 if (m <= 7e-9) tmp = Float64(Float64(m * Float64(m / v)) - m); else tmp = Float64(Float64(m * m) / Float64(v / Float64(1.0 - m))); end return tmp end
function tmp_2 = code(m, v) tmp = 0.0; if (m <= 7e-9) tmp = (m * (m / v)) - m; else tmp = (m * m) / (v / (1.0 - m)); end tmp_2 = tmp; end
code[m_, v_] := If[LessEqual[m, 7e-9], N[(N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision] - m), $MachinePrecision], N[(N[(m * m), $MachinePrecision] / N[(v / N[(1.0 - m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;m \leq 7 \cdot 10^{-9}:\\
\;\;\;\;m \cdot \frac{m}{v} - m\\
\mathbf{else}:\\
\;\;\;\;\frac{m \cdot m}{\frac{v}{1 - m}}\\
\end{array}
\end{array}
if m < 6.9999999999999998e-9Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in m around 0 84.1%
neg-mul-184.1%
+-commutative84.1%
unsub-neg84.1%
unpow284.1%
associate-/l*98.9%
Simplified98.9%
associate-/r/99.0%
Applied egg-rr99.0%
if 6.9999999999999998e-9 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in v around 0 99.9%
associate-/l*99.9%
unpow299.9%
Simplified99.9%
Final simplification99.4%
(FPCore (m v) :precision binary64 (* m (+ -1.0 (* m (/ (- 1.0 m) v)))))
double code(double m, double v) {
return m * (-1.0 + (m * ((1.0 - m) / v)));
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
code = m * ((-1.0d0) + (m * ((1.0d0 - m) / v)))
end function
public static double code(double m, double v) {
return m * (-1.0 + (m * ((1.0 - m) / v)));
}
def code(m, v): return m * (-1.0 + (m * ((1.0 - m) / v)))
function code(m, v) return Float64(m * Float64(-1.0 + Float64(m * Float64(Float64(1.0 - m) / v)))) end
function tmp = code(m, v) tmp = m * (-1.0 + (m * ((1.0 - m) / v))); end
code[m_, v_] := N[(m * N[(-1.0 + N[(m * N[(N[(1.0 - m), $MachinePrecision] / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
m \cdot \left(-1 + m \cdot \frac{1 - m}{v}\right)
\end{array}
Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
clear-num99.8%
associate-/r/99.8%
clear-num99.8%
Applied egg-rr99.8%
Final simplification99.8%
(FPCore (m v) :precision binary64 (* m (+ (/ m (/ v (- 1.0 m))) -1.0)))
double code(double m, double v) {
return m * ((m / (v / (1.0 - m))) + -1.0);
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
code = m * ((m / (v / (1.0d0 - m))) + (-1.0d0))
end function
public static double code(double m, double v) {
return m * ((m / (v / (1.0 - m))) + -1.0);
}
def code(m, v): return m * ((m / (v / (1.0 - m))) + -1.0)
function code(m, v) return Float64(m * Float64(Float64(m / Float64(v / Float64(1.0 - m))) + -1.0)) end
function tmp = code(m, v) tmp = m * ((m / (v / (1.0 - m))) + -1.0); end
code[m_, v_] := N[(m * N[(N[(m / N[(v / N[(1.0 - m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
m \cdot \left(\frac{m}{\frac{v}{1 - m}} + -1\right)
\end{array}
Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Final simplification99.9%
(FPCore (m v) :precision binary64 (if (<= m 1.0) (- (* m (/ m v)) m) (* (- m) (/ (* m m) v))))
double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = (m * (m / v)) - m;
} else {
tmp = -m * ((m * m) / v);
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: tmp
if (m <= 1.0d0) then
tmp = (m * (m / v)) - m
else
tmp = -m * ((m * m) / v)
end if
code = tmp
end function
public static double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = (m * (m / v)) - m;
} else {
tmp = -m * ((m * m) / v);
}
return tmp;
}
def code(m, v): tmp = 0 if m <= 1.0: tmp = (m * (m / v)) - m else: tmp = -m * ((m * m) / v) return tmp
function code(m, v) tmp = 0.0 if (m <= 1.0) tmp = Float64(Float64(m * Float64(m / v)) - m); else tmp = Float64(Float64(-m) * Float64(Float64(m * m) / v)); end return tmp end
function tmp_2 = code(m, v) tmp = 0.0; if (m <= 1.0) tmp = (m * (m / v)) - m; else tmp = -m * ((m * m) / v); end tmp_2 = tmp; end
code[m_, v_] := If[LessEqual[m, 1.0], N[(N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision] - m), $MachinePrecision], N[((-m) * N[(N[(m * m), $MachinePrecision] / v), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;m \leq 1:\\
\;\;\;\;m \cdot \frac{m}{v} - m\\
\mathbf{else}:\\
\;\;\;\;\left(-m\right) \cdot \frac{m \cdot m}{v}\\
\end{array}
\end{array}
if m < 1Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in m around 0 83.0%
neg-mul-183.0%
+-commutative83.0%
unsub-neg83.0%
unpow283.0%
associate-/l*97.5%
Simplified97.5%
associate-/r/97.5%
Applied egg-rr97.5%
if 1 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in v around 0 99.9%
associate-/l*99.9%
unpow299.9%
Simplified99.9%
Taylor expanded in m around inf 95.9%
associate-*r/95.9%
neg-mul-195.9%
Simplified95.9%
frac-2neg95.9%
remove-double-neg95.9%
associate-/r/95.8%
Applied egg-rr95.8%
Final simplification96.8%
(FPCore (m v) :precision binary64 (if (<= m 1.0) (- (* m (/ m v)) m) (/ (* m m) (/ (- v) m))))
double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = (m * (m / v)) - m;
} else {
tmp = (m * m) / (-v / m);
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: tmp
if (m <= 1.0d0) then
tmp = (m * (m / v)) - m
else
tmp = (m * m) / (-v / m)
end if
code = tmp
end function
public static double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = (m * (m / v)) - m;
} else {
tmp = (m * m) / (-v / m);
}
return tmp;
}
def code(m, v): tmp = 0 if m <= 1.0: tmp = (m * (m / v)) - m else: tmp = (m * m) / (-v / m) return tmp
function code(m, v) tmp = 0.0 if (m <= 1.0) tmp = Float64(Float64(m * Float64(m / v)) - m); else tmp = Float64(Float64(m * m) / Float64(Float64(-v) / m)); end return tmp end
function tmp_2 = code(m, v) tmp = 0.0; if (m <= 1.0) tmp = (m * (m / v)) - m; else tmp = (m * m) / (-v / m); end tmp_2 = tmp; end
code[m_, v_] := If[LessEqual[m, 1.0], N[(N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision] - m), $MachinePrecision], N[(N[(m * m), $MachinePrecision] / N[((-v) / m), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;m \leq 1:\\
\;\;\;\;m \cdot \frac{m}{v} - m\\
\mathbf{else}:\\
\;\;\;\;\frac{m \cdot m}{\frac{-v}{m}}\\
\end{array}
\end{array}
if m < 1Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in m around 0 83.0%
neg-mul-183.0%
+-commutative83.0%
unsub-neg83.0%
unpow283.0%
associate-/l*97.5%
Simplified97.5%
associate-/r/97.5%
Applied egg-rr97.5%
if 1 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in v around 0 99.9%
associate-/l*99.9%
unpow299.9%
Simplified99.9%
Taylor expanded in m around inf 95.9%
associate-*r/95.9%
neg-mul-195.9%
Simplified95.9%
Final simplification96.8%
(FPCore (m v) :precision binary64 (if (<= m 1.0) (* m (+ (/ m v) -1.0)) (* m (/ m (- v)))))
double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = m * ((m / v) + -1.0);
} else {
tmp = m * (m / -v);
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: tmp
if (m <= 1.0d0) then
tmp = m * ((m / v) + (-1.0d0))
else
tmp = m * (m / -v)
end if
code = tmp
end function
public static double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = m * ((m / v) + -1.0);
} else {
tmp = m * (m / -v);
}
return tmp;
}
def code(m, v): tmp = 0 if m <= 1.0: tmp = m * ((m / v) + -1.0) else: tmp = m * (m / -v) return tmp
function code(m, v) tmp = 0.0 if (m <= 1.0) tmp = Float64(m * Float64(Float64(m / v) + -1.0)); else tmp = Float64(m * Float64(m / Float64(-v))); end return tmp end
function tmp_2 = code(m, v) tmp = 0.0; if (m <= 1.0) tmp = m * ((m / v) + -1.0); else tmp = m * (m / -v); end tmp_2 = tmp; end
code[m_, v_] := If[LessEqual[m, 1.0], N[(m * N[(N[(m / v), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision], N[(m * N[(m / (-v)), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;m \leq 1:\\
\;\;\;\;m \cdot \left(\frac{m}{v} + -1\right)\\
\mathbf{else}:\\
\;\;\;\;m \cdot \frac{m}{-v}\\
\end{array}
\end{array}
if m < 1Initial program 99.8%
Taylor expanded in m around 0 97.5%
if 1 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in v around 0 99.9%
associate-/l*99.9%
unpow299.9%
Simplified99.9%
Taylor expanded in m around 0 0.1%
add-sqr-sqrt0.1%
sqrt-unprod0.1%
sqr-neg0.1%
sqrt-unprod0.0%
add-sqr-sqrt76.5%
neg-mul-176.5%
times-frac76.5%
Applied egg-rr76.5%
Taylor expanded in m around 0 76.5%
metadata-eval76.5%
unpow276.5%
associate-/l*76.5%
associate-/r/76.5%
associate-/r/76.5%
times-frac76.5%
neg-mul-176.5%
associate-/r/76.5%
*-commutative76.5%
associate-*r/76.5%
*-rgt-identity76.5%
associate-*l/76.5%
*-commutative76.5%
Simplified76.5%
Final simplification88.1%
(FPCore (m v) :precision binary64 (if (<= m 1.0) (- (* m (/ m v)) m) (* m (/ m (- v)))))
double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = (m * (m / v)) - m;
} else {
tmp = m * (m / -v);
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: tmp
if (m <= 1.0d0) then
tmp = (m * (m / v)) - m
else
tmp = m * (m / -v)
end if
code = tmp
end function
public static double code(double m, double v) {
double tmp;
if (m <= 1.0) {
tmp = (m * (m / v)) - m;
} else {
tmp = m * (m / -v);
}
return tmp;
}
def code(m, v): tmp = 0 if m <= 1.0: tmp = (m * (m / v)) - m else: tmp = m * (m / -v) return tmp
function code(m, v) tmp = 0.0 if (m <= 1.0) tmp = Float64(Float64(m * Float64(m / v)) - m); else tmp = Float64(m * Float64(m / Float64(-v))); end return tmp end
function tmp_2 = code(m, v) tmp = 0.0; if (m <= 1.0) tmp = (m * (m / v)) - m; else tmp = m * (m / -v); end tmp_2 = tmp; end
code[m_, v_] := If[LessEqual[m, 1.0], N[(N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision] - m), $MachinePrecision], N[(m * N[(m / (-v)), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;m \leq 1:\\
\;\;\;\;m \cdot \frac{m}{v} - m\\
\mathbf{else}:\\
\;\;\;\;m \cdot \frac{m}{-v}\\
\end{array}
\end{array}
if m < 1Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in m around 0 83.0%
neg-mul-183.0%
+-commutative83.0%
unsub-neg83.0%
unpow283.0%
associate-/l*97.5%
Simplified97.5%
associate-/r/97.5%
Applied egg-rr97.5%
if 1 < m Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in v around 0 99.9%
associate-/l*99.9%
unpow299.9%
Simplified99.9%
Taylor expanded in m around 0 0.1%
add-sqr-sqrt0.1%
sqrt-unprod0.1%
sqr-neg0.1%
sqrt-unprod0.0%
add-sqr-sqrt76.5%
neg-mul-176.5%
times-frac76.5%
Applied egg-rr76.5%
Taylor expanded in m around 0 76.5%
metadata-eval76.5%
unpow276.5%
associate-/l*76.5%
associate-/r/76.5%
associate-/r/76.5%
times-frac76.5%
neg-mul-176.5%
associate-/r/76.5%
*-commutative76.5%
associate-*r/76.5%
*-rgt-identity76.5%
associate-*l/76.5%
*-commutative76.5%
Simplified76.5%
Final simplification88.1%
(FPCore (m v) :precision binary64 (if (<= v 1.66e-190) (* m (/ m v)) (- m)))
double code(double m, double v) {
double tmp;
if (v <= 1.66e-190) {
tmp = m * (m / v);
} else {
tmp = -m;
}
return tmp;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
real(8) :: tmp
if (v <= 1.66d-190) then
tmp = m * (m / v)
else
tmp = -m
end if
code = tmp
end function
public static double code(double m, double v) {
double tmp;
if (v <= 1.66e-190) {
tmp = m * (m / v);
} else {
tmp = -m;
}
return tmp;
}
def code(m, v): tmp = 0 if v <= 1.66e-190: tmp = m * (m / v) else: tmp = -m return tmp
function code(m, v) tmp = 0.0 if (v <= 1.66e-190) tmp = Float64(m * Float64(m / v)); else tmp = Float64(-m); end return tmp end
function tmp_2 = code(m, v) tmp = 0.0; if (v <= 1.66e-190) tmp = m * (m / v); else tmp = -m; end tmp_2 = tmp; end
code[m_, v_] := If[LessEqual[v, 1.66e-190], N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision], (-m)]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;v \leq 1.66 \cdot 10^{-190}:\\
\;\;\;\;m \cdot \frac{m}{v}\\
\mathbf{else}:\\
\;\;\;\;-m\\
\end{array}
\end{array}
if v < 1.6600000000000001e-190Initial program 99.8%
*-commutative99.8%
sub-neg99.8%
associate-/l*99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in v around 0 74.1%
associate-/l*74.0%
unpow274.0%
Simplified74.0%
Taylor expanded in m around 0 21.5%
associate-*l/38.3%
Applied egg-rr38.3%
if 1.6600000000000001e-190 < v Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in m around 0 48.8%
neg-mul-148.8%
Simplified48.8%
Final simplification44.8%
(FPCore (m v) :precision binary64 (- m))
double code(double m, double v) {
return -m;
}
real(8) function code(m, v)
real(8), intent (in) :: m
real(8), intent (in) :: v
code = -m
end function
public static double code(double m, double v) {
return -m;
}
def code(m, v): return -m
function code(m, v) return Float64(-m) end
function tmp = code(m, v) tmp = -m; end
code[m_, v_] := (-m)
\begin{array}{l}
\\
-m
\end{array}
Initial program 99.9%
*-commutative99.9%
sub-neg99.9%
associate-/l*99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in m around 0 34.2%
neg-mul-134.2%
Simplified34.2%
Final simplification34.2%
herbie shell --seed 2023299
(FPCore (m v)
:name "a parameter of renormalized beta distribution"
:precision binary64
:pre (and (and (< 0.0 m) (< 0.0 v)) (< v 0.25))
(* (- (/ (* m (- 1.0 m)) v) 1.0) m))