
(FPCore (eh ew t) :precision binary64 (let* ((t_1 (atan (/ (* (- eh) (tan t)) ew)))) (fabs (- (* (* ew (cos t)) (cos t_1)) (* (* eh (sin t)) (sin t_1))))))
double code(double eh, double ew, double t) {
double t_1 = atan(((-eh * tan(t)) / ew));
return fabs((((ew * cos(t)) * cos(t_1)) - ((eh * sin(t)) * sin(t_1))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
real(8) :: t_1
t_1 = atan(((-eh * tan(t)) / ew))
code = abs((((ew * cos(t)) * cos(t_1)) - ((eh * sin(t)) * sin(t_1))))
end function
public static double code(double eh, double ew, double t) {
double t_1 = Math.atan(((-eh * Math.tan(t)) / ew));
return Math.abs((((ew * Math.cos(t)) * Math.cos(t_1)) - ((eh * Math.sin(t)) * Math.sin(t_1))));
}
def code(eh, ew, t): t_1 = math.atan(((-eh * math.tan(t)) / ew)) return math.fabs((((ew * math.cos(t)) * math.cos(t_1)) - ((eh * math.sin(t)) * math.sin(t_1))))
function code(eh, ew, t) t_1 = atan(Float64(Float64(Float64(-eh) * tan(t)) / ew)) return abs(Float64(Float64(Float64(ew * cos(t)) * cos(t_1)) - Float64(Float64(eh * sin(t)) * sin(t_1)))) end
function tmp = code(eh, ew, t) t_1 = atan(((-eh * tan(t)) / ew)); tmp = abs((((ew * cos(t)) * cos(t_1)) - ((eh * sin(t)) * sin(t_1)))); end
code[eh_, ew_, t_] := Block[{t$95$1 = N[ArcTan[N[(N[((-eh) * N[Tan[t], $MachinePrecision]), $MachinePrecision] / ew), $MachinePrecision]], $MachinePrecision]}, N[Abs[N[(N[(N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Cos[t$95$1], $MachinePrecision]), $MachinePrecision] - N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[t$95$1], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \tan^{-1} \left(\frac{\left(-eh\right) \cdot \tan t}{ew}\right)\\
\left|\left(ew \cdot \cos t\right) \cdot \cos t_1 - \left(eh \cdot \sin t\right) \cdot \sin t_1\right|
\end{array}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 8 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (eh ew t) :precision binary64 (let* ((t_1 (atan (/ (* (- eh) (tan t)) ew)))) (fabs (- (* (* ew (cos t)) (cos t_1)) (* (* eh (sin t)) (sin t_1))))))
double code(double eh, double ew, double t) {
double t_1 = atan(((-eh * tan(t)) / ew));
return fabs((((ew * cos(t)) * cos(t_1)) - ((eh * sin(t)) * sin(t_1))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
real(8) :: t_1
t_1 = atan(((-eh * tan(t)) / ew))
code = abs((((ew * cos(t)) * cos(t_1)) - ((eh * sin(t)) * sin(t_1))))
end function
public static double code(double eh, double ew, double t) {
double t_1 = Math.atan(((-eh * Math.tan(t)) / ew));
return Math.abs((((ew * Math.cos(t)) * Math.cos(t_1)) - ((eh * Math.sin(t)) * Math.sin(t_1))));
}
def code(eh, ew, t): t_1 = math.atan(((-eh * math.tan(t)) / ew)) return math.fabs((((ew * math.cos(t)) * math.cos(t_1)) - ((eh * math.sin(t)) * math.sin(t_1))))
function code(eh, ew, t) t_1 = atan(Float64(Float64(Float64(-eh) * tan(t)) / ew)) return abs(Float64(Float64(Float64(ew * cos(t)) * cos(t_1)) - Float64(Float64(eh * sin(t)) * sin(t_1)))) end
function tmp = code(eh, ew, t) t_1 = atan(((-eh * tan(t)) / ew)); tmp = abs((((ew * cos(t)) * cos(t_1)) - ((eh * sin(t)) * sin(t_1)))); end
code[eh_, ew_, t_] := Block[{t$95$1 = N[ArcTan[N[(N[((-eh) * N[Tan[t], $MachinePrecision]), $MachinePrecision] / ew), $MachinePrecision]], $MachinePrecision]}, N[Abs[N[(N[(N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Cos[t$95$1], $MachinePrecision]), $MachinePrecision] - N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[t$95$1], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \tan^{-1} \left(\frac{\left(-eh\right) \cdot \tan t}{ew}\right)\\
\left|\left(ew \cdot \cos t\right) \cdot \cos t_1 - \left(eh \cdot \sin t\right) \cdot \sin t_1\right|
\end{array}
\end{array}
(FPCore (eh ew t) :precision binary64 (fabs (+ (* (* eh (sin t)) (sin (atan (* (- eh) (/ (tan t) ew))))) (* ew (* (cos t) (/ -1.0 (hypot 1.0 (* (tan t) (/ eh ew)))))))))
double code(double eh, double ew, double t) {
return fabs((((eh * sin(t)) * sin(atan((-eh * (tan(t) / ew))))) + (ew * (cos(t) * (-1.0 / hypot(1.0, (tan(t) * (eh / ew))))))));
}
public static double code(double eh, double ew, double t) {
return Math.abs((((eh * Math.sin(t)) * Math.sin(Math.atan((-eh * (Math.tan(t) / ew))))) + (ew * (Math.cos(t) * (-1.0 / Math.hypot(1.0, (Math.tan(t) * (eh / ew))))))));
}
def code(eh, ew, t): return math.fabs((((eh * math.sin(t)) * math.sin(math.atan((-eh * (math.tan(t) / ew))))) + (ew * (math.cos(t) * (-1.0 / math.hypot(1.0, (math.tan(t) * (eh / ew))))))))
function code(eh, ew, t) return abs(Float64(Float64(Float64(eh * sin(t)) * sin(atan(Float64(Float64(-eh) * Float64(tan(t) / ew))))) + Float64(ew * Float64(cos(t) * Float64(-1.0 / hypot(1.0, Float64(tan(t) * Float64(eh / ew)))))))) end
function tmp = code(eh, ew, t) tmp = abs((((eh * sin(t)) * sin(atan((-eh * (tan(t) / ew))))) + (ew * (cos(t) * (-1.0 / hypot(1.0, (tan(t) * (eh / ew)))))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[((-eh) * N[(N[Tan[t], $MachinePrecision] / ew), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + N[(ew * N[(N[Cos[t], $MachinePrecision] * N[(-1.0 / N[Sqrt[1.0 ^ 2 + N[(N[Tan[t], $MachinePrecision] * N[(eh / ew), $MachinePrecision]), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\left(eh \cdot \sin t\right) \cdot \sin \tan^{-1} \left(\left(-eh\right) \cdot \frac{\tan t}{ew}\right) + ew \cdot \left(\cos t \cdot \frac{-1}{\mathsf{hypot}\left(1, \tan t \cdot \frac{eh}{ew}\right)}\right)\right|
\end{array}
Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt49.9%
sqrt-unprod94.3%
sqr-neg94.3%
sqrt-unprod49.8%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Final simplification99.7%
(FPCore (eh ew t) :precision binary64 (fabs (+ (* (* eh (sin t)) (sin (atan (/ (* t eh) (- ew))))) (* ew (* (cos t) (/ -1.0 (hypot 1.0 (* (tan t) (/ eh ew)))))))))
double code(double eh, double ew, double t) {
return fabs((((eh * sin(t)) * sin(atan(((t * eh) / -ew)))) + (ew * (cos(t) * (-1.0 / hypot(1.0, (tan(t) * (eh / ew))))))));
}
public static double code(double eh, double ew, double t) {
return Math.abs((((eh * Math.sin(t)) * Math.sin(Math.atan(((t * eh) / -ew)))) + (ew * (Math.cos(t) * (-1.0 / Math.hypot(1.0, (Math.tan(t) * (eh / ew))))))));
}
def code(eh, ew, t): return math.fabs((((eh * math.sin(t)) * math.sin(math.atan(((t * eh) / -ew)))) + (ew * (math.cos(t) * (-1.0 / math.hypot(1.0, (math.tan(t) * (eh / ew))))))))
function code(eh, ew, t) return abs(Float64(Float64(Float64(eh * sin(t)) * sin(atan(Float64(Float64(t * eh) / Float64(-ew))))) + Float64(ew * Float64(cos(t) * Float64(-1.0 / hypot(1.0, Float64(tan(t) * Float64(eh / ew)))))))) end
function tmp = code(eh, ew, t) tmp = abs((((eh * sin(t)) * sin(atan(((t * eh) / -ew)))) + (ew * (cos(t) * (-1.0 / hypot(1.0, (tan(t) * (eh / ew)))))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(t * eh), $MachinePrecision] / (-ew)), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + N[(ew * N[(N[Cos[t], $MachinePrecision] * N[(-1.0 / N[Sqrt[1.0 ^ 2 + N[(N[Tan[t], $MachinePrecision] * N[(eh / ew), $MachinePrecision]), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\left(eh \cdot \sin t\right) \cdot \sin \tan^{-1} \left(\frac{t \cdot eh}{-ew}\right) + ew \cdot \left(\cos t \cdot \frac{-1}{\mathsf{hypot}\left(1, \tan t \cdot \frac{eh}{ew}\right)}\right)\right|
\end{array}
Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt49.9%
sqrt-unprod94.3%
sqr-neg94.3%
sqrt-unprod49.8%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Taylor expanded in t around 0 98.2%
associate-*r/97.7%
remove-double-neg97.7%
neg-mul-197.7%
times-frac97.7%
metadata-eval97.7%
*-lft-identity97.7%
Simplified98.2%
Final simplification98.2%
(FPCore (eh ew t) :precision binary64 (fabs (- (* ew (cos t)) (* (* eh (sin t)) (sin (atan (* (- eh) (/ (tan t) ew))))))))
double code(double eh, double ew, double t) {
return fabs(((ew * cos(t)) - ((eh * sin(t)) * sin(atan((-eh * (tan(t) / ew)))))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
code = abs(((ew * cos(t)) - ((eh * sin(t)) * sin(atan((-eh * (tan(t) / ew)))))))
end function
public static double code(double eh, double ew, double t) {
return Math.abs(((ew * Math.cos(t)) - ((eh * Math.sin(t)) * Math.sin(Math.atan((-eh * (Math.tan(t) / ew)))))));
}
def code(eh, ew, t): return math.fabs(((ew * math.cos(t)) - ((eh * math.sin(t)) * math.sin(math.atan((-eh * (math.tan(t) / ew)))))))
function code(eh, ew, t) return abs(Float64(Float64(ew * cos(t)) - Float64(Float64(eh * sin(t)) * sin(atan(Float64(Float64(-eh) * Float64(tan(t) / ew))))))) end
function tmp = code(eh, ew, t) tmp = abs(((ew * cos(t)) - ((eh * sin(t)) * sin(atan((-eh * (tan(t) / ew))))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision] - N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[((-eh) * N[(N[Tan[t], $MachinePrecision] / ew), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|ew \cdot \cos t - \left(eh \cdot \sin t\right) \cdot \sin \tan^{-1} \left(\left(-eh\right) \cdot \frac{\tan t}{ew}\right)\right|
\end{array}
Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt49.9%
sqrt-unprod94.3%
sqr-neg94.3%
sqrt-unprod49.8%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Taylor expanded in t around 0 98.2%
Final simplification98.2%
(FPCore (eh ew t) :precision binary64 (fabs (- (* (* eh (sin t)) (sin (atan (/ (* (tan t) eh) ew)))) (* ew (cos t)))))
double code(double eh, double ew, double t) {
return fabs((((eh * sin(t)) * sin(atan(((tan(t) * eh) / ew)))) - (ew * cos(t))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
code = abs((((eh * sin(t)) * sin(atan(((tan(t) * eh) / ew)))) - (ew * cos(t))))
end function
public static double code(double eh, double ew, double t) {
return Math.abs((((eh * Math.sin(t)) * Math.sin(Math.atan(((Math.tan(t) * eh) / ew)))) - (ew * Math.cos(t))));
}
def code(eh, ew, t): return math.fabs((((eh * math.sin(t)) * math.sin(math.atan(((math.tan(t) * eh) / ew)))) - (ew * math.cos(t))))
function code(eh, ew, t) return abs(Float64(Float64(Float64(eh * sin(t)) * sin(atan(Float64(Float64(tan(t) * eh) / ew)))) - Float64(ew * cos(t)))) end
function tmp = code(eh, ew, t) tmp = abs((((eh * sin(t)) * sin(atan(((tan(t) * eh) / ew)))) - (ew * cos(t)))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(N[Tan[t], $MachinePrecision] * eh), $MachinePrecision] / ew), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] - N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\left(eh \cdot \sin t\right) \cdot \sin \tan^{-1} \left(\frac{\tan t \cdot eh}{ew}\right) - ew \cdot \cos t\right|
\end{array}
Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt49.9%
sqrt-unprod94.3%
sqr-neg94.3%
sqrt-unprod49.8%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Taylor expanded in t around 0 98.2%
add-sqr-sqrt49.7%
sqrt-unprod94.5%
sqr-neg94.5%
sqrt-unprod48.4%
add-sqr-sqrt98.1%
associate-*r/98.1%
Applied egg-rr98.1%
Final simplification98.1%
(FPCore (eh ew t) :precision binary64 (fabs (+ (* ew (cos t)) (* eh (* (sin t) (sin (atan (* eh (/ (tan t) ew)))))))))
double code(double eh, double ew, double t) {
return fabs(((ew * cos(t)) + (eh * (sin(t) * sin(atan((eh * (tan(t) / ew))))))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
code = abs(((ew * cos(t)) + (eh * (sin(t) * sin(atan((eh * (tan(t) / ew))))))))
end function
public static double code(double eh, double ew, double t) {
return Math.abs(((ew * Math.cos(t)) + (eh * (Math.sin(t) * Math.sin(Math.atan((eh * (Math.tan(t) / ew))))))));
}
def code(eh, ew, t): return math.fabs(((ew * math.cos(t)) + (eh * (math.sin(t) * math.sin(math.atan((eh * (math.tan(t) / ew))))))))
function code(eh, ew, t) return abs(Float64(Float64(ew * cos(t)) + Float64(eh * Float64(sin(t) * sin(atan(Float64(eh * Float64(tan(t) / ew)))))))) end
function tmp = code(eh, ew, t) tmp = abs(((ew * cos(t)) + (eh * (sin(t) * sin(atan((eh * (tan(t) / ew)))))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision] + N[(eh * N[(N[Sin[t], $MachinePrecision] * N[Sin[N[ArcTan[N[(eh * N[(N[Tan[t], $MachinePrecision] / ew), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|ew \cdot \cos t + eh \cdot \left(\sin t \cdot \sin \tan^{-1} \left(eh \cdot \frac{\tan t}{ew}\right)\right)\right|
\end{array}
Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt49.9%
sqrt-unprod94.3%
sqr-neg94.3%
sqrt-unprod49.8%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Taylor expanded in t around 0 98.2%
expm1-log1p-u81.1%
expm1-udef72.1%
associate-*l*72.1%
distribute-lft-neg-out72.1%
atan-neg72.1%
Applied egg-rr72.1%
expm1-def81.1%
expm1-log1p98.2%
*-commutative98.2%
sin-neg98.2%
distribute-lft-neg-out98.2%
Simplified98.2%
Final simplification98.2%
(FPCore (eh ew t) :precision binary64 (fabs (- (* ew (cos t)) (* (* eh (sin t)) (sin (atan (/ (* t eh) (- ew))))))))
double code(double eh, double ew, double t) {
return fabs(((ew * cos(t)) - ((eh * sin(t)) * sin(atan(((t * eh) / -ew))))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
code = abs(((ew * cos(t)) - ((eh * sin(t)) * sin(atan(((t * eh) / -ew))))))
end function
public static double code(double eh, double ew, double t) {
return Math.abs(((ew * Math.cos(t)) - ((eh * Math.sin(t)) * Math.sin(Math.atan(((t * eh) / -ew))))));
}
def code(eh, ew, t): return math.fabs(((ew * math.cos(t)) - ((eh * math.sin(t)) * math.sin(math.atan(((t * eh) / -ew))))))
function code(eh, ew, t) return abs(Float64(Float64(ew * cos(t)) - Float64(Float64(eh * sin(t)) * sin(atan(Float64(Float64(t * eh) / Float64(-ew))))))) end
function tmp = code(eh, ew, t) tmp = abs(((ew * cos(t)) - ((eh * sin(t)) * sin(atan(((t * eh) / -ew)))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision] - N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(t * eh), $MachinePrecision] / (-ew)), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|ew \cdot \cos t - \left(eh \cdot \sin t\right) \cdot \sin \tan^{-1} \left(\frac{t \cdot eh}{-ew}\right)\right|
\end{array}
Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt49.9%
sqrt-unprod94.3%
sqr-neg94.3%
sqrt-unprod49.8%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Taylor expanded in t around 0 98.2%
Taylor expanded in t around 0 97.7%
associate-*r/97.7%
remove-double-neg97.7%
neg-mul-197.7%
times-frac97.7%
metadata-eval97.7%
*-lft-identity97.7%
Simplified97.7%
Taylor expanded in ew around 0 97.7%
Final simplification97.7%
(FPCore (eh ew t) :precision binary64 (if (or (<= eh -1.65e-35) (not (<= eh 1.75e+15))) (fabs (- ew (* (* eh (sin t)) (sin (atan (/ (* t eh) (- ew))))))) (fabs (- (log (exp (* eh 0.0))) (* ew (cos t))))))
double code(double eh, double ew, double t) {
double tmp;
if ((eh <= -1.65e-35) || !(eh <= 1.75e+15)) {
tmp = fabs((ew - ((eh * sin(t)) * sin(atan(((t * eh) / -ew))))));
} else {
tmp = fabs((log(exp((eh * 0.0))) - (ew * cos(t))));
}
return tmp;
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
real(8) :: tmp
if ((eh <= (-1.65d-35)) .or. (.not. (eh <= 1.75d+15))) then
tmp = abs((ew - ((eh * sin(t)) * sin(atan(((t * eh) / -ew))))))
else
tmp = abs((log(exp((eh * 0.0d0))) - (ew * cos(t))))
end if
code = tmp
end function
public static double code(double eh, double ew, double t) {
double tmp;
if ((eh <= -1.65e-35) || !(eh <= 1.75e+15)) {
tmp = Math.abs((ew - ((eh * Math.sin(t)) * Math.sin(Math.atan(((t * eh) / -ew))))));
} else {
tmp = Math.abs((Math.log(Math.exp((eh * 0.0))) - (ew * Math.cos(t))));
}
return tmp;
}
def code(eh, ew, t): tmp = 0 if (eh <= -1.65e-35) or not (eh <= 1.75e+15): tmp = math.fabs((ew - ((eh * math.sin(t)) * math.sin(math.atan(((t * eh) / -ew)))))) else: tmp = math.fabs((math.log(math.exp((eh * 0.0))) - (ew * math.cos(t)))) return tmp
function code(eh, ew, t) tmp = 0.0 if ((eh <= -1.65e-35) || !(eh <= 1.75e+15)) tmp = abs(Float64(ew - Float64(Float64(eh * sin(t)) * sin(atan(Float64(Float64(t * eh) / Float64(-ew))))))); else tmp = abs(Float64(log(exp(Float64(eh * 0.0))) - Float64(ew * cos(t)))); end return tmp end
function tmp_2 = code(eh, ew, t) tmp = 0.0; if ((eh <= -1.65e-35) || ~((eh <= 1.75e+15))) tmp = abs((ew - ((eh * sin(t)) * sin(atan(((t * eh) / -ew)))))); else tmp = abs((log(exp((eh * 0.0))) - (ew * cos(t)))); end tmp_2 = tmp; end
code[eh_, ew_, t_] := If[Or[LessEqual[eh, -1.65e-35], N[Not[LessEqual[eh, 1.75e+15]], $MachinePrecision]], N[Abs[N[(ew - N[(N[(eh * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(t * eh), $MachinePrecision] / (-ew)), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Abs[N[(N[Log[N[Exp[N[(eh * 0.0), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] - N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;eh \leq -1.65 \cdot 10^{-35} \lor \neg \left(eh \leq 1.75 \cdot 10^{+15}\right):\\
\;\;\;\;\left|ew - \left(eh \cdot \sin t\right) \cdot \sin \tan^{-1} \left(\frac{t \cdot eh}{-ew}\right)\right|\\
\mathbf{else}:\\
\;\;\;\;\left|\log \left(e^{eh \cdot 0}\right) - ew \cdot \cos t\right|\\
\end{array}
\end{array}
if eh < -1.65e-35 or 1.75e15 < eh Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt55.3%
sqrt-unprod89.9%
sqr-neg89.9%
sqrt-unprod44.4%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Taylor expanded in t around 0 98.2%
Taylor expanded in t around 0 97.9%
associate-*r/97.9%
remove-double-neg97.9%
neg-mul-197.9%
times-frac97.9%
metadata-eval97.9%
*-lft-identity97.9%
Simplified97.9%
Taylor expanded in t around 0 93.5%
if -1.65e-35 < eh < 1.75e15Initial program 99.8%
fabs-neg99.8%
sub0-neg99.8%
sub-neg99.8%
+-commutative99.8%
associate--r+99.8%
Simplified99.8%
cos-atan99.8%
hypot-1-def99.8%
add-sqr-sqrt44.5%
sqrt-unprod98.7%
sqr-neg98.7%
sqrt-unprod55.3%
add-sqr-sqrt99.8%
Applied egg-rr99.8%
associate-*r/99.8%
associate-*l/99.8%
*-commutative99.8%
Simplified99.8%
Taylor expanded in t around 0 98.1%
add-log-exp86.9%
associate-*l*86.9%
distribute-lft-neg-out86.9%
atan-neg86.9%
Applied egg-rr86.9%
sin-mult86.9%
div-sub86.9%
Applied egg-rr86.9%
+-inverses86.9%
Simplified86.9%
Final simplification90.2%
(FPCore (eh ew t) :precision binary64 (fabs (- (log (exp (* eh 0.0))) (* ew (cos t)))))
double code(double eh, double ew, double t) {
return fabs((log(exp((eh * 0.0))) - (ew * cos(t))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
code = abs((log(exp((eh * 0.0d0))) - (ew * cos(t))))
end function
public static double code(double eh, double ew, double t) {
return Math.abs((Math.log(Math.exp((eh * 0.0))) - (ew * Math.cos(t))));
}
def code(eh, ew, t): return math.fabs((math.log(math.exp((eh * 0.0))) - (ew * math.cos(t))))
function code(eh, ew, t) return abs(Float64(log(exp(Float64(eh * 0.0))) - Float64(ew * cos(t)))) end
function tmp = code(eh, ew, t) tmp = abs((log(exp((eh * 0.0))) - (ew * cos(t)))); end
code[eh_, ew_, t_] := N[Abs[N[(N[Log[N[Exp[N[(eh * 0.0), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] - N[(ew * N[Cos[t], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\log \left(e^{eh \cdot 0}\right) - ew \cdot \cos t\right|
\end{array}
Initial program 99.7%
fabs-neg99.7%
sub0-neg99.7%
sub-neg99.7%
+-commutative99.7%
associate--r+99.7%
Simplified99.7%
cos-atan99.7%
hypot-1-def99.7%
add-sqr-sqrt49.9%
sqrt-unprod94.3%
sqr-neg94.3%
sqrt-unprod49.8%
add-sqr-sqrt99.7%
Applied egg-rr99.7%
associate-*r/99.7%
associate-*l/99.7%
*-commutative99.7%
Simplified99.7%
Taylor expanded in t around 0 98.2%
add-log-exp60.3%
associate-*l*60.3%
distribute-lft-neg-out60.3%
atan-neg60.3%
Applied egg-rr60.3%
sin-mult61.2%
div-sub61.2%
Applied egg-rr61.2%
+-inverses61.2%
Simplified61.2%
Final simplification61.2%
herbie shell --seed 2023229
(FPCore (eh ew t)
:name "Example 2 from Robby"
:precision binary64
(fabs (- (* (* ew (cos t)) (cos (atan (/ (* (- eh) (tan t)) ew)))) (* (* eh (sin t)) (sin (atan (/ (* (- eh) (tan t)) ew)))))))