
(FPCore (x)
:precision binary64
(let* ((t_0 (/ 1 (fabs x)))
(t_1 (* (* t_0 t_0) t_0))
(t_2 (* (* t_1 t_0) t_0)))
(*
(* (/ 1 (sqrt PI)) (exp (* (fabs x) (fabs x))))
(+
(+ (+ t_0 (* (/ 1 2) t_1)) (* (/ 3 4) t_2))
(* (/ 15 8) (* (* t_2 t_0) t_0))))))double code(double x) {
double t_0 = 1.0 / fabs(x);
double t_1 = (t_0 * t_0) * t_0;
double t_2 = (t_1 * t_0) * t_0;
return ((1.0 / sqrt(((double) M_PI))) * exp((fabs(x) * fabs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0)));
}
public static double code(double x) {
double t_0 = 1.0 / Math.abs(x);
double t_1 = (t_0 * t_0) * t_0;
double t_2 = (t_1 * t_0) * t_0;
return ((1.0 / Math.sqrt(Math.PI)) * Math.exp((Math.abs(x) * Math.abs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0)));
}
def code(x): t_0 = 1.0 / math.fabs(x) t_1 = (t_0 * t_0) * t_0 t_2 = (t_1 * t_0) * t_0 return ((1.0 / math.sqrt(math.pi)) * math.exp((math.fabs(x) * math.fabs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0)))
function code(x) t_0 = Float64(1.0 / abs(x)) t_1 = Float64(Float64(t_0 * t_0) * t_0) t_2 = Float64(Float64(t_1 * t_0) * t_0) return Float64(Float64(Float64(1.0 / sqrt(pi)) * exp(Float64(abs(x) * abs(x)))) * Float64(Float64(Float64(t_0 + Float64(Float64(1.0 / 2.0) * t_1)) + Float64(Float64(3.0 / 4.0) * t_2)) + Float64(Float64(15.0 / 8.0) * Float64(Float64(t_2 * t_0) * t_0)))) end
function tmp = code(x) t_0 = 1.0 / abs(x); t_1 = (t_0 * t_0) * t_0; t_2 = (t_1 * t_0) * t_0; tmp = ((1.0 / sqrt(pi)) * exp((abs(x) * abs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0))); end
code[x_] := Block[{t$95$0 = N[(1 / N[Abs[x], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(t$95$0 * t$95$0), $MachinePrecision] * t$95$0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(t$95$1 * t$95$0), $MachinePrecision] * t$95$0), $MachinePrecision]}, N[(N[(N[(1 / N[Sqrt[Pi], $MachinePrecision]), $MachinePrecision] * N[Exp[N[(N[Abs[x], $MachinePrecision] * N[Abs[x], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(t$95$0 + N[(N[(1 / 2), $MachinePrecision] * t$95$1), $MachinePrecision]), $MachinePrecision] + N[(N[(3 / 4), $MachinePrecision] * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(15 / 8), $MachinePrecision] * N[(N[(t$95$2 * t$95$0), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
\begin{array}{l}
t_0 := \frac{1}{\left|x\right|}\\
t_1 := \left(t\_0 \cdot t\_0\right) \cdot t\_0\\
t_2 := \left(t\_1 \cdot t\_0\right) \cdot t\_0\\
\left(\frac{1}{\sqrt{\pi}} \cdot e^{\left|x\right| \cdot \left|x\right|}\right) \cdot \left(\left(\left(t\_0 + \frac{1}{2} \cdot t\_1\right) + \frac{3}{4} \cdot t\_2\right) + \frac{15}{8} \cdot \left(\left(t\_2 \cdot t\_0\right) \cdot t\_0\right)\right)
\end{array}
Herbie found 11 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x)
:precision binary64
(let* ((t_0 (/ 1 (fabs x)))
(t_1 (* (* t_0 t_0) t_0))
(t_2 (* (* t_1 t_0) t_0)))
(*
(* (/ 1 (sqrt PI)) (exp (* (fabs x) (fabs x))))
(+
(+ (+ t_0 (* (/ 1 2) t_1)) (* (/ 3 4) t_2))
(* (/ 15 8) (* (* t_2 t_0) t_0))))))double code(double x) {
double t_0 = 1.0 / fabs(x);
double t_1 = (t_0 * t_0) * t_0;
double t_2 = (t_1 * t_0) * t_0;
return ((1.0 / sqrt(((double) M_PI))) * exp((fabs(x) * fabs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0)));
}
public static double code(double x) {
double t_0 = 1.0 / Math.abs(x);
double t_1 = (t_0 * t_0) * t_0;
double t_2 = (t_1 * t_0) * t_0;
return ((1.0 / Math.sqrt(Math.PI)) * Math.exp((Math.abs(x) * Math.abs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0)));
}
def code(x): t_0 = 1.0 / math.fabs(x) t_1 = (t_0 * t_0) * t_0 t_2 = (t_1 * t_0) * t_0 return ((1.0 / math.sqrt(math.pi)) * math.exp((math.fabs(x) * math.fabs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0)))
function code(x) t_0 = Float64(1.0 / abs(x)) t_1 = Float64(Float64(t_0 * t_0) * t_0) t_2 = Float64(Float64(t_1 * t_0) * t_0) return Float64(Float64(Float64(1.0 / sqrt(pi)) * exp(Float64(abs(x) * abs(x)))) * Float64(Float64(Float64(t_0 + Float64(Float64(1.0 / 2.0) * t_1)) + Float64(Float64(3.0 / 4.0) * t_2)) + Float64(Float64(15.0 / 8.0) * Float64(Float64(t_2 * t_0) * t_0)))) end
function tmp = code(x) t_0 = 1.0 / abs(x); t_1 = (t_0 * t_0) * t_0; t_2 = (t_1 * t_0) * t_0; tmp = ((1.0 / sqrt(pi)) * exp((abs(x) * abs(x)))) * (((t_0 + ((1.0 / 2.0) * t_1)) + ((3.0 / 4.0) * t_2)) + ((15.0 / 8.0) * ((t_2 * t_0) * t_0))); end
code[x_] := Block[{t$95$0 = N[(1 / N[Abs[x], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(t$95$0 * t$95$0), $MachinePrecision] * t$95$0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(t$95$1 * t$95$0), $MachinePrecision] * t$95$0), $MachinePrecision]}, N[(N[(N[(1 / N[Sqrt[Pi], $MachinePrecision]), $MachinePrecision] * N[Exp[N[(N[Abs[x], $MachinePrecision] * N[Abs[x], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(t$95$0 + N[(N[(1 / 2), $MachinePrecision] * t$95$1), $MachinePrecision]), $MachinePrecision] + N[(N[(3 / 4), $MachinePrecision] * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(15 / 8), $MachinePrecision] * N[(N[(t$95$2 * t$95$0), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
\begin{array}{l}
t_0 := \frac{1}{\left|x\right|}\\
t_1 := \left(t\_0 \cdot t\_0\right) \cdot t\_0\\
t_2 := \left(t\_1 \cdot t\_0\right) \cdot t\_0\\
\left(\frac{1}{\sqrt{\pi}} \cdot e^{\left|x\right| \cdot \left|x\right|}\right) \cdot \left(\left(\left(t\_0 + \frac{1}{2} \cdot t\_1\right) + \frac{3}{4} \cdot t\_2\right) + \frac{15}{8} \cdot \left(\left(t\_2 \cdot t\_0\right) \cdot t\_0\right)\right)
\end{array}
(FPCore (x)
:precision binary64
(let* ((t_0 (* (* x x) x)))
(*
(* (exp (* (log (sqrt PI)) -1)) (pow (exp x) x))
(/
(-
(- (/ 1/2 (* x x)) -1)
(- (/ -3/4 (* t_0 x)) (/ 15/8 (* t_0 t_0))))
(fabs x)))))double code(double x) {
double t_0 = (x * x) * x;
return (exp((log(sqrt(((double) M_PI))) * -1.0)) * pow(exp(x), x)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / fabs(x));
}
public static double code(double x) {
double t_0 = (x * x) * x;
return (Math.exp((Math.log(Math.sqrt(Math.PI)) * -1.0)) * Math.pow(Math.exp(x), x)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / Math.abs(x));
}
def code(x): t_0 = (x * x) * x return (math.exp((math.log(math.sqrt(math.pi)) * -1.0)) * math.pow(math.exp(x), x)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / math.fabs(x))
function code(x) t_0 = Float64(Float64(x * x) * x) return Float64(Float64(exp(Float64(log(sqrt(pi)) * -1.0)) * (exp(x) ^ x)) * Float64(Float64(Float64(Float64(0.5 / Float64(x * x)) - -1.0) - Float64(Float64(-0.75 / Float64(t_0 * x)) - Float64(1.875 / Float64(t_0 * t_0)))) / abs(x))) end
function tmp = code(x) t_0 = (x * x) * x; tmp = (exp((log(sqrt(pi)) * -1.0)) * (exp(x) ^ x)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / abs(x)); end
code[x_] := Block[{t$95$0 = N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]}, N[(N[(N[Exp[N[(N[Log[N[Sqrt[Pi], $MachinePrecision]], $MachinePrecision] * -1), $MachinePrecision]], $MachinePrecision] * N[Power[N[Exp[x], $MachinePrecision], x], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(N[(1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision] - -1), $MachinePrecision] - N[(N[(-3/4 / N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision] - N[(15/8 / N[(t$95$0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot x\\
\left(e^{\log \left(\sqrt{\pi}\right) \cdot -1} \cdot {\left(e^{x}\right)}^{x}\right) \cdot \frac{\left(\frac{\frac{1}{2}}{x \cdot x} - -1\right) - \left(\frac{\frac{-3}{4}}{t\_0 \cdot x} - \frac{\frac{15}{8}}{t\_0 \cdot t\_0}\right)}{\left|x\right|}
\end{array}
Initial program 100.0%
lift-exp.f64N/A
lift-*.f64N/A
lift-fabs.f64N/A
lift-fabs.f64N/A
sqr-absN/A
exp-prodN/A
lower-pow.f64N/A
lower-exp.f64100.0%
Applied rewrites100.0%
Applied rewrites100.0%
lift-/.f64N/A
inv-powN/A
pow-to-expN/A
lower-unsound-exp.f64N/A
lower-unsound-*.f64N/A
lower-unsound-log.f64100.0%
Applied rewrites100.0%
(FPCore (x)
:precision binary64
(let* ((t_0 (* (* x x) x)))
(*
(sqrt (/ (pow (exp x) (+ x x)) PI))
(/
(-
(- (/ 1/2 (* x x)) -1)
(- (/ -3/4 (* t_0 x)) (/ 15/8 (* t_0 t_0))))
(fabs x)))))double code(double x) {
double t_0 = (x * x) * x;
return sqrt((pow(exp(x), (x + x)) / ((double) M_PI))) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / fabs(x));
}
public static double code(double x) {
double t_0 = (x * x) * x;
return Math.sqrt((Math.pow(Math.exp(x), (x + x)) / Math.PI)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / Math.abs(x));
}
def code(x): t_0 = (x * x) * x return math.sqrt((math.pow(math.exp(x), (x + x)) / math.pi)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / math.fabs(x))
function code(x) t_0 = Float64(Float64(x * x) * x) return Float64(sqrt(Float64((exp(x) ^ Float64(x + x)) / pi)) * Float64(Float64(Float64(Float64(0.5 / Float64(x * x)) - -1.0) - Float64(Float64(-0.75 / Float64(t_0 * x)) - Float64(1.875 / Float64(t_0 * t_0)))) / abs(x))) end
function tmp = code(x) t_0 = (x * x) * x; tmp = sqrt(((exp(x) ^ (x + x)) / pi)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / abs(x)); end
code[x_] := Block[{t$95$0 = N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]}, N[(N[Sqrt[N[(N[Power[N[Exp[x], $MachinePrecision], N[(x + x), $MachinePrecision]], $MachinePrecision] / Pi), $MachinePrecision]], $MachinePrecision] * N[(N[(N[(N[(1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision] - -1), $MachinePrecision] - N[(N[(-3/4 / N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision] - N[(15/8 / N[(t$95$0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot x\\
\sqrt{\frac{{\left(e^{x}\right)}^{\left(x + x\right)}}{\pi}} \cdot \frac{\left(\frac{\frac{1}{2}}{x \cdot x} - -1\right) - \left(\frac{\frac{-3}{4}}{t\_0 \cdot x} - \frac{\frac{15}{8}}{t\_0 \cdot t\_0}\right)}{\left|x\right|}
\end{array}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites99.9%
lift-exp.f64N/A
lift-*.f64N/A
exp-lft-sqrN/A
lift-*.f64N/A
pow-expN/A
lift-exp.f64N/A
lift-*.f64N/A
pow-expN/A
lift-exp.f64N/A
pow-prod-upN/A
lower-pow.f64N/A
lower-+.f6499.9%
Applied rewrites99.9%
(FPCore (x)
:precision binary64
(let* ((t_0 (* (* x x) x)))
(*
(sqrt (/ (exp (* (* x x) 2)) PI))
(-
(/ (- (/ 3/4 (* t_0 x)) (/ -1/2 (* x x))) (fabs x))
(- (/ -15/8 (* (* t_0 t_0) (fabs x))) (/ 1 (fabs x)))))))double code(double x) {
double t_0 = (x * x) * x;
return sqrt((exp(((x * x) * 2.0)) / ((double) M_PI))) * ((((0.75 / (t_0 * x)) - (-0.5 / (x * x))) / fabs(x)) - ((-1.875 / ((t_0 * t_0) * fabs(x))) - (1.0 / fabs(x))));
}
public static double code(double x) {
double t_0 = (x * x) * x;
return Math.sqrt((Math.exp(((x * x) * 2.0)) / Math.PI)) * ((((0.75 / (t_0 * x)) - (-0.5 / (x * x))) / Math.abs(x)) - ((-1.875 / ((t_0 * t_0) * Math.abs(x))) - (1.0 / Math.abs(x))));
}
def code(x): t_0 = (x * x) * x return math.sqrt((math.exp(((x * x) * 2.0)) / math.pi)) * ((((0.75 / (t_0 * x)) - (-0.5 / (x * x))) / math.fabs(x)) - ((-1.875 / ((t_0 * t_0) * math.fabs(x))) - (1.0 / math.fabs(x))))
function code(x) t_0 = Float64(Float64(x * x) * x) return Float64(sqrt(Float64(exp(Float64(Float64(x * x) * 2.0)) / pi)) * Float64(Float64(Float64(Float64(0.75 / Float64(t_0 * x)) - Float64(-0.5 / Float64(x * x))) / abs(x)) - Float64(Float64(-1.875 / Float64(Float64(t_0 * t_0) * abs(x))) - Float64(1.0 / abs(x))))) end
function tmp = code(x) t_0 = (x * x) * x; tmp = sqrt((exp(((x * x) * 2.0)) / pi)) * ((((0.75 / (t_0 * x)) - (-0.5 / (x * x))) / abs(x)) - ((-1.875 / ((t_0 * t_0) * abs(x))) - (1.0 / abs(x)))); end
code[x_] := Block[{t$95$0 = N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]}, N[(N[Sqrt[N[(N[Exp[N[(N[(x * x), $MachinePrecision] * 2), $MachinePrecision]], $MachinePrecision] / Pi), $MachinePrecision]], $MachinePrecision] * N[(N[(N[(N[(3/4 / N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision] - N[(-1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision] - N[(N[(-15/8 / N[(N[(t$95$0 * t$95$0), $MachinePrecision] * N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(1 / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot x\\
\sqrt{\frac{e^{\left(x \cdot x\right) \cdot 2}}{\pi}} \cdot \left(\frac{\frac{\frac{3}{4}}{t\_0 \cdot x} - \frac{\frac{-1}{2}}{x \cdot x}}{\left|x\right|} - \left(\frac{\frac{-15}{8}}{\left(t\_0 \cdot t\_0\right) \cdot \left|x\right|} - \frac{1}{\left|x\right|}\right)\right)
\end{array}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites99.9%
(FPCore (x)
:precision binary64
(let* ((t_0 (* (* x x) x)))
(*
(sqrt (/ (exp (* (* x x) 2)) PI))
(/
(-
(- (/ 1/2 (* x x)) -1)
(- (/ -3/4 (* t_0 x)) (/ 15/8 (* t_0 t_0))))
(fabs x)))))double code(double x) {
double t_0 = (x * x) * x;
return sqrt((exp(((x * x) * 2.0)) / ((double) M_PI))) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / fabs(x));
}
public static double code(double x) {
double t_0 = (x * x) * x;
return Math.sqrt((Math.exp(((x * x) * 2.0)) / Math.PI)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / Math.abs(x));
}
def code(x): t_0 = (x * x) * x return math.sqrt((math.exp(((x * x) * 2.0)) / math.pi)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / math.fabs(x))
function code(x) t_0 = Float64(Float64(x * x) * x) return Float64(sqrt(Float64(exp(Float64(Float64(x * x) * 2.0)) / pi)) * Float64(Float64(Float64(Float64(0.5 / Float64(x * x)) - -1.0) - Float64(Float64(-0.75 / Float64(t_0 * x)) - Float64(1.875 / Float64(t_0 * t_0)))) / abs(x))) end
function tmp = code(x) t_0 = (x * x) * x; tmp = sqrt((exp(((x * x) * 2.0)) / pi)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / abs(x)); end
code[x_] := Block[{t$95$0 = N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]}, N[(N[Sqrt[N[(N[Exp[N[(N[(x * x), $MachinePrecision] * 2), $MachinePrecision]], $MachinePrecision] / Pi), $MachinePrecision]], $MachinePrecision] * N[(N[(N[(N[(1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision] - -1), $MachinePrecision] - N[(N[(-3/4 / N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision] - N[(15/8 / N[(t$95$0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot x\\
\sqrt{\frac{e^{\left(x \cdot x\right) \cdot 2}}{\pi}} \cdot \frac{\left(\frac{\frac{1}{2}}{x \cdot x} - -1\right) - \left(\frac{\frac{-3}{4}}{t\_0 \cdot x} - \frac{\frac{15}{8}}{t\_0 \cdot t\_0}\right)}{\left|x\right|}
\end{array}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites99.9%
(FPCore (x)
:precision binary64
(let* ((t_0 (* (* x x) x)))
(/
(*
(/ (exp (* x x)) (sqrt PI))
(-
(- (/ 1/2 (* x x)) -1)
(- (/ -3/4 (* t_0 x)) (/ 15/8 (* t_0 t_0)))))
(fabs x))))double code(double x) {
double t_0 = (x * x) * x;
return ((exp((x * x)) / sqrt(((double) M_PI))) * (((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0))))) / fabs(x);
}
public static double code(double x) {
double t_0 = (x * x) * x;
return ((Math.exp((x * x)) / Math.sqrt(Math.PI)) * (((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0))))) / Math.abs(x);
}
def code(x): t_0 = (x * x) * x return ((math.exp((x * x)) / math.sqrt(math.pi)) * (((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0))))) / math.fabs(x)
function code(x) t_0 = Float64(Float64(x * x) * x) return Float64(Float64(Float64(exp(Float64(x * x)) / sqrt(pi)) * Float64(Float64(Float64(0.5 / Float64(x * x)) - -1.0) - Float64(Float64(-0.75 / Float64(t_0 * x)) - Float64(1.875 / Float64(t_0 * t_0))))) / abs(x)) end
function tmp = code(x) t_0 = (x * x) * x; tmp = ((exp((x * x)) / sqrt(pi)) * (((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0))))) / abs(x); end
code[x_] := Block[{t$95$0 = N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]}, N[(N[(N[(N[Exp[N[(x * x), $MachinePrecision]], $MachinePrecision] / N[Sqrt[Pi], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision] - -1), $MachinePrecision] - N[(N[(-3/4 / N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision] - N[(15/8 / N[(t$95$0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot x\\
\frac{\frac{e^{x \cdot x}}{\sqrt{\pi}} \cdot \left(\left(\frac{\frac{1}{2}}{x \cdot x} - -1\right) - \left(\frac{\frac{-3}{4}}{t\_0 \cdot x} - \frac{\frac{15}{8}}{t\_0 \cdot t\_0}\right)\right)}{\left|x\right|}
\end{array}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites100.0%
(FPCore (x) :precision binary64 (* (sqrt (/ (exp (* (* x x) 2)) PI)) (/ (- (/ 1/2 (* x x)) (- -1 (/ 15/8 (* (* (* (* (* x x) x) x) x) x)))) (fabs x))))
double code(double x) {
return sqrt((exp(((x * x) * 2.0)) / ((double) M_PI))) * (((0.5 / (x * x)) - (-1.0 - (1.875 / (((((x * x) * x) * x) * x) * x)))) / fabs(x));
}
public static double code(double x) {
return Math.sqrt((Math.exp(((x * x) * 2.0)) / Math.PI)) * (((0.5 / (x * x)) - (-1.0 - (1.875 / (((((x * x) * x) * x) * x) * x)))) / Math.abs(x));
}
def code(x): return math.sqrt((math.exp(((x * x) * 2.0)) / math.pi)) * (((0.5 / (x * x)) - (-1.0 - (1.875 / (((((x * x) * x) * x) * x) * x)))) / math.fabs(x))
function code(x) return Float64(sqrt(Float64(exp(Float64(Float64(x * x) * 2.0)) / pi)) * Float64(Float64(Float64(0.5 / Float64(x * x)) - Float64(-1.0 - Float64(1.875 / Float64(Float64(Float64(Float64(Float64(x * x) * x) * x) * x) * x)))) / abs(x))) end
function tmp = code(x) tmp = sqrt((exp(((x * x) * 2.0)) / pi)) * (((0.5 / (x * x)) - (-1.0 - (1.875 / (((((x * x) * x) * x) * x) * x)))) / abs(x)); end
code[x_] := N[(N[Sqrt[N[(N[Exp[N[(N[(x * x), $MachinePrecision] * 2), $MachinePrecision]], $MachinePrecision] / Pi), $MachinePrecision]], $MachinePrecision] * N[(N[(N[(1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision] - N[(-1 - N[(15/8 / N[(N[(N[(N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision] * x), $MachinePrecision] * x), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\sqrt{\frac{e^{\left(x \cdot x\right) \cdot 2}}{\pi}} \cdot \frac{\frac{\frac{1}{2}}{x \cdot x} - \left(-1 - \frac{\frac{15}{8}}{\left(\left(\left(\left(x \cdot x\right) \cdot x\right) \cdot x\right) \cdot x\right) \cdot x}\right)}{\left|x\right|}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites99.9%
Applied rewrites49.2%
Taylor expanded in x around 0
Applied rewrites99.6%
(FPCore (x) :precision binary64 (* (sqrt (/ (exp (* (* x x) 2)) PI)) (/ (- (/ 1/2 (* x x)) -1) (fabs x))))
double code(double x) {
return sqrt((exp(((x * x) * 2.0)) / ((double) M_PI))) * (((0.5 / (x * x)) - -1.0) / fabs(x));
}
public static double code(double x) {
return Math.sqrt((Math.exp(((x * x) * 2.0)) / Math.PI)) * (((0.5 / (x * x)) - -1.0) / Math.abs(x));
}
def code(x): return math.sqrt((math.exp(((x * x) * 2.0)) / math.pi)) * (((0.5 / (x * x)) - -1.0) / math.fabs(x))
function code(x) return Float64(sqrt(Float64(exp(Float64(Float64(x * x) * 2.0)) / pi)) * Float64(Float64(Float64(0.5 / Float64(x * x)) - -1.0) / abs(x))) end
function tmp = code(x) tmp = sqrt((exp(((x * x) * 2.0)) / pi)) * (((0.5 / (x * x)) - -1.0) / abs(x)); end
code[x_] := N[(N[Sqrt[N[(N[Exp[N[(N[(x * x), $MachinePrecision] * 2), $MachinePrecision]], $MachinePrecision] / Pi), $MachinePrecision]], $MachinePrecision] * N[(N[(N[(1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision] - -1), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\sqrt{\frac{e^{\left(x \cdot x\right) \cdot 2}}{\pi}} \cdot \frac{\frac{\frac{1}{2}}{x \cdot x} - -1}{\left|x\right|}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites99.9%
Applied rewrites49.2%
Taylor expanded in x around inf
Applied rewrites99.6%
(FPCore (x) :precision binary64 (* (sqrt (/ (exp (* (* x x) 2)) PI)) (/ 1 (fabs x))))
double code(double x) {
return sqrt((exp(((x * x) * 2.0)) / ((double) M_PI))) * (1.0 / fabs(x));
}
public static double code(double x) {
return Math.sqrt((Math.exp(((x * x) * 2.0)) / Math.PI)) * (1.0 / Math.abs(x));
}
def code(x): return math.sqrt((math.exp(((x * x) * 2.0)) / math.pi)) * (1.0 / math.fabs(x))
function code(x) return Float64(sqrt(Float64(exp(Float64(Float64(x * x) * 2.0)) / pi)) * Float64(1.0 / abs(x))) end
function tmp = code(x) tmp = sqrt((exp(((x * x) * 2.0)) / pi)) * (1.0 / abs(x)); end
code[x_] := N[(N[Sqrt[N[(N[Exp[N[(N[(x * x), $MachinePrecision] * 2), $MachinePrecision]], $MachinePrecision] / Pi), $MachinePrecision]], $MachinePrecision] * N[(1 / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\sqrt{\frac{e^{\left(x \cdot x\right) \cdot 2}}{\pi}} \cdot \frac{1}{\left|x\right|}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites99.9%
Taylor expanded in x around inf
lower-/.f64N/A
lower-fabs.f6499.6%
Applied rewrites99.6%
(FPCore (x)
:precision binary64
(let* ((t_0 (* (* x x) x)))
(*
(sqrt (/ 1 PI))
(/
(-
(- (/ 1/2 (* x x)) -1)
(- (/ -3/4 (* t_0 x)) (/ 15/8 (* t_0 t_0))))
(fabs x)))))double code(double x) {
double t_0 = (x * x) * x;
return sqrt((1.0 / ((double) M_PI))) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / fabs(x));
}
public static double code(double x) {
double t_0 = (x * x) * x;
return Math.sqrt((1.0 / Math.PI)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / Math.abs(x));
}
def code(x): t_0 = (x * x) * x return math.sqrt((1.0 / math.pi)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / math.fabs(x))
function code(x) t_0 = Float64(Float64(x * x) * x) return Float64(sqrt(Float64(1.0 / pi)) * Float64(Float64(Float64(Float64(0.5 / Float64(x * x)) - -1.0) - Float64(Float64(-0.75 / Float64(t_0 * x)) - Float64(1.875 / Float64(t_0 * t_0)))) / abs(x))) end
function tmp = code(x) t_0 = (x * x) * x; tmp = sqrt((1.0 / pi)) * ((((0.5 / (x * x)) - -1.0) - ((-0.75 / (t_0 * x)) - (1.875 / (t_0 * t_0)))) / abs(x)); end
code[x_] := Block[{t$95$0 = N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision]}, N[(N[Sqrt[N[(1 / Pi), $MachinePrecision]], $MachinePrecision] * N[(N[(N[(N[(1/2 / N[(x * x), $MachinePrecision]), $MachinePrecision] - -1), $MachinePrecision] - N[(N[(-3/4 / N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision] - N[(15/8 / N[(t$95$0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Abs[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot x\\
\sqrt{\frac{1}{\pi}} \cdot \frac{\left(\frac{\frac{1}{2}}{x \cdot x} - -1\right) - \left(\frac{\frac{-3}{4}}{t\_0 \cdot x} - \frac{\frac{15}{8}}{t\_0 \cdot t\_0}\right)}{\left|x\right|}
\end{array}
Initial program 100.0%
lift-*.f64N/A
*-commutativeN/A
lift-/.f64N/A
mult-flip-revN/A
lift-exp.f64N/A
exp-fabsN/A
lift-exp.f64N/A
rem-sqrt-square-revN/A
lift-sqrt.f64N/A
sqrt-undivN/A
lower-sqrt.f64N/A
lower-/.f64N/A
Applied rewrites99.9%
Applied rewrites99.9%
Taylor expanded in x around 0
lower-/.f64N/A
lower-PI.f642.3%
Applied rewrites2.3%
(FPCore (x) :precision binary64 (/ (/ 15/8 (* (fabs x) (sqrt PI))) (* (* (* (* x x) x) (* x x)) x)))
double code(double x) {
return (1.875 / (fabs(x) * sqrt(((double) M_PI)))) / ((((x * x) * x) * (x * x)) * x);
}
public static double code(double x) {
return (1.875 / (Math.abs(x) * Math.sqrt(Math.PI))) / ((((x * x) * x) * (x * x)) * x);
}
def code(x): return (1.875 / (math.fabs(x) * math.sqrt(math.pi))) / ((((x * x) * x) * (x * x)) * x)
function code(x) return Float64(Float64(1.875 / Float64(abs(x) * sqrt(pi))) / Float64(Float64(Float64(Float64(x * x) * x) * Float64(x * x)) * x)) end
function tmp = code(x) tmp = (1.875 / (abs(x) * sqrt(pi))) / ((((x * x) * x) * (x * x)) * x); end
code[x_] := N[(N[(15/8 / N[(N[Abs[x], $MachinePrecision] * N[Sqrt[Pi], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(x * x), $MachinePrecision] * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]
\frac{\frac{\frac{15}{8}}{\left|x\right| \cdot \sqrt{\pi}}}{\left(\left(\left(x \cdot x\right) \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot x}
Initial program 100.0%
Applied rewrites100.0%
Taylor expanded in x around 0
metadata-evalN/A
lower-/.f64N/A
metadata-evalN/A
lower-*.f64N/A
lower-pow.f64N/A
lower-*.f64N/A
lower-fabs.f64N/A
lower-sqrt.f64N/A
lower-PI.f641.7%
Applied rewrites1.7%
lift-/.f64N/A
lift-*.f64N/A
*-commutativeN/A
lift-pow.f64N/A
metadata-evalN/A
pow-prod-upN/A
pow3N/A
lift-*.f64N/A
lift-*.f64N/A
pow3N/A
lift-*.f64N/A
lift-*.f64N/A
lift-*.f64N/A
associate-/r*N/A
lower-/.f64N/A
lower-/.f641.7%
lift-*.f64N/A
lift-*.f64N/A
associate-*r*N/A
Applied rewrites1.7%
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
lift-*.f64N/A
lower-*.f641.7%
Applied rewrites1.7%
(FPCore (x) :precision binary64 (/ 15/8 (* (* (fabs x) (* (* (* (* x x) (* x x)) x) x)) (sqrt PI))))
double code(double x) {
return 1.875 / ((fabs(x) * ((((x * x) * (x * x)) * x) * x)) * sqrt(((double) M_PI)));
}
public static double code(double x) {
return 1.875 / ((Math.abs(x) * ((((x * x) * (x * x)) * x) * x)) * Math.sqrt(Math.PI));
}
def code(x): return 1.875 / ((math.fabs(x) * ((((x * x) * (x * x)) * x) * x)) * math.sqrt(math.pi))
function code(x) return Float64(1.875 / Float64(Float64(abs(x) * Float64(Float64(Float64(Float64(x * x) * Float64(x * x)) * x) * x)) * sqrt(pi))) end
function tmp = code(x) tmp = 1.875 / ((abs(x) * ((((x * x) * (x * x)) * x) * x)) * sqrt(pi)); end
code[x_] := N[(15/8 / N[(N[(N[Abs[x], $MachinePrecision] * N[(N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision] * N[Sqrt[Pi], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\frac{\frac{15}{8}}{\left(\left|x\right| \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot x\right) \cdot x\right)\right) \cdot \sqrt{\pi}}
Initial program 100.0%
Applied rewrites100.0%
Taylor expanded in x around 0
metadata-evalN/A
lower-/.f64N/A
metadata-evalN/A
lower-*.f64N/A
lower-pow.f64N/A
lower-*.f64N/A
lower-fabs.f64N/A
lower-sqrt.f64N/A
lower-PI.f641.7%
Applied rewrites1.7%
lift-*.f64N/A
lift-*.f64N/A
associate-*r*N/A
lower-*.f64N/A
Applied rewrites1.7%
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
lift-*.f64N/A
lift-*.f64N/A
lift-*.f64N/A
lower-*.f641.7%
Applied rewrites1.7%
herbie shell --seed 2025271 -o generate:evaluate
(FPCore (x)
:name "Jmat.Real.erfi, branch x greater than or equal to 5"
:precision binary64
:pre (>= x 1/2)
(* (* (/ 1 (sqrt PI)) (exp (* (fabs x) (fabs x)))) (+ (+ (+ (/ 1 (fabs x)) (* (/ 1 2) (* (* (/ 1 (fabs x)) (/ 1 (fabs x))) (/ 1 (fabs x))))) (* (/ 3 4) (* (* (* (* (/ 1 (fabs x)) (/ 1 (fabs x))) (/ 1 (fabs x))) (/ 1 (fabs x))) (/ 1 (fabs x))))) (* (/ 15 8) (* (* (* (* (* (* (/ 1 (fabs x)) (/ 1 (fabs x))) (/ 1 (fabs x))) (/ 1 (fabs x))) (/ 1 (fabs x))) (/ 1 (fabs x))) (/ 1 (fabs x)))))))